BreezingForms Integrator Finalize Code and $this->execPieceByName('ff_InitLib');
Posted
by nickyt
on Stack Overflow
See other posts from Stack Overflow
or by nickyt
Published on 2010-04-03T04:00:51Z
Indexed on
2010/04/03
4:03 UTC
Read the original article
Hit count: 573
I've started working on a Joomla! project (I'm mainly a C#/ASP.NET kind a guy). I'm using BreezingForms and have created forms, got them working, but now I need to do some additional code in the "Finalize Code" section.
I need to access form elements via BreezingForms(FacileForms) API. Here's what I'm doing, but it chokes:
$this->execPieceByName('ff_SubmitLib'); // Is this necessary?
// load the standard Facile Forms library
$this->execPieceByName('ff_InitLib'); // page breaks here.
// get the name of the uploaded file
$filename = ff_getSubmit('someUploadedFile');
Now I don't know what goes wrong. The page posts back blank. I'm not sure how to debug this in Joomla. I currently do not have access to the server to debug, so I would need to debug remotely at runtime (not ideal I know). My account is of type Administrator for the Joomla backend.
As far as I know all the plugins/modules are installed.
Any ideas?
© Stack Overflow or respective owner