CRM-16373 - Config - Remove `componentRegistry`
[civicrm-core.git] / CRM / Core / Smarty.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Fix for bug CRM-392. Not sure if this is the best fix or it will impact
38 * other similar PEAR packages. doubt it
39 */
40if (!class_exists('Smarty')) {
41 require_once 'Smarty/Smarty.class.php';
42}
43
44/**
45 *
46 */
47class CRM_Core_Smarty extends Smarty {
7da04cde 48 const
6a488035
TO
49 // use print.tpl and bypass the CMS. Civi prints a valid html file
50 PRINT_PAGE = 1,
da3c7979 51 // this and all the below bypasses the CMS html surrounding it and assumes we will embed this within other pages
6a488035
TO
52 PRINT_SNIPPET = 2,
53 // sends the generated html to the chosen pdf engine
54 PRINT_PDF = 3,
55 // this options also skips the enclosing form html and does not
56 // generate any of the hidden fields, most notably qfKey
57 // this is typically used in ajax scripts to embed form snippets based on user choices
58 PRINT_NOFORM = 4,
59 // this prints a complete form and also generates a qfKey, can we replace this with
60 // snippet = 2?? Does the constant _NOFFORM do anything?
61 PRINT_QFKEY = 5,
fc05b8da
CW
62 // Note: added in v 4.3 with the value '6'
63 // Value changed in 4.5 to 'json' for better readability
64 // @see CRM_Core_Page_AJAX::returnJsonResponse
65 PRINT_JSON = 'json';
6a488035
TO
66
67 /**
68 * We only need one instance of this object. So we use the singleton
69 * pattern and cache the instance in this variable
70 *
71 * @var object
6a488035
TO
72 */
73 static private $_singleton = NULL;
74
17f267d6
TO
75 /**
76 * @var array (string $name => mixed $value) a list of variables ot save temporarily
77 */
78 private $backupFrames = array();
79
6a488035 80 /**
f9e31d7f 81 * Class constructor.
6a488035
TO
82 *
83 * @return CRM_Core_Smarty
6a488035
TO
84 */
85 private function __construct() {
86 parent::__construct();
87 }
88
2aa397bc 89 private function initialize() {
6a488035
TO
90 $config = CRM_Core_Config::singleton();
91
92 if (isset($config->customTemplateDir) && $config->customTemplateDir) {
93 $this->template_dir = array_merge(array($config->customTemplateDir),
94 $config->templateDir
95 );
96 }
97 else {
98 $this->template_dir = $config->templateDir;
99 }
100 $this->compile_dir = $config->templateCompileDir;
101
102 // check and ensure it is writable
103 // else we sometime suppress errors quietly and this results
104 // in blank emails etc
105 if (!is_writable($this->compile_dir)) {
106 echo "CiviCRM does not have permission to write temp files in {$this->compile_dir}, Exiting";
107 exit();
108 }
109
110 //Check for safe mode CRM-2207
111 if (ini_get('safe_mode')) {
112 $this->use_sub_dirs = FALSE;
113 }
114 else {
115 $this->use_sub_dirs = TRUE;
116 }
117
118 $customPluginsDir = NULL;
119 if (isset($config->customPHPPathDir)) {
e7483cbe
J
120 $customPluginsDir
121 = $config->customPHPPathDir . DIRECTORY_SEPARATOR .
353ffa53
TO
122 'CRM' . DIRECTORY_SEPARATOR .
123 'Core' . DIRECTORY_SEPARATOR .
124 'Smarty' . DIRECTORY_SEPARATOR .
125 'plugins' . DIRECTORY_SEPARATOR;
6a488035
TO
126 if (!file_exists($customPluginsDir)) {
127 $customPluginsDir = NULL;
128 }
129 }
130
131 if ($customPluginsDir) {
132 $this->plugins_dir = array($customPluginsDir, $config->smartyDir . 'plugins', $config->pluginsDir);
133 }
134 else {
135 $this->plugins_dir = array($config->smartyDir . 'plugins', $config->pluginsDir);
136 }
137
138 // add the session and the config here
139 $session = CRM_Core_Session::singleton();
140
141 $this->assign_by_ref('config', $config);
142 $this->assign_by_ref('session', $session);
143
6a488035
TO
144 global $tsLocale;
145 $this->assign('tsLocale', $tsLocale);
146
147 // CRM-7163 hack: we don’t display langSwitch on upgrades anyway
148 if (!CRM_Core_Config::isUpgradeMode()) {
149 $this->assign('langSwitch', CRM_Core_I18n::languages(TRUE));
150 }
151
152 $this->register_function('crmURL', array('CRM_Utils_System', 'crmURL'));
d9aa1c6b 153 $this->load_filter('pre', 'resetExtScope');
abbf7b48
TO
154
155 $this->assign('crmPermissions', new CRM_Core_Smarty_Permissions());
6a488035
TO
156 }
157
158 /**
159 * Static instance provider.
160 *
161 * Method providing static instance of SmartTemplate, as
162 * in Singleton pattern.
163 */
00be9182 164 public static function &singleton() {
6a488035 165 if (!isset(self::$_singleton)) {
481a74f4
TO
166 self::$_singleton = new CRM_Core_Smarty();
167 self::$_singleton->initialize();
6a488035
TO
168
169 self::registerStringResource();
170 }
171 return self::$_singleton;
172 }
173
174 /**
100fef9d 175 * Executes & returns or displays the template results
6a488035
TO
176 *
177 * @param string $resource_name
178 * @param string $cache_id
179 * @param string $compile_id
6a0b768e 180 * @param bool $display
77b97be7
EM
181 *
182 * @return bool|mixed|string
6a488035 183 */
00be9182 184 public function fetch($resource_name, $cache_id = NULL, $compile_id = NULL, $display = FALSE) {
481a74f4 185 if (preg_match('/^(\s+)?string:/', $resource_name)) {
7155133f
ND
186 $old_security = $this->security;
187 $this->security = TRUE;
188 }
189 $output = parent::fetch($resource_name, $cache_id, $compile_id, $display);
190 if (isset($old_security)) {
191 $this->security = $old_security;
192 }
193 return $output;
6a488035
TO
194 }
195
9b7526a8
TO
196 /**
197 * Fetch a template (while using certain variables)
198 *
199 * @param string $resource_name
6a0b768e
TO
200 * @param array $vars
201 * (string $name => mixed $value) variables to export to Smarty.
9b7526a8
TO
202 * @throws Exception
203 * @return bool|mixed|string
204 */
00be9182 205 public function fetchWith($resource_name, $vars) {
9b7526a8
TO
206 $this->pushScope($vars);
207 try {
208 $result = $this->fetch($resource_name);
0db6c3e1
TO
209 }
210 catch (Exception $e) {
9b7526a8
TO
211 // simulate try { ... } finally { ... }
212 $this->popScope();
213 throw $e;
214 }
215 $this->popScope();
216 return $result;
217 }
218
a0ee3941 219 /**
100fef9d 220 * @param string $name
a0ee3941
EM
221 * @param $value
222 */
00be9182 223 public function appendValue($name, $value) {
6a488035
TO
224 $currentValue = $this->get_template_vars($name);
225 if (!$currentValue) {
226 $this->assign($name, $value);
227 }
228 else {
229 if (strpos($currentValue, $value) === FALSE) {
230 $this->assign($name, $currentValue . $value);
231 }
232 }
233 }
234
00be9182 235 public function clearTemplateVars() {
6a488035
TO
236 foreach (array_keys($this->_tpl_vars) as $key) {
237 if ($key == 'config' || $key == 'session') {
238 continue;
239 }
240 unset($this->_tpl_vars[$key]);
241 }
242 }
243
00be9182 244 public static function registerStringResource() {
6a488035
TO
245 require_once 'CRM/Core/Smarty/resources/String.php';
246 civicrm_smarty_register_string_resource();
247 }
248
a0ee3941
EM
249 /**
250 * @param $path
251 */
00be9182 252 public function addTemplateDir($path) {
481a74f4
TO
253 if (is_array($this->template_dir)) {
254 array_unshift($this->template_dir, $path);
0db6c3e1
TO
255 }
256 else {
481a74f4 257 $this->template_dir = array($path, $this->template_dir);
6a488035
TO
258 }
259
260 }
17f267d6
TO
261
262 /**
263 * Temporarily assign a list of variables.
264 *
265 * @code
266 * $smarty->pushScope(array(
267 * 'first_name' => 'Alice',
268 * 'last_name' => 'roberts',
269 * ));
270 * $html = $smarty->fetch('view-contact.tpl');
271 * $smarty->popScope();
272 * @endcode
273 *
6a0b768e
TO
274 * @param array $vars
275 * (string $name => mixed $value).
17f267d6
TO
276 * @return CRM_Core_Smarty
277 * @see popScope
278 */
279 public function pushScope($vars) {
280 $oldVars = $this->get_template_vars();
281 $backupFrame = array();
282 foreach ($vars as $key => $value) {
283 $backupFrame[$key] = isset($oldVars[$key]) ? $oldVars[$key] : NULL;
284 }
285 $this->backupFrames[] = $backupFrame;
286
287 $this->assignAll($vars);
288
289 return $this;
290 }
291
292 /**
293 * Remove any values that were previously pushed.
294 *
295 * @return CRM_Core_Smarty
296 * @see pushScope
297 */
298 public function popScope() {
299 $this->assignAll(array_pop($this->backupFrames));
300 return $this;
301 }
302
303 /**
6a0b768e
TO
304 * @param array $vars
305 * (string $name => mixed $value).
17f267d6
TO
306 * @return CRM_Core_Smarty
307 */
308 public function assignAll($vars) {
309 foreach ($vars as $key => $value) {
310 $this->assign($key, $value);
311 }
312 return $this;
313 }
96025800 314
6a488035 315}