$ippfp is an instance of class ippfp_application. It will be created automatically and includes methods to create elements. (see related sections). There are the following additional methods:
function process, processing a view if you have defined it.
parameter:
$view - View.
example:
$ippfp->process($myView);
function run, calls your function.
example:
$ippfp->run();
function copy, create a copy of View.
parameter:
$view - View, which should be copied.
$title - title of view.
$type - output format.
example:
$secondView = $ippfp->copy($firstView, "my pdf", "PDF");
function info, returns number of version.
example:
echo $ippfp->info();
funktion addError, inserts an error message. All messages will be shown in a related subwindow. returns true on success.
parameter:
$msg - error message.
example:
$ippfp->addError("value could not be saved.");