X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Finterfaces%2Factions%2Fcommands%2Fclass_Commandable.php;h=9152a75f6f768a4ec27f3ca8b7a85f1e7542b641;hp=d4c60e2dc117e3af860b7eeaaff8888b8a809aac;hb=refs%2Fheads%2Fmaster;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/interfaces/actions/commands/class_Commandable.php b/framework/main/interfaces/actions/commands/class_Commandable.php index d4c60e2d..bb8ddfe1 100644 --- a/framework/main/interfaces/actions/commands/class_Commandable.php +++ b/framework/main/interfaces/actions/commands/class_Commandable.php @@ -12,7 +12,7 @@ use Org\Mxchange\CoreFramework\Request\Requestable; * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -39,4 +39,12 @@ interface Commandable extends PerformableAction { */ function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance); + /** + * Initializes the template engine + * + * @param $templateType Type of template, e.g. 'html', 'image', 'console' ... + * @return void + */ + function initTemplateEngine (string $templateType); + }