Merge pull request #14693 from eileenmcnaughton/cust_field_sql
[civicrm-core.git] / CRM / Core / Smarty.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
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 75 /**
e97c66ff 76 * Backup frames.
77 *
78 * A list of variables ot save temporarily in format (string $name => mixed $value).
79 *
80 * @var array
17f267d6 81 */
be2fb01f 82 private $backupFrames = [];
17f267d6 83
6a488035 84 /**
f9e31d7f 85 * Class constructor.
6a488035
TO
86 *
87 * @return CRM_Core_Smarty
6a488035 88 */
6ef04c72 89 public function __construct() {
6a488035
TO
90 parent::__construct();
91 }
92
2aa397bc 93 private function initialize() {
6a488035
TO
94 $config = CRM_Core_Config::singleton();
95
96 if (isset($config->customTemplateDir) && $config->customTemplateDir) {
be2fb01f 97 $this->template_dir = array_merge([$config->customTemplateDir],
6a488035
TO
98 $config->templateDir
99 );
100 }
101 else {
102 $this->template_dir = $config->templateDir;
103 }
635f0b86
TO
104 $this->compile_dir = CRM_Utils_File::addTrailingSlash(CRM_Utils_File::addTrailingSlash($config->templateCompileDir) . $this->getLocale());
105 CRM_Utils_File::createDir($this->compile_dir);
106 CRM_Utils_File::restrictAccess($this->compile_dir);
6a488035
TO
107
108 // check and ensure it is writable
109 // else we sometime suppress errors quietly and this results
110 // in blank emails etc
111 if (!is_writable($this->compile_dir)) {
112 echo "CiviCRM does not have permission to write temp files in {$this->compile_dir}, Exiting";
113 exit();
114 }
115
116 //Check for safe mode CRM-2207
117 if (ini_get('safe_mode')) {
118 $this->use_sub_dirs = FALSE;
119 }
120 else {
121 $this->use_sub_dirs = TRUE;
122 }
123
124 $customPluginsDir = NULL;
125 if (isset($config->customPHPPathDir)) {
e7483cbe
J
126 $customPluginsDir
127 = $config->customPHPPathDir . DIRECTORY_SEPARATOR .
353ffa53
TO
128 'CRM' . DIRECTORY_SEPARATOR .
129 'Core' . DIRECTORY_SEPARATOR .
130 'Smarty' . DIRECTORY_SEPARATOR .
131 'plugins' . DIRECTORY_SEPARATOR;
6a488035
TO
132 if (!file_exists($customPluginsDir)) {
133 $customPluginsDir = NULL;
134 }
135 }
136
94dbed1f
TO
137 $smartyDir = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . 'packages' . DIRECTORY_SEPARATOR . 'Smarty' . DIRECTORY_SEPARATOR;
138 $pluginsDir = __DIR__ . DIRECTORY_SEPARATOR . 'Smarty' . DIRECTORY_SEPARATOR . 'plugins' . DIRECTORY_SEPARATOR;
139
6a488035 140 if ($customPluginsDir) {
be2fb01f 141 $this->plugins_dir = [$customPluginsDir, $smartyDir . 'plugins', $pluginsDir];
6a488035
TO
142 }
143 else {
be2fb01f 144 $this->plugins_dir = [$smartyDir . 'plugins', $pluginsDir];
6a488035
TO
145 }
146
147 // add the session and the config here
148 $session = CRM_Core_Session::singleton();
149
150 $this->assign_by_ref('config', $config);
151 $this->assign_by_ref('session', $session);
152
98466ff9 153 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
154 $this->assign('tsLocale', $tsLocale);
155
156 // CRM-7163 hack: we don’t display langSwitch on upgrades anyway
157 if (!CRM_Core_Config::isUpgradeMode()) {
921ed8ae 158 $this->assign('langSwitch', CRM_Core_I18n::uiLanguages());
6a488035
TO
159 }
160
be2fb01f 161 $this->register_function('crmURL', ['CRM_Utils_System', 'crmURL']);
d9aa1c6b 162 $this->load_filter('pre', 'resetExtScope');
abbf7b48
TO
163
164 $this->assign('crmPermissions', new CRM_Core_Smarty_Permissions());
6a488035
TO
165 }
166
167 /**
168 * Static instance provider.
169 *
170 * Method providing static instance of SmartTemplate, as
171 * in Singleton pattern.
172 */
00be9182 173 public static function &singleton() {
6a488035 174 if (!isset(self::$_singleton)) {
481a74f4
TO
175 self::$_singleton = new CRM_Core_Smarty();
176 self::$_singleton->initialize();
6a488035
TO
177
178 self::registerStringResource();
179 }
180 return self::$_singleton;
181 }
182
183 /**
100fef9d 184 * Executes & returns or displays the template results
6a488035
TO
185 *
186 * @param string $resource_name
187 * @param string $cache_id
188 * @param string $compile_id
6a0b768e 189 * @param bool $display
77b97be7
EM
190 *
191 * @return bool|mixed|string
6a488035 192 */
00be9182 193 public function fetch($resource_name, $cache_id = NULL, $compile_id = NULL, $display = FALSE) {
481a74f4 194 if (preg_match('/^(\s+)?string:/', $resource_name)) {
7155133f
ND
195 $old_security = $this->security;
196 $this->security = TRUE;
197 }
198 $output = parent::fetch($resource_name, $cache_id, $compile_id, $display);
199 if (isset($old_security)) {
200 $this->security = $old_security;
201 }
202 return $output;
6a488035
TO
203 }
204
9b7526a8
TO
205 /**
206 * Fetch a template (while using certain variables)
207 *
208 * @param string $resource_name
6a0b768e
TO
209 * @param array $vars
210 * (string $name => mixed $value) variables to export to Smarty.
9b7526a8
TO
211 * @throws Exception
212 * @return bool|mixed|string
213 */
00be9182 214 public function fetchWith($resource_name, $vars) {
9b7526a8
TO
215 $this->pushScope($vars);
216 try {
217 $result = $this->fetch($resource_name);
0db6c3e1
TO
218 }
219 catch (Exception $e) {
9b7526a8
TO
220 // simulate try { ... } finally { ... }
221 $this->popScope();
222 throw $e;
223 }
224 $this->popScope();
225 return $result;
226 }
227
a0ee3941 228 /**
100fef9d 229 * @param string $name
a0ee3941
EM
230 * @param $value
231 */
00be9182 232 public function appendValue($name, $value) {
6a488035
TO
233 $currentValue = $this->get_template_vars($name);
234 if (!$currentValue) {
235 $this->assign($name, $value);
236 }
237 else {
238 if (strpos($currentValue, $value) === FALSE) {
239 $this->assign($name, $currentValue . $value);
240 }
241 }
242 }
243
00be9182 244 public function clearTemplateVars() {
6a488035
TO
245 foreach (array_keys($this->_tpl_vars) as $key) {
246 if ($key == 'config' || $key == 'session') {
247 continue;
248 }
249 unset($this->_tpl_vars[$key]);
250 }
251 }
252
00be9182 253 public static function registerStringResource() {
6a488035
TO
254 require_once 'CRM/Core/Smarty/resources/String.php';
255 civicrm_smarty_register_string_resource();
256 }
257
a0ee3941
EM
258 /**
259 * @param $path
260 */
00be9182 261 public function addTemplateDir($path) {
481a74f4
TO
262 if (is_array($this->template_dir)) {
263 array_unshift($this->template_dir, $path);
0db6c3e1
TO
264 }
265 else {
be2fb01f 266 $this->template_dir = [$path, $this->template_dir];
6a488035
TO
267 }
268
269 }
17f267d6
TO
270
271 /**
272 * Temporarily assign a list of variables.
273 *
274 * @code
275 * $smarty->pushScope(array(
276 * 'first_name' => 'Alice',
277 * 'last_name' => 'roberts',
278 * ));
279 * $html = $smarty->fetch('view-contact.tpl');
280 * $smarty->popScope();
281 * @endcode
282 *
6a0b768e
TO
283 * @param array $vars
284 * (string $name => mixed $value).
17f267d6
TO
285 * @return CRM_Core_Smarty
286 * @see popScope
287 */
288 public function pushScope($vars) {
289 $oldVars = $this->get_template_vars();
be2fb01f 290 $backupFrame = [];
17f267d6
TO
291 foreach ($vars as $key => $value) {
292 $backupFrame[$key] = isset($oldVars[$key]) ? $oldVars[$key] : NULL;
293 }
294 $this->backupFrames[] = $backupFrame;
295
296 $this->assignAll($vars);
297
298 return $this;
299 }
300
301 /**
302 * Remove any values that were previously pushed.
303 *
304 * @return CRM_Core_Smarty
305 * @see pushScope
306 */
307 public function popScope() {
308 $this->assignAll(array_pop($this->backupFrames));
309 return $this;
310 }
311
312 /**
6a0b768e
TO
313 * @param array $vars
314 * (string $name => mixed $value).
17f267d6
TO
315 * @return CRM_Core_Smarty
316 */
317 public function assignAll($vars) {
318 foreach ($vars as $key => $value) {
319 $this->assign($key, $value);
320 }
321 return $this;
322 }
96025800 323
f2ac86d1 324 /**
325 * Get the locale for translation.
326 *
327 * @return string
328 */
635f0b86 329 private function getLocale() {
98466ff9 330 $tsLocale = CRM_Core_I18n::getLocale();
635f0b86
TO
331 if (!empty($tsLocale)) {
332 return $tsLocale;
333 }
334
335 $config = CRM_Core_Config::singleton();
336 if (!empty($config->lcMessages)) {
337 return $config->lcMessages;
338 }
339
340 return 'en_US';
341 }
342
6a488035 343}