]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/plugins/function.sugar_evalcolumn_old.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / plugins / function.sugar_evalcolumn_old.php
1 <?php
2
3 /*
4
5 Modification information for LGPL compliance
6
7 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
8
9 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
10
11 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
12
13 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
14
15 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
16
17 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
18
19 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
20
21 r22745 - 2007-05-11 18:35:10 -0700 (Fri, 11 May 2007) - majed - fixes compiling issue
22
23 r22725 - 2007-05-11 16:37:35 -0700 (Fri, 11 May 2007) - clee - Added file.
24
25
26 */
27
28
29 /**
30  * Smarty plugin
31  * @package Smarty
32  * @subpackage plugins
33  */
34
35
36 /**
37  * Smarty {sugar_evalcolumn_old} function plugin
38  *
39  * Type:     function<br>
40  * Name:     sugar_evalcolumn_old<br>
41  * Purpose:  evaluate a string by substituting values in the rowData parameter. Used for ListViews<br>
42  * 
43  * @author Wayne Pan {wayne at sugarcrm.com
44  * @param array
45  * @param Smarty
46  */
47 function smarty_function_sugar_evalcolumn_old($params, &$smarty)
48 {
49     if (!isset($params['var']) || !isset($params['rowData'])) {
50         if(!isset($params['var']))  
51             $smarty->trigger_error("evalcolumn: missing 'var' parameter");
52         if(!isset($params['rowData']))  
53             $smarty->trigger_error("evalcolumn: missing 'rowData' parameter");
54         return;
55     }
56
57     if($params['var'] == '') {
58         return;
59     }
60
61     if(is_array($params['var'])) {
62         foreach($params['var'] as $key => $value) {
63             $params['var'][$key] = searchReplace($value, $params['rowData']);
64         }
65     }
66     else {
67         $params['var'] = searchReplace($params['var'], $params['rowData']);
68     }
69
70     if(isset($params['toJSON'])) {
71         $json = getJSONobj();
72         $params['var'] = $json->encode($params['var']);
73     }
74     
75     if (!empty($params['assign'])) {
76         $smarty->assign($params['assign'], $params['var']);
77     } else {
78         return $params['var'];
79     }
80 }
81
82 function searchReplace($value, &$rowData) {
83     preg_match_all('/\{\$(.*)\}/U', $value, $matches);
84
85     for($wp = 0; $wp < count($matches[0]); $wp++) {
86         if(isset($rowData[$matches[1][$wp]])) 
87             $value = str_replace($matches[0][$wp], $rowData[$matches[1][$wp]], $value);
88         else 
89             $value = str_replace($matches[0][$wp], '', $value);
90     }
91     return $value;
92 }
93
94 ?>