From: Roland Haeder Date: Sun, 5 Apr 2015 20:29:54 +0000 (+0200) Subject: Added new method as the template engine may need additional X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4183c70e0c155664687f226a0e075b1cb2578dcd;p=core.git Added new method as the template engine may need additional application-depending data from the application. Signed-off-by: Roland Häder --- diff --git a/inc/classes/interfaces/application/class_ManageableApplication.php b/inc/classes/interfaces/application/class_ManageableApplication.php index 0539f110..65b98650 100644 --- a/inc/classes/interfaces/application/class_ManageableApplication.php +++ b/inc/classes/interfaces/application/class_ManageableApplication.php @@ -49,6 +49,15 @@ interface ManageableApplication extends FrameworkInterface { * @return $masterTemplateName Name of the master template */ function buildMasterTemplateName(); + + /** + * Assigns extra application-depending data + * + * @param $templateInstance An instance of a CompileableTemplate + * @return void + * @todo Nothing to add? + */ + function assignExtraTemplateData (CompileableTemplate $templateInstance); } // [EOF]