@@ -54,25 +54,25 @@ |
||
54 | 54 | function smarty_function_sugar_getimage($params, &$smarty) { |
55 | 55 | |
56 | 56 | // error checking for required parameters |
57 | - if(!isset($params['name'])) |
|
58 | - $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'] . 'name'); |
|
57 | + if (!isset($params['name'])) |
|
58 | + $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'].'name'); |
|
59 | 59 | |
60 | 60 | // temp hack to deprecate the use of other_attributes |
61 | - if(isset($params['other_attributes'])) |
|
61 | + if (isset($params['other_attributes'])) |
|
62 | 62 | $params['attr'] = $params['other_attributes']; |
63 | 63 | |
64 | 64 | // set defaults |
65 | - if(!isset($params['attr'])) |
|
65 | + if (!isset($params['attr'])) |
|
66 | 66 | $params['attr'] = ''; |
67 | - if(!isset($params['width'])) |
|
67 | + if (!isset($params['width'])) |
|
68 | 68 | $params['width'] = null; |
69 | - if(!isset($params['height'])) |
|
69 | + if (!isset($params['height'])) |
|
70 | 70 | $params['height'] = null; |
71 | - if(!isset($params['alt'])) |
|
71 | + if (!isset($params['alt'])) |
|
72 | 72 | $params['alt'] = ''; |
73 | 73 | |
74 | 74 | // deprecated ? |
75 | - if(!isset($params['ext'])) |
|
75 | + if (!isset($params['ext'])) |
|
76 | 76 | $params['ext'] = null; |
77 | 77 | |
78 | 78 | return SugarThemeRegistry::current()->getImage($params['name'], $params['attr'], $params['width'], $params['height'], $params['ext'], $params['alt']); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | { |
29 | 29 | if ($smarty->debugging) { |
30 | 30 | $_params = array(); |
31 | - require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); |
|
31 | + require_once(SMARTY_CORE_DIR.'core.get_microtime.php'); |
|
32 | 32 | $_debug_start_time = smarty_core_get_microtime($_params, $smarty); |
33 | 33 | } |
34 | 34 | |
@@ -59,13 +59,13 @@ discard block |
||
59 | 59 | 'resource_base_path' => $smarty->config_dir, |
60 | 60 | 'get_source' => false); |
61 | 61 | $smarty->_parse_resource_name($_params); |
62 | - $_file_path = $_params['resource_type'] . ':' . $_params['resource_name']; |
|
62 | + $_file_path = $_params['resource_type'].':'.$_params['resource_name']; |
|
63 | 63 | if (isset($_section)) |
64 | 64 | $_compile_file = $smarty->_get_compile_path($_file_path.'|'.$_section); |
65 | 65 | else |
66 | 66 | $_compile_file = $smarty->_get_compile_path($_file_path); |
67 | 67 | |
68 | - if($smarty->force_compile || !file_exists($_compile_file)) { |
|
68 | + if ($smarty->force_compile || !file_exists($_compile_file)) { |
|
69 | 69 | $_compile = true; |
70 | 70 | } elseif ($smarty->compile_check) { |
71 | 71 | $_params = array('resource_name' => $_file, |
@@ -77,10 +77,10 @@ discard block |
||
77 | 77 | $_compile = false; |
78 | 78 | } |
79 | 79 | |
80 | - if($_compile) { |
|
80 | + if ($_compile) { |
|
81 | 81 | // compile config file |
82 | - if(!is_object($smarty->_conf_obj)) { |
|
83 | - require_once SMARTY_DIR . $smarty->config_class . '.class.php'; |
|
82 | + if (!is_object($smarty->_conf_obj)) { |
|
83 | + require_once SMARTY_DIR.$smarty->config_class.'.class.php'; |
|
84 | 84 | $smarty->_conf_obj = new $smarty->config_class(); |
85 | 85 | $smarty->_conf_obj->overwrite = $smarty->config_overwrite; |
86 | 86 | $smarty->_conf_obj->booleanize = $smarty->config_booleanize; |
@@ -97,13 +97,13 @@ discard block |
||
97 | 97 | $smarty->_conf_obj->set_file_contents($_file, $_params['source_content']); |
98 | 98 | $_config_vars = array_merge($smarty->_conf_obj->get($_file), |
99 | 99 | $smarty->_conf_obj->get($_file, $_section)); |
100 | - if(function_exists('var_export')) { |
|
101 | - $_output = '<?php $_config_vars = ' . var_export($_config_vars, true) . '; ?>'; |
|
100 | + if (function_exists('var_export')) { |
|
101 | + $_output = '<?php $_config_vars = '.var_export($_config_vars, true).'; ?>'; |
|
102 | 102 | } else { |
103 | - $_output = '<?php $_config_vars = unserialize(\'' . strtr(serialize($_config_vars),array('\''=>'\\\'', '\\'=>'\\\\')) . '\'); ?>'; |
|
103 | + $_output = '<?php $_config_vars = unserialize(\''.strtr(serialize($_config_vars), array('\''=>'\\\'', '\\'=>'\\\\')).'\'); ?>'; |
|
104 | 104 | } |
105 | 105 | $_params = (array('compile_path' => $_compile_file, 'compiled_content' => $_output, 'resource_timestamp' => $_params['resource_timestamp'])); |
106 | - require_once(SMARTY_CORE_DIR . 'core.write_compiled_resource.php'); |
|
106 | + require_once(SMARTY_CORE_DIR.'core.write_compiled_resource.php'); |
|
107 | 107 | smarty_core_write_compiled_resource($_params, $smarty); |
108 | 108 | } else { |
109 | 109 | include($_compile_file); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | if ($smarty->debugging) { |
130 | 130 | $_params = array(); |
131 | - require_once(SMARTY_CORE_DIR . 'core.get_microtime.php'); |
|
131 | + require_once(SMARTY_CORE_DIR.'core.get_microtime.php'); |
|
132 | 132 | $smarty->_smarty_debug_info[] = array('type' => 'config', |
133 | 133 | 'filename' => $_file.' ['.$_section.'] '.$_scope, |
134 | 134 | 'depth' => $smarty->_inclusion_depth, |
@@ -47,19 +47,19 @@ discard block |
||
47 | 47 | function smarty_function_sugar_evalcolumn_old($params, &$smarty) |
48 | 48 | { |
49 | 49 | if (!isset($params['var']) || !isset($params['rowData'])) { |
50 | - if(!isset($params['var'])) |
|
50 | + if (!isset($params['var'])) |
|
51 | 51 | $smarty->trigger_error("evalcolumn: missing 'var' parameter"); |
52 | - if(!isset($params['rowData'])) |
|
52 | + if (!isset($params['rowData'])) |
|
53 | 53 | $smarty->trigger_error("evalcolumn: missing 'rowData' parameter"); |
54 | 54 | return; |
55 | 55 | } |
56 | 56 | |
57 | - if($params['var'] == '') { |
|
57 | + if ($params['var'] == '') { |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 | |
61 | - if(is_array($params['var'])) { |
|
62 | - foreach($params['var'] as $key => $value) { |
|
61 | + if (is_array($params['var'])) { |
|
62 | + foreach ($params['var'] as $key => $value) { |
|
63 | 63 | $params['var'][$key] = searchReplace($value, $params['rowData']); |
64 | 64 | } |
65 | 65 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $params['var'] = searchReplace($params['var'], $params['rowData']); |
68 | 68 | } |
69 | 69 | |
70 | - if(isset($params['toJSON'])) { |
|
70 | + if (isset($params['toJSON'])) { |
|
71 | 71 | $json = getJSONobj(); |
72 | 72 | $params['var'] = $json->encode($params['var']); |
73 | 73 | } |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | function searchReplace($value, &$rowData) { |
83 | 83 | preg_match_all('/\{\$(.*)\}/U', $value, $matches); |
84 | 84 | |
85 | - for($wp = 0; $wp < count($matches[0]); $wp++) { |
|
86 | - if(isset($rowData[$matches[1][$wp]])) |
|
85 | + for ($wp = 0; $wp < count($matches[0]); $wp++) { |
|
86 | + if (isset($rowData[$matches[1][$wp]])) |
|
87 | 87 | $value = str_replace($matches[0][$wp], $rowData[$matches[1][$wp]], $value); |
88 | 88 | else |
89 | 89 | $value = str_replace($matches[0][$wp], '', $value); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | function smarty_function_sugar_replace_vars($params, &$smarty) |
42 | 42 | { |
43 | - if(empty($params['subject'])) { |
|
43 | + if (empty($params['subject'])) { |
|
44 | 44 | $smarty->trigger_error("sugarvar: missing 'subject' parameter"); |
45 | 45 | return; |
46 | 46 | } |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | } |
55 | 55 | $subject = $params['subject']; |
56 | 56 | $matches = array(); |
57 | - $count = preg_match_all('/\\' . $lDelim . '([^\\' . $rDelim . ']*)\\' . $rDelim . '/', $subject, $matches); |
|
58 | - for($i = 0; $i < $count; $i++) { |
|
57 | + $count = preg_match_all('/\\'.$lDelim.'([^\\'.$rDelim.']*)\\'.$rDelim.'/', $subject, $matches); |
|
58 | + for ($i = 0; $i < $count; $i++) { |
|
59 | 59 | $match = $matches[1][$i]; |
60 | 60 | //List views will have fields be an array where all the keys are upper case and the values are jsut strings |
61 | 61 | if (!isset($fields[$match]) && isset($fields[strtoupper($match)])) |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $value = $value['value']; |
74 | 74 | } |
75 | 75 | |
76 | - if (isset($fields[$match]['type']) && $fields[$match]['type']=='enum' |
|
76 | + if (isset($fields[$match]['type']) && $fields[$match]['type'] == 'enum' |
|
77 | 77 | && isset($fields[$match]['options']) && isset($fields[$match]['options'][$value])) |
78 | 78 | { |
79 | 79 | $subject = str_replace($matches[0][$i], $fields[$match]['options'][$value], $subject); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | function smarty_function_html_checkboxes($params, &$smarty) |
42 | 42 | { |
43 | - require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); |
|
43 | + require_once $smarty->_get_plugin_filepath('shared', 'escape_special_chars'); |
|
44 | 44 | |
45 | 45 | $name = 'checkbox'; |
46 | 46 | $values = null; |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | |
53 | 53 | $extra = ''; |
54 | 54 | |
55 | - foreach($params as $_key => $_val) { |
|
56 | - switch($_key) { |
|
55 | + foreach ($params as $_key => $_val) { |
|
56 | + switch ($_key) { |
|
57 | 57 | case 'name': |
58 | 58 | case 'separator': |
59 | 59 | $$_key = $_val; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | break; |
87 | 87 | |
88 | 88 | default: |
89 | - if(!is_array($_val)) { |
|
89 | + if (!is_array($_val)) { |
|
90 | 90 | $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"'; |
91 | 91 | } else { |
92 | 92 | $smarty->trigger_error("html_checkboxes: extra attribute '$_key' cannot be an array", E_USER_NOTICE); |
@@ -115,10 +115,10 @@ discard block |
||
115 | 115 | |
116 | 116 | } |
117 | 117 | |
118 | - if(!empty($params['assign'])) { |
|
118 | + if (!empty($params['assign'])) { |
|
119 | 119 | $smarty->assign($params['assign'], $_html_result); |
120 | 120 | } else { |
121 | - return implode("\n",$_html_result); |
|
121 | + return implode("\n", $_html_result); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | } |
@@ -127,15 +127,15 @@ discard block |
||
127 | 127 | $_output = ''; |
128 | 128 | if ($labels) $_output .= '<label>'; |
129 | 129 | $_output .= '<input type="checkbox" name="' |
130 | - . smarty_function_escape_special_chars($name) . '[]" value="' |
|
131 | - . smarty_function_escape_special_chars($value) . '"'; |
|
130 | + . smarty_function_escape_special_chars($name).'[]" value="' |
|
131 | + . smarty_function_escape_special_chars($value).'"'; |
|
132 | 132 | |
133 | 133 | if (in_array((string)$value, $selected)) { |
134 | 134 | $_output .= ' checked="checked"'; |
135 | 135 | } |
136 | - $_output .= $extra . ' />' . $output; |
|
136 | + $_output .= $extra.' />'.$output; |
|
137 | 137 | if ($labels) $_output .= '</label>'; |
138 | - $_output .= $separator; |
|
138 | + $_output .= $separator; |
|
139 | 139 | |
140 | 140 | return $_output; |
141 | 141 | } |
@@ -56,8 +56,8 @@ |
||
56 | 56 | */ |
57 | 57 | function smarty_function_sugar_getscript($params, &$smarty) |
58 | 58 | { |
59 | - if(!isset($params['file'])) { |
|
60 | - $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'] . 'file'); |
|
59 | + if (!isset($params['file'])) { |
|
60 | + $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'].'file'); |
|
61 | 61 | } |
62 | 62 | return getVersionedScript($params['file']); |
63 | 63 | } |
@@ -79,7 +79,7 @@ |
||
79 | 79 | if (preg_match('/^[^:\/]*:\/\/.*/', $string)) { |
80 | 80 | return $string; |
81 | 81 | } else { |
82 | - return 'http://' . $string; |
|
82 | + return 'http://'.$string; |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | case 'inarray': |
31 | 31 | $$_key = (string)$_value; |
32 | 32 | if ($_key == 'function' || $_key == 'inarray') |
33 | - $append .= ',' . strtoupper($_key) . ",'$_value'"; |
|
33 | + $append .= ','.strtoupper($_key).",'$_value'"; |
|
34 | 34 | break; |
35 | 35 | |
36 | 36 | case 'caption': |
37 | 37 | case 'closetext': |
38 | 38 | case 'status': |
39 | - $append .= ',' . strtoupper($_key) . ",'" . str_replace("'","\'",$_value) . "'"; |
|
39 | + $append .= ','.strtoupper($_key).",'".str_replace("'", "\'", $_value)."'"; |
|
40 | 40 | break; |
41 | 41 | |
42 | 42 | case 'fgcolor': |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | case 'capicon': |
54 | 54 | case 'background': |
55 | 55 | case 'frame': |
56 | - $append .= ',' . strtoupper($_key) . ",'$_value'"; |
|
56 | + $append .= ','.strtoupper($_key).",'$_value'"; |
|
57 | 57 | break; |
58 | 58 | |
59 | 59 | case 'textsize': |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | case 'pady': |
73 | 73 | case 'timeout': |
74 | 74 | case 'delay': |
75 | - $append .= ',' . strtoupper($_key) . ",$_value"; |
|
75 | + $append .= ','.strtoupper($_key).",$_value"; |
|
76 | 76 | break; |
77 | 77 | |
78 | 78 | case 'sticky': |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | case 'mouseoff': |
91 | 91 | case 'followmouse': |
92 | 92 | case 'closeclick': |
93 | - if ($_value) $append .= ',' . strtoupper($_key); |
|
93 | + if ($_value) $append .= ','.strtoupper($_key); |
|
94 | 94 | break; |
95 | 95 | |
96 | 96 | default: |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | |
106 | 106 | if (empty($trigger)) { $trigger = "onmouseover"; } |
107 | 107 | |
108 | - $retval = $trigger . '="return overlib(\''.preg_replace(array("!'!","![\r\n]!"),array("\'",'\r'),$text).'\''; |
|
109 | - $retval .= $append . ');"'; |
|
108 | + $retval = $trigger.'="return overlib(\''.preg_replace(array("!'!", "![\r\n]!"), array("\'", '\r'), $text).'\''; |
|
109 | + $retval .= $append.');"'; |
|
110 | 110 | if ($trigger == 'onmouseover') |
111 | 111 | $retval .= ' onmouseout="nd();"'; |
112 | 112 |
@@ -44,29 +44,29 @@ |
||
44 | 44 | { |
45 | 45 | $error = false; |
46 | 46 | |
47 | - if(!isset($params['func'])) { |
|
47 | + if (!isset($params['func'])) { |
|
48 | 48 | $error = true; |
49 | 49 | $smarty->trigger_error("sugar_field: missing 'func' parameter"); |
50 | 50 | } |
51 | - if(!isset($params['displayType'])) { |
|
51 | + if (!isset($params['displayType'])) { |
|
52 | 52 | $error = true; |
53 | 53 | $smarty->trigger_error("sugar_field: missing 'displayType' parameter"); |
54 | 54 | } |
55 | - if(!isset($params['bean'])) { |
|
55 | + if (!isset($params['bean'])) { |
|
56 | 56 | $params['bean'] = $GLOBALS['focus']; |
57 | 57 | } |
58 | 58 | |
59 | - if ( $error ) { |
|
59 | + if ($error) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | |
63 | 63 | $funcName = $params['func']; |
64 | 64 | |
65 | - if ( !empty($params['include']) ) { |
|
65 | + if (!empty($params['include'])) { |
|
66 | 66 | require_once($params['include']); |
67 | 67 | } |
68 | 68 | |
69 | - $_contents = $funcName($params['bean'],$params['field'],$params['value'],$params['displayType'],$params['tabindex']); |
|
69 | + $_contents = $funcName($params['bean'], $params['field'], $params['value'], $params['displayType'], $params['tabindex']); |
|
70 | 70 | return $_contents; |
71 | 71 | } |
72 | 72 | ?> |