Added support for repeating events like "2nd Tuesday" or "Last Friday" of the month.
[openemr.git] / library / plugins / function.config_load.php
blobf0b8eddeef8d802a86d77650a543478a54ca1cf0
1 <?php
2 /**
3 * Smarty plugin
4 * @package Smarty
5 * @subpackage plugins
6 */
8 /**
9 * Smarty {config_load} function plugin
11 * Type: function<br>
12 * Name: config_load<br>
13 * Purpose: load config file vars
14 * @link http://smarty.php.net/manual/en/language.function.config.load.php {config_load}
15 * (Smarty online manual)
16 * @param array Format:
17 * <pre>
18 * array('file' => required config file name,
19 * 'section' => optional config file section to load
20 * 'scope' => local/parent/global
21 * 'global' => overrides scope, setting to parent if true)
22 * </pre>
23 * @param Smarty
25 function smarty_function_config_load($params, &$smarty)
27 if ($smarty->debugging) {
28 $_params = array();
29 require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.get_microtime.php');
30 $_debug_start_time = smarty_core_get_microtime($_params, $smarty);
33 $_file = isset($params['file']) ? $smarty->_dequote($params['file']) : null;
34 $_section = isset($params['section']) ? $smarty->_dequote($params['section']) : null;
35 $_scope = isset($params['scope']) ? $smarty->_dequote($params['scope']) : 'global';
36 $_global = isset($params['global']) ? $smarty->_dequote($params['global']) : false;
38 if (!isset($_file) || strlen($_file) == 0) {
39 $smarty->trigger_error("missing 'file' attribute in config_load tag", E_USER_ERROR, __FILE__, __LINE__);
42 if (isset($_scope)) {
43 if ($_scope != 'local' &&
44 $_scope != 'parent' &&
45 $_scope != 'global') {
46 $smarty->trigger_error("invalid 'scope' attribute value", E_USER_ERROR, __FILE__, __LINE__);
48 } else {
49 if ($_global) {
50 $_scope = 'parent';
51 } else {
52 $_scope = 'local';
56 $_params = array('resource_name' => $_file, 'resource_base_path' => $smarty->config_dir);
57 $smarty->_parse_resource_name($_params);
58 $_file_path = $_params['resource_type'] . ':' . $_params['resource_name'];
59 if (isset($_section))
60 $_compile_file = $smarty->_get_compile_path($_file_path.'|'.$_section);
61 else
62 $_compile_file = $smarty->_get_compile_path($_file_path);
64 if($smarty->force_compile
65 || !file_exists($_compile_file)
66 || ($smarty->compile_check
67 && !$smarty->_is_compiled($_file_path, $_compile_file))) {
68 // compile config file
69 if(!is_object($smarty->_conf_obj)) {
70 require_once SMARTY_DIR . $smarty->config_class . '.class.php';
71 $smarty->_conf_obj = new $smarty->config_class();
72 $smarty->_conf_obj->overwrite = $smarty->config_overwrite;
73 $smarty->_conf_obj->booleanize = $smarty->config_booleanize;
74 $smarty->_conf_obj->read_hidden = $smarty->config_read_hidden;
75 $smarty->_conf_obj->fix_newlines = $smarty->config_fix_newlines;
77 $_params = array('resource_name' => $_file, 'resource_base_path' => $smarty->config_dir);
78 if (!$smarty->_fetch_resource_info($_params)) {
79 return;
81 $smarty->_conf_obj->set_file_contents($_file, $_params['source_content']);
82 $_config_vars = array_merge($smarty->_conf_obj->get($_file),
83 $smarty->_conf_obj->get($_file, $_section));
84 if(function_exists('var_export')) {
85 $_output = '<?php $_config_vars = ' . var_export($_config_vars, true) . '; ?>';
86 } else {
87 $_output = '<?php $_config_vars = unserialize(\'' . strtr(serialize($_config_vars),array('\''=>'\\\'', '\\'=>'\\\\')) . '\'); ?>';
89 $_params = (array('compile_path' => $_compile_file, 'compiled_content' => $_output, 'resource_timestamp' => $_params['resource_timestamp']));
90 require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.write_compiled_resource.php');
91 smarty_core_write_compiled_resource($_params, $smarty);
92 } else {
93 include($_compile_file);
96 if ($smarty->caching) {
97 $smarty->_cache_info['config'][$_file] = true;
100 $smarty->_config[0]['vars'] = @array_merge($smarty->_config[0]['vars'], $_config_vars);
101 $smarty->_config[0]['files'][$_file] = true;
103 if ($_scope == 'parent') {
104 $smarty->_config[1]['vars'] = @array_merge($smarty->_config[1]['vars'], $_config_vars);
105 $smarty->_config[1]['files'][$_file] = true;
106 } else if ($_scope == 'global') {
107 for ($i = 1, $for_max = count($smarty->_config); $i < $for_max; $i++) {
108 $smarty->_config[$i]['vars'] = @array_merge($smarty->_config[$i]['vars'], $_config_vars);
109 $smarty->_config[$i]['files'][$_file] = true;
113 if ($smarty->debugging) {
114 $_params = array();
115 require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.get_microtime.php');
116 $smarty->_smarty_debug_info[] = array('type' => 'config',
117 'filename' => $_file.' ['.$_section.'] '.$_scope,
118 'depth' => $smarty->_inclusion_depth,
119 'exec_time' => smarty_core_get_microtime($_params, $smarty) - $_debug_start_time);
124 /* vim: set expandtab: */