<?
class ExtTpl_Block_Api {
public function __construct() {
}
/**
*
* method Process($parametersArray,$templateBlock,$templateVariables)
*
* @access public
*
* $parametersArray Array where keys are parameter name passed to HTML tag
* $templateBlock String containing the HTML block to process by this tag
* $templateVariables Variables to be used by the tag process. Usually provided by
* the engine itself
*
*
**/
public function Process($parametersArray,$templateBlock,$templateVariables) {
return $templateBlock;
}
}