*
* @param array $tagArgs
* @param string $blockContent
- * @param TemplateEngine $tplObj
+ * @param wcf\system\template\TemplateEngine $tplObj
* @return string output
*/
public function execute($tagArgs, $blockContent, TemplateEngine $tplObj);
* Initialises this template block.
*
* @param array $tagArgs
- * @param TemplateEngine $tplObj
+ * @param wcf\system\template\TemplateEngine $tplObj
*/
public function init($tagArgs, TemplateEngine $tplObj);
/**
* This function is called before every execution of this block function.
*
- * @param TemplateEngine $tplObj
+ * @param wcf\system\template\TemplateEngine $tplObj
* @return boolean
*/
public function next(TemplateEngine $tplObj);
/**
* Executes the start tag of this compiler function.
*
- * @param array $tagArgs
- * @param TemplateScriptingCompiler $compiler
- * @return string php code
+ * @param array $tagArgs
+ * @param wcf\system\template\TemplateScriptingCompiler $compiler
+ * @return string php code
*/
public function executeStart($tagArgs, TemplateScriptingCompiler $compiler);
/**
* Executes the end tag of this compiler function.
*
- * @param TemplateScriptingCompiler $compiler
- * @return string php code
+ * @param wcf\system\template\TemplateScriptingCompiler $compiler
+ * @return string php code
*/
- public function executeEnd(TemplateScriptingCompiler $tplObj);
+ public function executeEnd(TemplateScriptingCompiler $compiler);
}
/**
* Executes this template function.
*
- * @param array $tagArgs
- * @param TemplateEngine $tplObj
- * @return string output
+ * @param array $tagArgs
+ * @param wcf\system\template\TemplateEngine $tplObj
+ * @return string output
*/
public function execute($tagArgs, TemplateEngine $tplObj);
}
/**
* Executes this modifier.
*
- * @param array $tagArgs
- * @param TemplateEngine $tplObj
- * @return string output
+ * @param array $tagArgs
+ * @param wcf\system\template\TemplateEngine $tplObj
+ * @return string output
*/
public function execute($tagArgs, TemplateEngine $tplObj);
}
/**
* Executes this prefilter.
*
- * @param string $templateName
- * @param string $sourceContent
- * @param TemplateScriptingCompiler $compiler
- * @return string $sourceContent
+ * @param string $templateName
+ * @param string $sourceContent
+ * @param wcf\system\template\TemplateScriptingCompiler $compiler
+ * @return string
*/
public function execute($templateName, $sourceContent, TemplateScriptingCompiler $compiler);
}