f2bb53a18f8dd22f447867241f4b255b0754b4e6
[civicrm-core.git] / CRM / Core / Resources.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 * This class facilitates the loading of resources
30 * such as JavaScript files and CSS files.
31 *
32 * Any URLs generated for resources may include a 'cache-code'. By resetting the
33 * cache-code, one may force clients to re-download resource files (regardless of
34 * any HTTP caching rules).
35 *
36 * TODO: This is currently a thin wrapper over CRM_Core_Region. We
37 * should incorporte services for aggregation, minimization, etc.
38 *
39 * @package CRM
40 * @copyright CiviCRM LLC (c) 2004-2015
41 * $Id$
42 *
43 */
44 class CRM_Core_Resources {
45 const DEFAULT_WEIGHT = 0;
46 const DEFAULT_REGION = 'page-footer';
47
48 /**
49 * We don't have a container or dependency-injection, so use singleton instead
50 *
51 * @var object
52 */
53 private static $_singleton = NULL;
54
55 /**
56 * @var CRM_Extension_Mapper
57 */
58 private $extMapper = NULL;
59
60 /**
61 * @var CRM_Core_Resources_Strings
62 */
63 private $strings = NULL;
64
65 /**
66 * @var array free-form data tree
67 */
68 protected $settings = array();
69 protected $addedSettings = FALSE;
70
71 /**
72 * @var array of callables
73 */
74 protected $settingsFactories = array();
75
76 /**
77 * @var array ($regionName => bool)
78 */
79 protected $addedCoreResources = array();
80
81 /**
82 * @var array ($regionName => bool)
83 */
84 protected $addedCoreStyles = array();
85
86 /**
87 * @var string a value to append to JS/CSS URLs to coerce cache resets
88 */
89 protected $cacheCode = NULL;
90
91 /**
92 * @var string the name of a setting which persistently stores the cacheCode
93 */
94 protected $cacheCodeKey = NULL;
95
96 /**
97 * @var bool
98 */
99 public $ajaxPopupsEnabled;
100
101 /**
102 * Get or set the single instance of CRM_Core_Resources.
103 *
104 * @param CRM_Core_Resources $instance
105 * New copy of the manager.
106 * @return CRM_Core_Resources
107 */
108 static public function singleton(CRM_Core_Resources $instance = NULL) {
109 if ($instance !== NULL) {
110 self::$_singleton = $instance;
111 }
112 if (self::$_singleton === NULL) {
113 $sys = CRM_Extension_System::singleton();
114 $cache = Civi::cache('js_strings');
115 self::$_singleton = new CRM_Core_Resources(
116 $sys->getMapper(),
117 $cache,
118 CRM_Core_Config::isUpgradeMode() ? NULL : 'resCacheCode'
119 );
120 }
121 return self::$_singleton;
122 }
123
124 /**
125 * Construct a resource manager.
126 *
127 * @param CRM_Extension_Mapper $extMapper
128 * Map extension names to their base path or URLs.
129 * @param CRM_Utils_Cache_Interface $cache
130 * JS-localization cache.
131 * @param string|null $cacheCodeKey Random code to append to resource URLs; changing the code forces clients to reload resources
132 */
133 public function __construct($extMapper, $cache, $cacheCodeKey = NULL) {
134 $this->extMapper = $extMapper;
135 $this->strings = new CRM_Core_Resources_Strings($cache);
136 $this->cacheCodeKey = $cacheCodeKey;
137 if ($cacheCodeKey !== NULL) {
138 $this->cacheCode = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, $cacheCodeKey);
139 }
140 if (!$this->cacheCode) {
141 $this->resetCacheCode();
142 }
143 $this->ajaxPopupsEnabled = (bool) Civi::settings()->get('ajaxPopupsEnabled');
144 }
145
146 /**
147 * Export permission data to the client to enable smarter GUIs.
148 *
149 * Note: Application security stems from the server's enforcement
150 * of the security logic (e.g. in the API permissions). There's no way
151 * the client can use this info to make the app more secure; however,
152 * it can produce a better-tuned (non-broken) UI.
153 *
154 * @param array $permNames
155 * List of permission names to check/export.
156 * @return CRM_Core_Resources
157 */
158 public function addPermissions($permNames) {
159 $permNames = (array) $permNames;
160 $perms = array();
161 foreach ($permNames as $permName) {
162 $perms[$permName] = CRM_Core_Permission::check($permName);
163 }
164 return $this->addSetting(array(
165 'permissions' => $perms,
166 ));
167 }
168
169 /**
170 * Add a JavaScript file to the current page using <SCRIPT SRC>.
171 *
172 * @param string $ext
173 * extension name; use 'civicrm' for core.
174 * @param string $file
175 * file path -- relative to the extension base dir.
176 * @param int $weight
177 * relative weight within a given region.
178 * @param string $region
179 * location within the file; 'html-header', 'page-header', 'page-footer'.
180 * @param bool|string $translate
181 * Whether to load translated strings for this file. Use one of:
182 * - FALSE: Do not load translated strings.
183 * - TRUE: Load translated strings. Use the $ext's default domain.
184 * - string: Load translated strings. Use a specific domain.
185 *
186 * @return CRM_Core_Resources
187 */
188 public function addScriptFile($ext, $file, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION, $translate = TRUE) {
189 if ($translate) {
190 $domain = ($translate === TRUE) ? $ext : $translate;
191 $this->addString($this->strings->get($domain, $this->getPath($ext, $file), 'text/javascript'), $domain);
192 }
193 $this->resolveFileName($file, $ext);
194 return $this->addScriptUrl($this->getUrl($ext, $file, TRUE), $weight, $region);
195 }
196
197 /**
198 * Add a JavaScript file to the current page using <SCRIPT SRC>.
199 *
200 * @param string $url
201 * @param int $weight
202 * relative weight within a given region.
203 * @param string $region
204 * location within the file; 'html-header', 'page-header', 'page-footer'.
205 * @return CRM_Core_Resources
206 */
207 public function addScriptUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
208 CRM_Core_Region::instance($region)->add(array(
209 'name' => $url,
210 'type' => 'scriptUrl',
211 'scriptUrl' => $url,
212 'weight' => $weight,
213 'region' => $region,
214 ));
215 return $this;
216 }
217
218 /**
219 * Add a JavaScript file to the current page using <SCRIPT SRC>.
220 *
221 * @param string $code
222 * JavaScript source code.
223 * @param int $weight
224 * relative weight within a given region.
225 * @param string $region
226 * location within the file; 'html-header', 'page-header', 'page-footer'.
227 * @return CRM_Core_Resources
228 */
229 public function addScript($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
230 CRM_Core_Region::instance($region)->add(array(
231 // 'name' => automatic
232 'type' => 'script',
233 'script' => $code,
234 'weight' => $weight,
235 'region' => $region,
236 ));
237 return $this;
238 }
239
240 /**
241 * Add JavaScript variables to CRM.vars
242 *
243 * Example:
244 * From the server:
245 * CRM_Core_Resources::singleton()->addVars('myNamespace', array('foo' => 'bar'));
246 * Access var from javascript:
247 * CRM.vars.myNamespace.foo // "bar"
248 *
249 * @see http://wiki.civicrm.org/confluence/display/CRMDOC/Javascript+Reference
250 *
251 * @param string $nameSpace
252 * Usually the name of your extension.
253 * @param array $vars
254 * @return CRM_Core_Resources
255 */
256 public function addVars($nameSpace, $vars) {
257 $existing = CRM_Utils_Array::value($nameSpace, CRM_Utils_Array::value('vars', $this->settings), array());
258 $vars = $this->mergeSettings($existing, $vars);
259 $this->addSetting(array('vars' => array($nameSpace => $vars)));
260 return $this;
261 }
262
263 /**
264 * Add JavaScript variables to the root of the CRM object.
265 * This function is usually reserved for low-level system use.
266 * Extensions and components should generally use addVars instead.
267 *
268 * @param array $settings
269 * @return CRM_Core_Resources
270 */
271 public function addSetting($settings) {
272 $this->settings = $this->mergeSettings($this->settings, $settings);
273 if (!$this->addedSettings) {
274 $region = self::isAjaxMode() ? 'ajax-snippet' : 'html-header';
275 $resources = $this;
276 CRM_Core_Region::instance($region)->add(array(
277 'callback' => function (&$snippet, &$html) use ($resources) {
278 $html .= "\n" . $resources->renderSetting();
279 },
280 'weight' => -100000,
281 ));
282 $this->addedSettings = TRUE;
283 }
284 return $this;
285 }
286
287 /**
288 * Add JavaScript variables to the global CRM object via a callback function.
289 *
290 * @param callable $callable
291 * @return CRM_Core_Resources
292 */
293 public function addSettingsFactory($callable) {
294 // Make sure our callback has been registered
295 $this->addSetting(array());
296 $this->settingsFactories[] = $callable;
297 return $this;
298 }
299
300 /**
301 * Helper fn for addSettingsFactory.
302 */
303 public function getSettings() {
304 $result = $this->settings;
305 foreach ($this->settingsFactories as $callable) {
306 $result = $this->mergeSettings($result, $callable());
307 }
308 return $result;
309 }
310
311 /**
312 * @param array $settings
313 * @param array $additions
314 * @return array
315 * combination of $settings and $additions
316 */
317 protected function mergeSettings($settings, $additions) {
318 foreach ($additions as $k => $v) {
319 if (isset($settings[$k]) && is_array($settings[$k]) && is_array($v)) {
320 $v += $settings[$k];
321 }
322 $settings[$k] = $v;
323 }
324 return $settings;
325 }
326
327 /**
328 * Helper fn for addSetting.
329 * Render JavaScript variables for the global CRM object.
330 *
331 * @return string
332 */
333 public function renderSetting() {
334 // On a standard page request we construct the CRM object from scratch
335 if (!self::isAjaxMode()) {
336 $js = 'var CRM = ' . json_encode($this->getSettings()) . ';';
337 }
338 // For an ajax request we append to it
339 else {
340 $js = 'CRM.$.extend(true, CRM, ' . json_encode($this->getSettings()) . ');';
341 }
342 return sprintf("<script type=\"text/javascript\">\n%s\n</script>\n", $js);
343 }
344
345 /**
346 * Add translated string to the js CRM object.
347 * It can then be retrived from the client-side ts() function
348 * Variable substitutions can happen from client-side
349 *
350 * Note: this function rarely needs to be called directly and is mostly for internal use.
351 * See CRM_Core_Resources::addScriptFile which automatically adds translated strings from js files
352 *
353 * Simple example:
354 * // From php:
355 * CRM_Core_Resources::singleton()->addString('Hello');
356 * // The string is now available to javascript code i.e.
357 * ts('Hello');
358 *
359 * Example with client-side substitutions:
360 * // From php:
361 * CRM_Core_Resources::singleton()->addString('Your %1 has been %2');
362 * // ts() in javascript works the same as in php, for example:
363 * ts('Your %1 has been %2', {1: objectName, 2: actionTaken});
364 *
365 * NOTE: This function does not work with server-side substitutions
366 * (as this might result in collisions and unwanted variable injections)
367 * Instead, use code like:
368 * CRM_Core_Resources::singleton()->addSetting(array('myNamespace' => array('myString' => ts('Your %1 has been %2', array(subs)))));
369 * And from javascript access it at CRM.myNamespace.myString
370 *
371 * @param string|array $text
372 * @param string|NULL $domain
373 * @return CRM_Core_Resources
374 */
375 public function addString($text, $domain = 'civicrm') {
376 foreach ((array) $text as $str) {
377 $translated = ts($str, array(
378 'domain' => ($domain == 'civicrm') ? NULL : array($domain, NULL),
379 'raw' => TRUE,
380 ));
381
382 // We only need to push this string to client if the translation
383 // is actually different from the original
384 if ($translated != $str) {
385 $bucket = $domain == 'civicrm' ? 'strings' : 'strings::' . $domain;
386 $this->addSetting(array(
387 $bucket => array($str => $translated),
388 ));
389 }
390 }
391 return $this;
392 }
393
394 /**
395 * Add a CSS file to the current page using <LINK HREF>.
396 *
397 * @param string $ext
398 * extension name; use 'civicrm' for core.
399 * @param string $file
400 * file path -- relative to the extension base dir.
401 * @param int $weight
402 * relative weight within a given region.
403 * @param string $region
404 * location within the file; 'html-header', 'page-header', 'page-footer'.
405 * @return CRM_Core_Resources
406 */
407 public function addStyleFile($ext, $file, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
408 $this->resolveFileName($file, $ext);
409 return $this->addStyleUrl($this->getUrl($ext, $file, TRUE), $weight, $region);
410 }
411
412 /**
413 * Add a CSS file to the current page using <LINK HREF>.
414 *
415 * @param string $url
416 * @param int $weight
417 * relative weight within a given region.
418 * @param string $region
419 * location within the file; 'html-header', 'page-header', 'page-footer'.
420 * @return CRM_Core_Resources
421 */
422 public function addStyleUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
423 CRM_Core_Region::instance($region)->add(array(
424 'name' => $url,
425 'type' => 'styleUrl',
426 'styleUrl' => $url,
427 'weight' => $weight,
428 'region' => $region,
429 ));
430 return $this;
431 }
432
433 /**
434 * Add a CSS content to the current page using <STYLE>.
435 *
436 * @param string $code
437 * CSS source code.
438 * @param int $weight
439 * relative weight within a given region.
440 * @param string $region
441 * location within the file; 'html-header', 'page-header', 'page-footer'.
442 * @return CRM_Core_Resources
443 */
444 public function addStyle($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
445 CRM_Core_Region::instance($region)->add(array(
446 // 'name' => automatic
447 'type' => 'style',
448 'style' => $code,
449 'weight' => $weight,
450 'region' => $region,
451 ));
452 return $this;
453 }
454
455 /**
456 * Determine file path of a resource provided by an extension.
457 *
458 * @param string $ext
459 * extension name; use 'civicrm' for core.
460 * @param string|NULL $file
461 * file path -- relative to the extension base dir.
462 *
463 * @return bool|string
464 * full file path or FALSE if not found
465 */
466 public function getPath($ext, $file = NULL) {
467 // TODO consider caching results
468 if ($file === NULL) {
469 return $this->extMapper->keyToBasePath($ext);
470 }
471 $path = $this->extMapper->keyToBasePath($ext) . '/' . $file;
472 if (is_file($path)) {
473 return $path;
474 }
475 return FALSE;
476 }
477
478 /**
479 * Determine public URL of a resource provided by an extension.
480 *
481 * @param string $ext
482 * extension name; use 'civicrm' for core.
483 * @param string $file
484 * file path -- relative to the extension base dir.
485 * @param bool $addCacheCode
486 *
487 * @return string, URL
488 */
489 public function getUrl($ext, $file = NULL, $addCacheCode = FALSE) {
490 if ($file === NULL) {
491 $file = '';
492 }
493 if ($addCacheCode) {
494 $file .= '?r=' . $this->getCacheCode();
495 }
496 // TODO consider caching results
497 return $this->extMapper->keyToUrl($ext) . '/' . $file;
498 }
499
500 /**
501 * Evaluate a glob pattern in the context of a particular extension.
502 *
503 * @param string $ext
504 * Extension name; use 'civicrm' for core.
505 * @param string|array $patterns
506 * Glob pattern; e.g. "*.html".
507 * @param null|int $flags
508 * See glob().
509 * @return array
510 * List of matching files, relative to the extension base dir.
511 * @see glob()
512 */
513 public function glob($ext, $patterns, $flags = NULL) {
514 $path = $this->getPath($ext);
515 $patterns = (array) $patterns;
516 $files = array();
517 foreach ($patterns as $pattern) {
518 if (CRM_Utils_File::isAbsolute($pattern)) {
519 // Absolute path.
520 $files = array_merge($files, (array) glob($pattern, $flags));
521 }
522 else {
523 // Relative path.
524 $files = array_merge($files, (array) glob("$path/$pattern", $flags));
525 }
526 }
527 sort($files); // Deterministic order.
528 $files = array_unique($files);
529 return array_map(function ($file) use ($path) {
530 return CRM_Utils_File::relativize($file, "$path/");
531 }, $files);
532 }
533
534 /**
535 * @return string
536 */
537 public function getCacheCode() {
538 return $this->cacheCode;
539 }
540
541 /**
542 * @param $value
543 * @return CRM_Core_Resources
544 */
545 public function setCacheCode($value) {
546 $this->cacheCode = $value;
547 if ($this->cacheCodeKey) {
548 CRM_Core_BAO_Setting::setItem($value, CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, $this->cacheCodeKey);
549 }
550 return $this;
551 }
552
553 /**
554 * @return CRM_Core_Resources
555 */
556 public function resetCacheCode() {
557 $this->setCacheCode(CRM_Utils_String::createRandom(5, CRM_Utils_String::ALPHANUMERIC));
558 // Also flush cms resource cache if needed
559 CRM_Core_Config::singleton()->userSystem->clearResourceCache();
560 return $this;
561 }
562
563 /**
564 * This adds CiviCRM's standard css and js to the specified region of the document.
565 * It will only run once.
566 *
567 * TODO: Separate the functional code (like addStyle/addScript) from the policy code
568 * (like addCoreResources/addCoreStyles).
569 *
570 * @param string $region
571 * @return CRM_Core_Resources
572 */
573 public function addCoreResources($region = 'html-header') {
574 if (!isset($this->addedCoreResources[$region]) && !self::isAjaxMode()) {
575 $this->addedCoreResources[$region] = TRUE;
576 $config = CRM_Core_Config::singleton();
577
578 // Add resources from coreResourceList
579 $jsWeight = -9999;
580 foreach ($this->coreResourceList($region) as $item) {
581 if (is_array($item)) {
582 $this->addSetting($item);
583 }
584 elseif (substr($item, -2) == 'js') {
585 // Don't bother looking for ts() calls in packages, there aren't any
586 $translate = (substr($item, 0, 3) == 'js/');
587 $this->addScriptFile('civicrm', $item, $jsWeight++, $region, $translate);
588 }
589 else {
590 $this->addStyleFile('civicrm', $item, -100, $region);
591 }
592 }
593
594 // Dynamic localization script
595 $this->addScriptUrl(CRM_Utils_System::url('civicrm/ajax/l10n-js/' . $config->lcMessages, array('r' => $this->getCacheCode())), $jsWeight++, $region);
596
597 // Add global settings
598 $settings = array(
599 'config' => array(
600 'isFrontend' => $config->userFrameworkFrontend,
601 ),
602 );
603 // Disable profile creation if user lacks permission
604 if (!CRM_Core_Permission::check('edit all contacts') && !CRM_Core_Permission::check('add contacts')) {
605 $settings['config']['entityRef']['contactCreate'] = FALSE;
606 }
607 $this->addSetting($settings);
608
609 // Give control of jQuery and _ back to the CMS - this loads last
610 $this->addScriptFile('civicrm', 'js/noconflict.js', 9999, $region, FALSE);
611
612 $this->addCoreStyles($region);
613 }
614 return $this;
615 }
616
617 /**
618 * This will add CiviCRM's standard CSS
619 *
620 * TODO: Separate the functional code (like addStyle/addScript) from the policy code
621 * (like addCoreResources/addCoreStyles).
622 *
623 * @param string $region
624 * @return CRM_Core_Resources
625 */
626 public function addCoreStyles($region = 'html-header') {
627 if (!isset($this->addedCoreStyles[$region])) {
628 $this->addedCoreStyles[$region] = TRUE;
629
630 // Load custom or core css
631 $config = CRM_Core_Config::singleton();
632 if (!empty($config->customCSSURL)) {
633 $this->addStyleUrl($config->customCSSURL, 99, $region);
634 }
635 if (!CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'disable_core_css')) {
636 $this->addStyleFile('civicrm', 'css/civicrm.css', -99, $region);
637 }
638 }
639 return $this;
640 }
641
642 /**
643 * Flushes cached translated strings.
644 * @return CRM_Core_Resources
645 */
646 public function flushStrings() {
647 $this->strings->flush();
648 return $this;
649 }
650
651 /**
652 * @return CRM_Core_Resources_Strings
653 */
654 public function getStrings() {
655 return $this->strings;
656 }
657
658 /**
659 * Create dynamic script for localizing js widgets.
660 */
661 public static function outputLocalizationJS() {
662 CRM_Core_Page_AJAX::setJsHeaders();
663 $config = CRM_Core_Config::singleton();
664 $vars = array(
665 'moneyFormat' => json_encode(CRM_Utils_Money::format(1234.56)),
666 'contactSearch' => json_encode($config->includeEmailInName ? ts('Start typing a name or email...') : ts('Start typing a name...')),
667 'otherSearch' => json_encode(ts('Enter search term...')),
668 'entityRef' => array(
669 'contactCreate' => CRM_Core_BAO_UFGroup::getCreateLinks(),
670 'filters' => self::getEntityRefFilters(),
671 ),
672 'ajaxPopupsEnabled' => self::singleton()->ajaxPopupsEnabled,
673 );
674 print CRM_Core_Smarty::singleton()->fetchWith('CRM/common/l10n.js.tpl', $vars);
675 CRM_Utils_System::civiExit();
676 }
677
678 /**
679 * List of core resources we add to every CiviCRM page.
680 *
681 * Note: non-compressed versions of .min files will be used in debug mode
682 *
683 * @param string $region
684 * @return array
685 */
686 public function coreResourceList($region) {
687 $config = CRM_Core_Config::singleton();
688
689 // Scripts needed by everyone, everywhere
690 // FIXME: This is too long; list needs finer-grained segmentation
691 $items = array(
692 "bower_components/jquery/dist/jquery.min.js",
693 "bower_components/jquery-ui/jquery-ui.min.js",
694 "bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css",
695 "bower_components/lodash-compat/lodash.min.js",
696 "packages/jquery/plugins/jquery.mousewheel.min.js",
697 "bower_components/select2/select2.min.js",
698 "bower_components/select2/select2.min.css",
699 "packages/jquery/plugins/jquery.tableHeader.js",
700 "packages/jquery/plugins/jquery.form.min.js",
701 "packages/jquery/plugins/jquery.timeentry.min.js",
702 "packages/jquery/plugins/jquery.blockUI.min.js",
703 "bower_components/datatables/media/js/jquery.dataTables.min.js",
704 "bower_components/datatables/media/css/jquery.dataTables.min.css",
705 "bower_components/jquery-validation/dist/jquery.validate.min.js",
706 "packages/jquery/plugins/jquery.ui.datepicker.validation.min.js",
707 "js/Common.js",
708 "js/crm.ajax.js",
709 );
710 // add wysiwyg editor
711 $editor = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'editor_id');
712 $items[] = "js/wysiwyg/crm.wysiwyg.js";
713 if ($editor == "CKEditor") {
714 $items[] = "bower_components/ckeditor/ckeditor.js";
715 $items[] = "js/wysiwyg/crm.ckeditor.js";
716 $ckConfig = CRM_Admin_Page_CKEditorConfig::getConfigUrl();
717 if ($ckConfig) {
718 $items[] = array('config' => array('CKEditorCustomConfig' => $ckConfig));
719 }
720 }
721
722 // These scripts are only needed by back-office users
723 if (CRM_Core_Permission::check('access CiviCRM')) {
724 $items[] = "packages/jquery/plugins/jquery.menu.min.js";
725 $items[] = "css/navigation.css";
726 $items[] = "packages/jquery/plugins/jquery.jeditable.min.js";
727 $items[] = "packages/jquery/plugins/jquery.notify.min.js";
728 $items[] = "js/jquery/jquery.crmeditable.js";
729 }
730
731 // JS for multilingual installations
732 if (!empty($config->languageLimit) && count($config->languageLimit) > 1 && CRM_Core_Permission::check('translate CiviCRM')) {
733 $items[] = "js/crm.multilingual.js";
734 }
735
736 // Enable administrators to edit option lists in a dialog
737 if (CRM_Core_Permission::check('administer CiviCRM') && $this->ajaxPopupsEnabled) {
738 $items[] = "js/crm.optionEdit.js";
739 }
740
741 // Add localized jQuery UI files
742 if ($config->lcMessages && $config->lcMessages != 'en_US') {
743 // Search for i18n file in order of specificity (try fr-CA, then fr)
744 list($lang) = explode('_', $config->lcMessages);
745 $path = "bower_components/jquery-ui/ui/i18n";
746 foreach (array(str_replace('_', '-', $config->lcMessages), $lang) as $language) {
747 $localizationFile = "$path/datepicker-{$language}.js";
748 if ($this->getPath('civicrm', $localizationFile)) {
749 $items[] = $localizationFile;
750 break;
751 }
752 }
753 }
754
755 // Allow hooks to modify this list
756 CRM_Utils_Hook::coreResourceList($items, $region);
757
758 return $items;
759 }
760
761 /**
762 * @return bool
763 * is this page request an ajax snippet?
764 */
765 public static function isAjaxMode() {
766 return in_array(CRM_Utils_Array::value('snippet', $_REQUEST), array(
767 CRM_Core_Smarty::PRINT_SNIPPET,
768 CRM_Core_Smarty::PRINT_NOFORM,
769 CRM_Core_Smarty::PRINT_JSON,
770 ));
771 }
772
773 /**
774 * Provide a list of available entityRef filters.
775 * FIXME: This function doesn't really belong in this class
776 * @TODO: Provide a sane way to extend this list for other entities - a hook or??
777 * @return array
778 */
779 public static function getEntityRefFilters() {
780 $filters = array();
781
782 $filters['event'] = array(
783 array('key' => 'event_type_id', 'value' => ts('Event Type')),
784 array(
785 'key' => 'start_date',
786 'value' => ts('Start Date'),
787 'options' => array(
788 array('key' => '{">":"now"}', 'value' => ts('Upcoming')),
789 array('key' => '{"BETWEEN":["now - 3 month","now"]}', 'value' => ts('Past 3 Months')),
790 array('key' => '{"BETWEEN":["now - 6 month","now"]}', 'value' => ts('Past 6 Months')),
791 array('key' => '{"BETWEEN":["now - 1 year","now"]}', 'value' => ts('Past Year')),
792 ),
793 ),
794 );
795
796 $filters['activity'] = array(
797 array('key' => 'activity_type_id', 'value' => ts('Activity Type')),
798 array('key' => 'status_id', 'value' => ts('Activity Status')),
799 );
800
801 $filters['contact'] = array(
802 array('key' => 'contact_type', 'value' => ts('Contact Type')),
803 array('key' => 'group', 'value' => ts('Group'), 'entity' => 'group_contact'),
804 array('key' => 'tag', 'value' => ts('Tag'), 'entity' => 'entity_tag'),
805 array('key' => 'state_province', 'value' => ts('State/Province'), 'entity' => 'address'),
806 array('key' => 'country', 'value' => ts('Country'), 'entity' => 'address'),
807 array('key' => 'gender_id', 'value' => ts('Gender')),
808 array('key' => 'is_deceased', 'value' => ts('Deceased')),
809 );
810
811 return $filters;
812 }
813
814 /**
815 * In debug mode, look for a non-minified version of this file
816 *
817 * @param string $fileName
818 * @param string $extName
819 */
820 private function resolveFileName(&$fileName, $extName) {
821 if (CRM_Core_Config::singleton()->debug && strpos($fileName, '.min.') !== FALSE) {
822 $nonMiniFile = str_replace('.min.', '.', $fileName);
823 if ($this->getPath($extName, $nonMiniFile)) {
824 $fileName = $nonMiniFile;
825 }
826 }
827 }
828
829 }