@@ -74,17 +74,17 @@ |
||
74 | 74 | case 'nonstd': |
75 | 75 | // escape non-standard chars, such as ms document quotes |
76 | 76 | $_res = ''; |
77 | - for($_i = 0, $_len = strlen($string); $_i < $_len; $_i++) { |
|
78 | - $_ord = ord(substr($string, $_i, 1)); |
|
79 | - // non-standard char, escape it |
|
80 | - if($_ord >= 126){ |
|
81 | - $_res .= '&#' . $_ord . ';'; |
|
82 | - } |
|
83 | - else { |
|
84 | - $_res .= substr($string, $_i, 1); |
|
85 | - } |
|
86 | - } |
|
87 | - return $_res; |
|
77 | + for($_i = 0, $_len = strlen($string); $_i < $_len; $_i++) { |
|
78 | + $_ord = ord(substr($string, $_i, 1)); |
|
79 | + // non-standard char, escape it |
|
80 | + if($_ord >= 126){ |
|
81 | + $_res .= '&#' . $_ord . ';'; |
|
82 | + } |
|
83 | + else { |
|
84 | + $_res .= substr($string, $_i, 1); |
|
85 | + } |
|
86 | + } |
|
87 | + return $_res; |
|
88 | 88 | |
89 | 89 | default: |
90 | 90 | return $string; |
@@ -54,9 +54,9 @@ |
||
54 | 54 | */ |
55 | 55 | function smarty_function_sugar_getimagepath($params, &$smarty) |
56 | 56 | { |
57 | - if(!isset($params['file'])) { |
|
58 | - $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'] . 'file'); |
|
59 | - } |
|
60 | - return SugarThemeRegistry::current()->getImageURL($params['file']); |
|
57 | + if(!isset($params['file'])) { |
|
58 | + $smarty->trigger_error($GLOBALS['app_strings']['ERR_MISSING_REQUIRED_FIELDS'] . 'file'); |
|
59 | + } |
|
60 | + return SugarThemeRegistry::current()->getImageURL($params['file']); |
|
61 | 61 | } |
62 | 62 | ?> |
63 | 63 | \ No newline at end of file |
@@ -102,18 +102,18 @@ |
||
102 | 102 | */ |
103 | 103 | function smarty_function_sugar_phone($params, &$smarty) |
104 | 104 | { |
105 | - if (!isset($params['value'])){ |
|
106 | - $smarty->trigger_error("sugar_phone: missing 'value' parameter"); |
|
107 | - return ''; |
|
108 | - } |
|
105 | + if (!isset($params['value'])){ |
|
106 | + $smarty->trigger_error("sugar_phone: missing 'value' parameter"); |
|
107 | + return ''; |
|
108 | + } |
|
109 | 109 | |
110 | - global $system_config; |
|
110 | + global $system_config; |
|
111 | 111 | if(isset($system_config->settings['system_skypeout_on']) && $system_config->settings['system_skypeout_on'] == 1 |
112 | - && isset($params['value']) && skype_formatted($params['value']) ) { |
|
113 | - $GLOBALS['log']->debug($params['value']); |
|
114 | - return '<a href="callto:'.format_skype($params['value']).'">'.$params['value'].'</a>'; |
|
112 | + && isset($params['value']) && skype_formatted($params['value']) ) { |
|
113 | + $GLOBALS['log']->debug($params['value']); |
|
114 | + return '<a href="callto:'.format_skype($params['value']).'">'.$params['value'].'</a>'; |
|
115 | 115 | } else { |
116 | - return $params['value']; |
|
116 | + return $params['value']; |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | ?> |
@@ -31,19 +31,19 @@ |
||
31 | 31 | preg_match_all("!<script[^>]*?>.*?</script>!is", $source, $match); |
32 | 32 | $_script_blocks = $match[0]; |
33 | 33 | $source = preg_replace("!<script[^>]*?>.*?</script>!is", |
34 | - '@@@SMARTY:TRIM:SCRIPT@@@', $source); |
|
34 | + '@@@SMARTY:TRIM:SCRIPT@@@', $source); |
|
35 | 35 | |
36 | 36 | // Pull out the pre blocks |
37 | 37 | preg_match_all("!<pre[^>]*?>.*?</pre>!is", $source, $match); |
38 | 38 | $_pre_blocks = $match[0]; |
39 | 39 | $source = preg_replace("!<pre[^>]*?>.*?</pre>!is", |
40 | - '@@@SMARTY:TRIM:PRE@@@', $source); |
|
40 | + '@@@SMARTY:TRIM:PRE@@@', $source); |
|
41 | 41 | |
42 | 42 | // Pull out the textarea blocks |
43 | 43 | preg_match_all("!<textarea[^>]*?>.*?</textarea>!is", $source, $match); |
44 | 44 | $_textarea_blocks = $match[0]; |
45 | 45 | $source = preg_replace("!<textarea[^>]*?>.*?</textarea>!is", |
46 | - '@@@SMARTY:TRIM:TEXTAREA@@@', $source); |
|
46 | + '@@@SMARTY:TRIM:TEXTAREA@@@', $source); |
|
47 | 47 | |
48 | 48 | // remove all leading spaces, tabs and carriage returns NOT |
49 | 49 | // preceeded by a php close tag. |
@@ -68,46 +68,46 @@ |
||
68 | 68 | |
69 | 69 | function smarty_function_sugarvar($params, &$smarty) |
70 | 70 | { |
71 | - if(empty($params['key'])) { |
|
72 | - $smarty->trigger_error("sugarvar: missing 'key' parameter"); |
|
73 | - return; |
|
74 | - } |
|
75 | - |
|
76 | - $object = (empty($params['objectName']))?$smarty->get_template_vars('parentFieldArray'): $params['objectName']; |
|
77 | - $displayParams = $smarty->get_template_vars('displayParams'); |
|
78 | - |
|
79 | - |
|
80 | - if(empty($params['memberName'])){ |
|
81 | - $member = $smarty->get_template_vars('vardef'); |
|
82 | - $member = $member['name']; |
|
83 | - }else{ |
|
84 | - $members = explode('.', $params['memberName']); |
|
85 | - $member = $smarty->get_template_vars($members[0]); |
|
86 | - for($i = 1; $i < count($members); $i++){ |
|
87 | - $member = $member[$members[$i]]; |
|
88 | - } |
|
89 | - } |
|
71 | + if(empty($params['key'])) { |
|
72 | + $smarty->trigger_error("sugarvar: missing 'key' parameter"); |
|
73 | + return; |
|
74 | + } |
|
75 | + |
|
76 | + $object = (empty($params['objectName']))?$smarty->get_template_vars('parentFieldArray'): $params['objectName']; |
|
77 | + $displayParams = $smarty->get_template_vars('displayParams'); |
|
78 | + |
|
79 | + |
|
80 | + if(empty($params['memberName'])){ |
|
81 | + $member = $smarty->get_template_vars('vardef'); |
|
82 | + $member = $member['name']; |
|
83 | + }else{ |
|
84 | + $members = explode('.', $params['memberName']); |
|
85 | + $member = $smarty->get_template_vars($members[0]); |
|
86 | + for($i = 1; $i < count($members); $i++){ |
|
87 | + $member = $member[$members[$i]]; |
|
88 | + } |
|
89 | + } |
|
90 | 90 | |
91 | 91 | $_contents = '$'. $object . '.' . $member . '.' . $params['key']; |
92 | - if(empty($params['stringFormat']) && empty($params['string'])) { |
|
93 | - $_contents = '{' . $_contents; |
|
94 | - if(!empty($displayParams['htmlescape'])){ |
|
95 | - $_contents .= '|escape:\'html\''; |
|
96 | - } |
|
97 | - if(!empty($params['htmlentitydecode'])){ |
|
98 | - $_contents .= '|escape:\'html_entity_decode\''; |
|
99 | - } |
|
100 | - if(!empty($displayParams['strip_tags'])){ |
|
101 | - $_contents .= '|strip_tags'; |
|
102 | - } |
|
103 | - if(!empty($displayParams['url2html'])){ |
|
104 | - $_contents .= '|url2html'; |
|
105 | - } |
|
106 | - if(!empty($displayParams['nl2br'])){ |
|
107 | - $_contents .= '|nl2br'; |
|
108 | - } |
|
109 | - |
|
110 | - $_contents .= '}'; |
|
92 | + if(empty($params['stringFormat']) && empty($params['string'])) { |
|
93 | + $_contents = '{' . $_contents; |
|
94 | + if(!empty($displayParams['htmlescape'])){ |
|
95 | + $_contents .= '|escape:\'html\''; |
|
96 | + } |
|
97 | + if(!empty($params['htmlentitydecode'])){ |
|
98 | + $_contents .= '|escape:\'html_entity_decode\''; |
|
99 | + } |
|
100 | + if(!empty($displayParams['strip_tags'])){ |
|
101 | + $_contents .= '|strip_tags'; |
|
102 | + } |
|
103 | + if(!empty($displayParams['url2html'])){ |
|
104 | + $_contents .= '|url2html'; |
|
105 | + } |
|
106 | + if(!empty($displayParams['nl2br'])){ |
|
107 | + $_contents .= '|nl2br'; |
|
108 | + } |
|
109 | + |
|
110 | + $_contents .= '}'; |
|
111 | 111 | } |
112 | 112 | return $_contents; |
113 | 113 | } |
@@ -27,44 +27,44 @@ |
||
27 | 27 | */ |
28 | 28 | function smarty_function_sugar_button_slider($params, &$smarty) |
29 | 29 | { |
30 | - if(empty($params['module'])) { |
|
31 | - $smarty->trigger_error("sugar_button_slider: missing required param (module)"); |
|
32 | - } else if(empty($params['buttons'])) { |
|
33 | - $smarty->trigger_error("sugar_button_slider: missing required param (buttons)"); |
|
34 | - } else if(empty($params['view'])) { |
|
35 | - $smarty->trigger_error("sugar_button_slider: missing required param (view)"); |
|
36 | - } |
|
37 | - $module = $params['module']; |
|
38 | - $view = $params['view']; |
|
39 | - $buttons = $params['buttons']; |
|
40 | - $str = ''; |
|
41 | - if(is_array($buttons)) { |
|
42 | - if(count($buttons) <= 2){ |
|
43 | - foreach($buttons as $val => $button){ |
|
44 | - $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
45 | - } |
|
46 | - }else{ |
|
47 | - $str = '<div id="buttonSlide" class="yui-module">'; |
|
48 | - $str .= '<table border="0">'; |
|
49 | - $str .='<tr><td>'; |
|
50 | - $str .='<div class="yui-hd">'; |
|
51 | - for($i = 0; $i < 2; $i++){ |
|
52 | - $button = $buttons[$i]; |
|
53 | - $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
54 | - $str .= ' '; |
|
55 | - } |
|
56 | - $str .= '</div></td>'; |
|
57 | - $str .='<td align="right"> <div class="yui-bd">'; |
|
58 | - for($i = 2; $i < count($buttons); $i++){ |
|
59 | - $button = $buttons[$i]; |
|
60 | - $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
61 | - $str .= ' '; |
|
62 | - } |
|
63 | - $str .='</div></td>'; |
|
64 | - $str .='</tr></table>'; |
|
65 | - } |
|
66 | - } |
|
67 | - return $str; |
|
30 | + if(empty($params['module'])) { |
|
31 | + $smarty->trigger_error("sugar_button_slider: missing required param (module)"); |
|
32 | + } else if(empty($params['buttons'])) { |
|
33 | + $smarty->trigger_error("sugar_button_slider: missing required param (buttons)"); |
|
34 | + } else if(empty($params['view'])) { |
|
35 | + $smarty->trigger_error("sugar_button_slider: missing required param (view)"); |
|
36 | + } |
|
37 | + $module = $params['module']; |
|
38 | + $view = $params['view']; |
|
39 | + $buttons = $params['buttons']; |
|
40 | + $str = ''; |
|
41 | + if(is_array($buttons)) { |
|
42 | + if(count($buttons) <= 2){ |
|
43 | + foreach($buttons as $val => $button){ |
|
44 | + $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
45 | + } |
|
46 | + }else{ |
|
47 | + $str = '<div id="buttonSlide" class="yui-module">'; |
|
48 | + $str .= '<table border="0">'; |
|
49 | + $str .='<tr><td>'; |
|
50 | + $str .='<div class="yui-hd">'; |
|
51 | + for($i = 0; $i < 2; $i++){ |
|
52 | + $button = $buttons[$i]; |
|
53 | + $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
54 | + $str .= ' '; |
|
55 | + } |
|
56 | + $str .= '</div></td>'; |
|
57 | + $str .='<td align="right"> <div class="yui-bd">'; |
|
58 | + for($i = 2; $i < count($buttons); $i++){ |
|
59 | + $button = $buttons[$i]; |
|
60 | + $str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty); |
|
61 | + $str .= ' '; |
|
62 | + } |
|
63 | + $str .='</div></td>'; |
|
64 | + $str .='</tr></table>'; |
|
65 | + } |
|
66 | + } |
|
67 | + return $str; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | ?> |
@@ -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 | } |