]> git.mxchange.org Git - friendica.git/blob - src/Render/FriendicaSmarty.php
Merge pull request #8263 from annando/remote-follow
[friendica.git] / src / Render / FriendicaSmarty.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Render;
23
24 use Friendica\DI;
25 use Smarty;
26 use Friendica\Core\Renderer;
27
28 /**
29  * Friendica extension of the Smarty3 template engine
30  */
31 class FriendicaSmarty extends Smarty
32 {
33         const SMARTY3_TEMPLATE_FOLDER = 'templates';
34
35         public $filename;
36
37         function __construct()
38         {
39                 parent::__construct();
40
41                 $a = DI::app();
42                 $theme = $a->getCurrentTheme();
43
44                 // setTemplateDir can be set to an array, which Smarty will parse in order.
45                 // The order is thus very important here
46                 $template_dirs = ['theme' => "view/theme/$theme/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
47                 if (!empty($a->theme_info['extends'])) {
48                         $template_dirs = $template_dirs + ['extends' => "view/theme/" . $a->theme_info["extends"] . "/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
49                 }
50
51                 $template_dirs = $template_dirs + ['base' => "view/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
52                 $this->setTemplateDir($template_dirs);
53
54                 $this->setCompileDir('view/smarty3/compiled/');
55                 $this->setConfigDir('view/smarty3/config/');
56                 $this->setCacheDir('view/smarty3/cache/');
57
58                 $this->left_delimiter = Renderer::getTemplateLeftDelimiter('smarty3');
59                 $this->right_delimiter = Renderer::getTemplateRightDelimiter('smarty3');
60
61                 $this->escape_html = true;
62
63                 // Don't report errors so verbosely
64                 $this->error_reporting = E_ALL & ~E_NOTICE;
65         }
66
67         function parsed($template = '')
68         {
69                 if ($template) {
70                         return $this->fetch('string:' . $template);
71                 }
72                 return $this->fetch('file:' . $this->filename);
73         }
74
75 }