<?
class ExtTpl_Simple_Api {
public function __construct() {
}
/**
*
* method Process($parametersArray,$templateBlock,$templateVariables)
*
* @access public
*
* $parametersArray Array where keys are parameter name passed to HTML tag
* $templateVariables Variables to be used by the tag process. Usually provided by
* the engine itself
* $caller String for debugging purposes. Not implemented yet
*
*
**/
public function Process($parametersArray,$templateVariables,$caller="") {
return "";
}
}