Merge pull request #4822 from kurund/indentation-fixes
[civicrm-core.git] / CRM / Core / Smarty.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
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 */
40 if (!class_exists('Smarty')) {
41 require_once 'Smarty/Smarty.class.php';
42 }
43
44 /**
45 *
46 */
47 class CRM_Core_Smarty extends Smarty {
48 const
49 // use print.tpl and bypass the CMS. Civi prints a valid html file
50 PRINT_PAGE = 1,
51 // this and all the below bypasses the CMS html surrounding it and assumes we will embed this within other pages
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,
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';
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
72 * @static
73 */
74 static private $_singleton = NULL;
75
76 /**
77 * @var array (string $name => mixed $value) a list of variables ot save temporarily
78 */
79 private $backupFrames = array();
80
81 /**
82 * Class constructor
83 *
84 * @return CRM_Core_Smarty
85 */
86 private function __construct() {
87 parent::__construct();
88 }
89
90 private function initialize( ) {
91 $config = CRM_Core_Config::singleton();
92
93 if (isset($config->customTemplateDir) && $config->customTemplateDir) {
94 $this->template_dir = array_merge(array($config->customTemplateDir),
95 $config->templateDir
96 );
97 }
98 else {
99 $this->template_dir = $config->templateDir;
100 }
101 $this->compile_dir = $config->templateCompileDir;
102
103 // check and ensure it is writable
104 // else we sometime suppress errors quietly and this results
105 // in blank emails etc
106 if (!is_writable($this->compile_dir)) {
107 echo "CiviCRM does not have permission to write temp files in {$this->compile_dir}, Exiting";
108 exit();
109 }
110
111 //Check for safe mode CRM-2207
112 if (ini_get('safe_mode')) {
113 $this->use_sub_dirs = FALSE;
114 }
115 else {
116 $this->use_sub_dirs = TRUE;
117 }
118
119 $customPluginsDir = NULL;
120 if (isset($config->customPHPPathDir)) {
121 $customPluginsDir =
122 $config->customPHPPathDir . DIRECTORY_SEPARATOR .
123 'CRM' . DIRECTORY_SEPARATOR .
124 'Core' . DIRECTORY_SEPARATOR .
125 'Smarty' . DIRECTORY_SEPARATOR .
126 'plugins' . DIRECTORY_SEPARATOR;
127 if (!file_exists($customPluginsDir)) {
128 $customPluginsDir = NULL;
129 }
130 }
131
132 if ($customPluginsDir) {
133 $this->plugins_dir = array($customPluginsDir, $config->smartyDir . 'plugins', $config->pluginsDir);
134 }
135 else {
136 $this->plugins_dir = array($config->smartyDir . 'plugins', $config->pluginsDir);
137 }
138
139 // add the session and the config here
140 $session = CRM_Core_Session::singleton();
141
142 $this->assign_by_ref('config', $config);
143 $this->assign_by_ref('session', $session);
144
145 // check default editor and assign to template
146 $defaultWysiwygEditor = $session->get('defaultWysiwygEditor');
147 if (!$defaultWysiwygEditor && !CRM_Core_Config::isUpgradeMode()) {
148 $defaultWysiwygEditor = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
149 'editor_id'
150 );
151 // For logged-in users, store it in session to reduce db calls
152 if ($session->get('userID')) {
153 $session->set('defaultWysiwygEditor', $defaultWysiwygEditor);
154 }
155 }
156
157 $this->assign('defaultWysiwygEditor', $defaultWysiwygEditor);
158
159 global $tsLocale;
160 $this->assign('tsLocale', $tsLocale);
161
162 // CRM-7163 hack: we don’t display langSwitch on upgrades anyway
163 if (!CRM_Core_Config::isUpgradeMode()) {
164 $this->assign('langSwitch', CRM_Core_I18n::languages(TRUE));
165 }
166
167 $this->register_function('crmURL', array('CRM_Utils_System', 'crmURL'));
168 $this->load_filter('pre', 'resetExtScope');
169
170 $this->assign('crmPermissions', new CRM_Core_Smarty_Permissions());
171 }
172
173 /**
174 * Static instance provider.
175 *
176 * Method providing static instance of SmartTemplate, as
177 * in Singleton pattern.
178 */
179 public static function &singleton() {
180 if (!isset(self::$_singleton)) {
181 self::$_singleton = new CRM_Core_Smarty( );
182 self::$_singleton->initialize( );
183
184 self::registerStringResource();
185 }
186 return self::$_singleton;
187 }
188
189 /**
190 * Executes & returns or displays the template results
191 *
192 * @param string $resource_name
193 * @param string $cache_id
194 * @param string $compile_id
195 * @param boolean $display
196 *
197 * @return bool|mixed|string
198 */
199 public function fetch($resource_name, $cache_id = NULL, $compile_id = NULL, $display = FALSE) {
200 if (preg_match( '/^(\s+)?string:/', $resource_name)) {
201 $old_security = $this->security;
202 $this->security = TRUE;
203 }
204 $output = parent::fetch($resource_name, $cache_id, $compile_id, $display);
205 if (isset($old_security)) {
206 $this->security = $old_security;
207 }
208 return $output;
209 }
210
211 /**
212 * Fetch a template (while using certain variables)
213 *
214 * @param string $resource_name
215 * @param array $vars (string $name => mixed $value) variables to export to Smarty
216 * @throws Exception
217 * @return bool|mixed|string
218 */
219 public function fetchWith($resource_name, $vars) {
220 $this->pushScope($vars);
221 try {
222 $result = $this->fetch($resource_name);
223 } catch (Exception $e) {
224 // simulate try { ... } finally { ... }
225 $this->popScope();
226 throw $e;
227 }
228 $this->popScope();
229 return $result;
230 }
231
232 /**
233 * @param string $name
234 * @param $value
235 */
236 public function appendValue($name, $value) {
237 $currentValue = $this->get_template_vars($name);
238 if (!$currentValue) {
239 $this->assign($name, $value);
240 }
241 else {
242 if (strpos($currentValue, $value) === FALSE) {
243 $this->assign($name, $currentValue . $value);
244 }
245 }
246 }
247
248 public function clearTemplateVars() {
249 foreach (array_keys($this->_tpl_vars) as $key) {
250 if ($key == 'config' || $key == 'session') {
251 continue;
252 }
253 unset($this->_tpl_vars[$key]);
254 }
255 }
256
257 public static function registerStringResource() {
258 require_once 'CRM/Core/Smarty/resources/String.php';
259 civicrm_smarty_register_string_resource();
260 }
261
262 /**
263 * @param $path
264 */
265 public function addTemplateDir($path) {
266 if ( is_array( $this->template_dir ) ) {
267 array_unshift( $this->template_dir, $path );
268 } else {
269 $this->template_dir = array( $path, $this->template_dir );
270 }
271
272 }
273
274 /**
275 * Temporarily assign a list of variables.
276 *
277 * @code
278 * $smarty->pushScope(array(
279 * 'first_name' => 'Alice',
280 * 'last_name' => 'roberts',
281 * ));
282 * $html = $smarty->fetch('view-contact.tpl');
283 * $smarty->popScope();
284 * @endcode
285 *
286 * @param array $vars (string $name => mixed $value)
287 * @return CRM_Core_Smarty
288 * @see popScope
289 */
290 public function pushScope($vars) {
291 $oldVars = $this->get_template_vars();
292 $backupFrame = array();
293 foreach ($vars as $key => $value) {
294 $backupFrame[$key] = isset($oldVars[$key]) ? $oldVars[$key] : NULL;
295 }
296 $this->backupFrames[] = $backupFrame;
297
298 $this->assignAll($vars);
299
300 return $this;
301 }
302
303 /**
304 * Remove any values that were previously pushed.
305 *
306 * @return CRM_Core_Smarty
307 * @see pushScope
308 */
309 public function popScope() {
310 $this->assignAll(array_pop($this->backupFrames));
311 return $this;
312 }
313
314 /**
315 * @param array $vars (string $name => mixed $value)
316 * @return CRM_Core_Smarty
317 */
318 public function assignAll($vars) {
319 foreach ($vars as $key => $value) {
320 $this->assign($key, $value);
321 }
322 return $this;
323 }
324 }