@@ -37,13 +37,13 @@ |
||
37 | 37 | |
38 | 38 | function smarty_function_sugar_fetch($params, &$smarty) |
39 | 39 | { |
40 | - if(empty($params['key'])) { |
|
41 | - $smarty->trigger_error("sugar_fetch: missing 'key' parameter"); |
|
42 | - return; |
|
43 | - } |
|
40 | + if(empty($params['key'])) { |
|
41 | + $smarty->trigger_error("sugar_fetch: missing 'key' parameter"); |
|
42 | + return; |
|
43 | + } |
|
44 | 44 | if(empty($params['object'])) { |
45 | - $smarty->trigger_error("sugar_fetch: missing 'object' parameter"); |
|
46 | - return; |
|
45 | + $smarty->trigger_error("sugar_fetch: missing 'object' parameter"); |
|
46 | + return; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | $theKey = $params['key']; |
@@ -40,14 +40,14 @@ |
||
40 | 40 | function smarty_function_sugar_image($params, &$smarty) |
41 | 41 | { |
42 | 42 | |
43 | - if(!isset($params['name'])){ |
|
44 | - $smarty->trigger_error("sugar_field: missing 'name' parameter"); |
|
45 | - return; |
|
46 | - } |
|
47 | - $height = (!empty($params['height']))?$params['height']:'48'; |
|
48 | - $width = (!empty($params['width']))?$params['width']:'48'; |
|
49 | - $image = (!empty($params['image']))?$params['image']:$params['name']; |
|
50 | - $altimage = (!empty($params['altimage']))?$params['altimage']:$params['name']; |
|
51 | - return getStudioIcon($image, $altimage, $height, $width); |
|
43 | + if(!isset($params['name'])){ |
|
44 | + $smarty->trigger_error("sugar_field: missing 'name' parameter"); |
|
45 | + return; |
|
46 | + } |
|
47 | + $height = (!empty($params['height']))?$params['height']:'48'; |
|
48 | + $width = (!empty($params['width']))?$params['width']:'48'; |
|
49 | + $image = (!empty($params['image']))?$params['image']:$params['name']; |
|
50 | + $altimage = (!empty($params['altimage']))?$params['altimage']:$params['name']; |
|
51 | + return getStudioIcon($image, $altimage, $height, $width); |
|
52 | 52 | |
53 | 53 | } |
54 | 54 | \ No newline at end of file |
@@ -29,7 +29,7 @@ |
||
29 | 29 | |
30 | 30 | if (!empty($params['src'])) { |
31 | 31 | return '<div id="overDiv" style="position:absolute; visibility:hidden; z-index:'.$zindex.';"></div>' . "\n" |
32 | - . '<script type="text/javascript" language="JavaScript" src="'.$params['src'].'"></script>' . "\n"; |
|
32 | + . '<script type="text/javascript" language="JavaScript" src="'.$params['src'].'"></script>' . "\n"; |
|
33 | 33 | } else { |
34 | 34 | $smarty->trigger_error("popup_init: missing src parameter"); |
35 | 35 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | function smarty_modifier_count_characters($string, $include_spaces = false) |
23 | 23 | { |
24 | 24 | if ($include_spaces) |
25 | - return(strlen($string)); |
|
25 | + return(strlen($string)); |
|
26 | 26 | |
27 | 27 | return preg_match_all("/[^\s]/",$string, $match); |
28 | 28 | } |
@@ -62,19 +62,19 @@ |
||
62 | 62 | */ |
63 | 63 | function smarty_function_sugar_translate($params, &$smarty) |
64 | 64 | { |
65 | - if (!isset($params['label'])){ |
|
66 | - $smarty->trigger_error("sugar_translate: missing 'label' parameter"); |
|
67 | - return ''; |
|
68 | - } |
|
65 | + if (!isset($params['label'])){ |
|
66 | + $smarty->trigger_error("sugar_translate: missing 'label' parameter"); |
|
67 | + return ''; |
|
68 | + } |
|
69 | 69 | |
70 | - $module = (isset($params['module']))? $params['module']: ''; |
|
70 | + $module = (isset($params['module']))? $params['module']: ''; |
|
71 | 71 | if(isset($params['select'])){ |
72 | - if(empty($params['select'])) |
|
73 | - $value = ""; |
|
74 | - else |
|
75 | - $value = translate($params['label'] , $module, $params['select']); |
|
76 | - }else{ |
|
77 | - $value = translate($params['label'] , $module); |
|
72 | + if(empty($params['select'])) |
|
73 | + $value = ""; |
|
74 | + else |
|
75 | + $value = translate($params['label'] , $module, $params['select']); |
|
76 | + }else{ |
|
77 | + $value = translate($params['label'] , $module); |
|
78 | 78 | } |
79 | 79 | if (!empty($params['for_js']) && $params['for_js']) { |
80 | 80 | $value = addslashes($value); |
@@ -88,24 +88,24 @@ discard block |
||
88 | 88 | if (!empty($params['var']['assign'])) { |
89 | 89 | return '{$' . $params['colData']['field']['name'] . '}'; |
90 | 90 | } else { |
91 | - $code = $params['var']['customCode']; |
|
92 | - if(isset($params['tabindex']) && preg_match_all("'(<[ ]*?)(textarea|input|select)([^>]*?)(>)'si", $code, $matches, PREG_PATTERN_ORDER)) { |
|
93 | - $str_replace = array(); |
|
94 | - $tabindex = ' tabindex="' . $params['tabindex'] . '" '; |
|
95 | - foreach($matches[3] as $match) { |
|
96 | - $str_replace[$match] = $tabindex . $match; |
|
97 | - } |
|
98 | - $code = str_replace(array_keys($str_replace), array_values($str_replace), $code); |
|
99 | - } |
|
91 | + $code = $params['var']['customCode']; |
|
92 | + if(isset($params['tabindex']) && preg_match_all("'(<[ ]*?)(textarea|input|select)([^>]*?)(>)'si", $code, $matches, PREG_PATTERN_ORDER)) { |
|
93 | + $str_replace = array(); |
|
94 | + $tabindex = ' tabindex="' . $params['tabindex'] . '" '; |
|
95 | + foreach($matches[3] as $match) { |
|
96 | + $str_replace[$match] = $tabindex . $match; |
|
97 | + } |
|
98 | + $code = str_replace(array_keys($str_replace), array_values($str_replace), $code); |
|
99 | + } |
|
100 | 100 | |
101 | 101 | if(isset($params['accesskey']) && preg_match_all("'(<[ ]*?)(textarea|input|select)([^>]*?)(>)'si", $code, $matches, PREG_PATTERN_ORDER)) { |
102 | - $str_replace = array(); |
|
103 | - $accesskey = ' accesskey="' . $params['accesskey'] . '" '; |
|
104 | - foreach($matches[3] as $match) { |
|
105 | - $str_replace[$match] = $accesskey . $match; |
|
106 | - } |
|
107 | - $code = str_replace(array_keys($str_replace), array_values($str_replace), $code); |
|
108 | - } |
|
102 | + $str_replace = array(); |
|
103 | + $accesskey = ' accesskey="' . $params['accesskey'] . '" '; |
|
104 | + foreach($matches[3] as $match) { |
|
105 | + $str_replace[$match] = $accesskey . $match; |
|
106 | + } |
|
107 | + $code = str_replace(array_keys($str_replace), array_values($str_replace), $code); |
|
108 | + } |
|
109 | 109 | |
110 | 110 | // Add a string replace to swap out @@FIELD@@ for the actual field, |
111 | 111 | // we can't do this through customCode directly because the sugar_field smarty function returns smarty code to run on the second pass |
@@ -126,12 +126,12 @@ discard block |
||
126 | 126 | $code = str_replace('@@FIELD@@',$fieldText,$code); |
127 | 127 | } |
128 | 128 | |
129 | - //eggsurplus bug 28321: add support for rendering customCode AND normal field rendering |
|
130 | - if(!empty($params['var']['displayParams']['enableConnectors']) && empty($params['var']['customCodeRenderField'])) { |
|
131 | - require_once('include/connectors/utils/ConnectorUtils.php'); |
|
132 | - $code .= ' ' . ConnectorUtils::getConnectorButtonScript($params['var']['displayParams'], $smarty); |
|
133 | - } |
|
134 | - return $code; |
|
129 | + //eggsurplus bug 28321: add support for rendering customCode AND normal field rendering |
|
130 | + if(!empty($params['var']['displayParams']['enableConnectors']) && empty($params['var']['customCodeRenderField'])) { |
|
131 | + require_once('include/connectors/utils/ConnectorUtils.php'); |
|
132 | + $code .= ' ' . ConnectorUtils::getConnectorButtonScript($params['var']['displayParams'], $smarty); |
|
133 | + } |
|
134 | + return $code; |
|
135 | 135 | } |
136 | 136 | |
137 | 137 |
@@ -43,19 +43,19 @@ |
||
43 | 43 | |
44 | 44 | function smarty_function_ext_includes($params, &$smarty) |
45 | 45 | { |
46 | - $ret = '<link rel="stylesheet" type="text/css" href="' . getJSPath("themes/default/ext/resources/css/ext-all.css") . '" />' |
|
47 | - . '<link rel="stylesheet" type="text/css" href="' . getJSPath("themes/default/ext/resources/css/xtheme-gray.css") . '" />'; |
|
46 | + $ret = '<link rel="stylesheet" type="text/css" href="' . getJSPath("themes/default/ext/resources/css/ext-all.css") . '" />' |
|
47 | + . '<link rel="stylesheet" type="text/css" href="' . getJSPath("themes/default/ext/resources/css/xtheme-gray.css") . '" />'; |
|
48 | 48 | |
49 | - global $theme; |
|
50 | - if (is_dir("themes/$theme/ext/resources/css")) { |
|
51 | - $cssDir = opendir("themes/$theme/ext/resources/css"); |
|
52 | - while (($file = readdir($cssDir)) !== false) { |
|
53 | - if (strcasecmp(substr($file, -4), '.css' == 0)) { |
|
54 | - $ret .= "<link rel='stylesheet' type='text/css' href='" . getJSPath("themes/$theme/ext/resources/css/$file") . "' />"; |
|
55 | - } |
|
56 | - } |
|
57 | - } |
|
49 | + global $theme; |
|
50 | + if (is_dir("themes/$theme/ext/resources/css")) { |
|
51 | + $cssDir = opendir("themes/$theme/ext/resources/css"); |
|
52 | + while (($file = readdir($cssDir)) !== false) { |
|
53 | + if (strcasecmp(substr($file, -4), '.css' == 0)) { |
|
54 | + $ret .= "<link rel='stylesheet' type='text/css' href='" . getJSPath("themes/$theme/ext/resources/css/$file") . "' />"; |
|
55 | + } |
|
56 | + } |
|
57 | + } |
|
58 | 58 | |
59 | - return $ret; |
|
59 | + return $ret; |
|
60 | 60 | |
61 | 61 | } |
62 | 62 | \ No newline at end of file |
@@ -54,6 +54,6 @@ |
||
54 | 54 | */ |
55 | 55 | function smarty_modifier_strip_semicolon($text) |
56 | 56 | { |
57 | - return preg_replace("/([:]|\xEF\xBC\x9A)[\\s]*$/", '', trim($text)); |
|
57 | + return preg_replace("/([:]|\xEF\xBC\x9A)[\\s]*$/", '', trim($text)); |
|
58 | 58 | } |
59 | 59 | ?> |
60 | 60 | \ No newline at end of file |
@@ -72,15 +72,15 @@ |
||
72 | 72 | function smarty_function_sugar_help($params, &$smarty) |
73 | 73 | { |
74 | 74 | $text = str_replace("'","\'",htmlspecialchars($params['text'])); |
75 | - //append any additional parameters. |
|
76 | - $click = "return SUGAR.util.showHelpTips(this,'$text'"; |
|
75 | + //append any additional parameters. |
|
76 | + $click = "return SUGAR.util.showHelpTips(this,'$text'"; |
|
77 | 77 | |
78 | - if (count( $params) > 1){ |
|
78 | + if (count( $params) > 1){ |
|
79 | 79 | |
80 | - $click .=",'".$params['myPos']."','".$params['atPos']."'"; |
|
81 | - } |
|
80 | + $click .=",'".$params['myPos']."','".$params['atPos']."'"; |
|
81 | + } |
|
82 | 82 | $helpImage = SugarThemeRegistry::current()->getImageURL('helpInline.png'); |
83 | - $click .= " );" ; |
|
83 | + $click .= " );" ; |
|
84 | 84 | $alt_tag = $GLOBALS['app_strings']['LBL_ALT_INFO']; |
85 | 85 | return <<<EOHTML |
86 | 86 | <img border="0" |