diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-05-13 10:39:40 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-05-13 10:39:40 +0200 |
commit | d5f59a57bf2689874f2171e0c4a2354d12597f34 (patch) | |
tree | 11b63c5dc536292e51394ddd8f42ff6bf6d129f7 /Zotlabs/Render/SmartyInterface.php | |
parent | 7465c798847198238a991b302e8f6537896b9c3e (diff) | |
download | volse-hubzilla-d5f59a57bf2689874f2171e0c4a2354d12597f34.tar.gz volse-hubzilla-d5f59a57bf2689874f2171e0c4a2354d12597f34.tar.bz2 volse-hubzilla-d5f59a57bf2689874f2171e0c4a2354d12597f34.zip |
don't do oembed processing on naked links and smarty lib cleanup. ported from zap.
Diffstat (limited to 'Zotlabs/Render/SmartyInterface.php')
-rwxr-xr-x | Zotlabs/Render/SmartyInterface.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Zotlabs/Render/SmartyInterface.php b/Zotlabs/Render/SmartyInterface.php index 9c9a501c0..a40effecf 100755 --- a/Zotlabs/Render/SmartyInterface.php +++ b/Zotlabs/Render/SmartyInterface.php @@ -2,7 +2,10 @@ namespace Zotlabs\Render; -class SmartyInterface extends \Smarty { +use Smarty; +use App; + +class SmartyInterface extends Smarty { public $filename; @@ -16,26 +19,27 @@ class SmartyInterface extends \Smarty { // The order is thus very important here $template_dirs = array('theme' => "view/theme/$thname/tpl/"); - if( x(\App::$theme_info,"extends") ) + if ( x(App::$theme_info,"extends") ) { $template_dirs = $template_dirs + array('extends' => "view/theme/" . \App::$theme_info["extends"] . "/tpl/"); + } $template_dirs = $template_dirs + array('base' => 'view/tpl/'); $this->setTemplateDir($template_dirs); - $basecompiledir = \App::$config['system']['smarty3_folder']; + $basecompiledir = App::$config['system']['smarty3_folder']; $this->setCompileDir($basecompiledir.'/compiled/'); $this->setConfigDir($basecompiledir.'/config/'); $this->setCacheDir($basecompiledir.'/cache/'); - $this->left_delimiter = \App::get_template_ldelim('smarty3'); - $this->right_delimiter = \App::get_template_rdelim('smarty3'); + $this->left_delimiter = App::get_template_ldelim('smarty3'); + $this->right_delimiter = App::get_template_rdelim('smarty3'); // Don't report errors so verbosely $this->error_reporting = E_ALL & (~E_NOTICE); } function parsed($template = '') { - if($template) { + if ($template) { return $this->fetch('string:' . $template); } return $this->fetch('file:' . $this->filename); |