2018-02-09 04:49:49 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-02-09 04:49:49 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2018-02-09 04:49:49 +01:00
|
|
|
namespace Friendica\Render;
|
|
|
|
|
|
|
|
use Smarty;
|
2018-10-31 17:12:15 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Friendica extension of the Smarty3 template engine
|
|
|
|
*/
|
|
|
|
class FriendicaSmarty extends Smarty
|
|
|
|
{
|
|
|
|
const SMARTY3_TEMPLATE_FOLDER = 'templates';
|
|
|
|
|
|
|
|
public $filename;
|
|
|
|
|
2022-09-08 08:21:16 +02:00
|
|
|
public function __construct(string $theme, array $theme_info, string $work_dir, bool $use_sub_dirs)
|
2018-02-09 04:49:49 +01:00
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
// setTemplateDir can be set to an array, which Smarty will parse in order.
|
|
|
|
// The order is thus very important here
|
2022-06-23 04:58:16 +02:00
|
|
|
$template_dirs = ['theme' => "view/theme/$theme/" . self::SMARTY3_TEMPLATE_FOLDER . '/'];
|
2020-05-18 07:18:41 +02:00
|
|
|
if (!empty($theme_info['extends'])) {
|
2022-06-23 04:23:22 +02:00
|
|
|
$template_dirs = $template_dirs + ['extends' => 'view/theme/' . $theme_info['extends'] . '/' . self::SMARTY3_TEMPLATE_FOLDER . '/'];
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
|
2022-06-23 04:23:22 +02:00
|
|
|
$template_dirs = $template_dirs + ['base' => 'view/' . self::SMARTY3_TEMPLATE_FOLDER . '/'];
|
2018-02-09 04:49:49 +01:00
|
|
|
$this->setTemplateDir($template_dirs);
|
2023-01-01 15:36:24 +01:00
|
|
|
|
2022-08-05 15:12:22 +02:00
|
|
|
$work_dir = rtrim($work_dir, '/');
|
2018-02-09 04:49:49 +01:00
|
|
|
|
2022-08-05 15:12:22 +02:00
|
|
|
$this->setCompileDir($work_dir . '/compiled');
|
|
|
|
$this->setConfigDir($work_dir . '/');
|
|
|
|
$this->setCacheDir($work_dir . '/');
|
2018-02-09 04:49:49 +01:00
|
|
|
|
2022-08-05 15:12:22 +02:00
|
|
|
/*
|
|
|
|
* Enable sub-directory splitting for reducing directory descriptor
|
|
|
|
* size. The default behavior is to put all compiled/cached files into
|
|
|
|
* one single directory. Under Linux and EXT4 (and maybe other FS) this
|
|
|
|
* will increase the descriptor's size (which contains information
|
|
|
|
* about entries inside the described directory. If the descriptor is
|
|
|
|
* getting to big, the system will slow down as it has to read the
|
|
|
|
* whole directory descriptor all over again (unless you have tons of
|
|
|
|
* RAM available + have enabled caching inode tables (aka.
|
|
|
|
* "descriptors"). Still it won't hurt you.
|
|
|
|
*/
|
2022-09-08 08:21:16 +02:00
|
|
|
$this->setUseSubDirs($use_sub_dirs);
|
2022-08-05 15:12:22 +02:00
|
|
|
|
|
|
|
$this->left_delimiter = Renderer::getTemplateLeftDelimiter();
|
|
|
|
$this->right_delimiter = Renderer::getTemplateRightDelimiter();
|
2018-02-09 04:49:49 +01:00
|
|
|
|
2018-12-14 04:35:12 +01:00
|
|
|
$this->escape_html = true;
|
|
|
|
|
2018-02-09 04:49:49 +01:00
|
|
|
// Don't report errors so verbosely
|
|
|
|
$this->error_reporting = E_ALL & ~E_NOTICE;
|
2022-02-19 04:44:11 +01:00
|
|
|
|
|
|
|
$this->muteUndefinedOrNullWarnings();
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
2020-05-18 07:18:41 +02:00
|
|
|
}
|