]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/parsers/parser.label.php
Release 6.2.0
[Github/sugarcrm.git] / modules / ModuleBuilder / parsers / parser.label.php
1 <?php
2 if (! defined ( 'sugarEntry' ) || ! sugarEntry)
3     die ( 'Not A Valid Entry Point' ) ;
4 /*********************************************************************************
5  * SugarCRM Community Edition is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39
40 require_once ('modules/ModuleBuilder/parsers/ModuleBuilderParser.php') ;
41
42 class ParserLabel extends ModuleBuilderParser
43 {
44
45     function ParserLabel ($moduleName, $packageName = '' )
46     {
47         $this->moduleName = $moduleName;
48         if (!empty($packageName))
49             $this->packageName = $packageName ;
50     }
51     
52     /**
53      * Takes in the request params from a save request and processes
54      * them for the save.
55      * @param REQUEST $params       Labels as "label_".System label => Display label pairs
56      * @param string $language      Language key, for example 'en_us'
57      */
58     function handleSave ($params , $language)
59     {
60         $labels = array ( ) ;
61         foreach ( $params as $key => $value )
62         {
63             if (preg_match ( '/^label_/', $key ) && strcmp ( $value, 'no_change' ) != 0)
64             {
65                 $labels [ strtoupper(substr ( $key, 6 )) ] = $value ;
66             }
67         }
68
69         if (!empty($this->packageName)) //we are in Module builder
70         {
71             return self::addLabels ( $language, $labels, $this->moduleName, "custom/modulebuilder/packages/{$this->packageName}/modules/{$this->moduleName}/language" ) ;
72         } else
73         {
74             return self::addLabels ( $language, $labels, $this->moduleName ) ;
75         }
76     }
77
78     /*
79      * Add a set of labels to the language pack for a module, deployed or undeployed
80      * @param string $language      Language key, for example 'en_us'
81      * @param array $labels         The labels to add in the form of an array of System label => Display label pairs
82      * @param string $moduleName    Name of the module to which to add these labels
83      * @param string $packageName   If module is undeployed, name of the package to which it belongs
84      */
85     static function addLabels ($language , $labels , $moduleName , $basepath = null, $forRelationshipLabel = false)
86     {
87
88         $GLOBALS [ 'log' ]->debug ( "ParserLabel->addLabels($language, \$labels, $moduleName, $basepath );" ) ;
89         $GLOBALS [ 'log' ]->debug ( "\$labels:" . print_r ( $labels, true ) ) ;
90         
91         $deployedModule = false ;
92         if (is_null ( $basepath ))
93         {
94             $deployedModule = true ;
95             $basepath = "custom/modules/$moduleName/language" ;
96             if($forRelationshipLabel){
97                 $basepath = "custom/modules/$moduleName/Ext/Language" ;
98             }
99             if (! is_dir ( $basepath ))
100             {
101                 mkdir_recursive($basepath);
102             }
103         }
104
105         $filename = "$basepath/$language.lang.php" ;
106         if($forRelationshipLabel){
107                 $filename = "$basepath/$language.lang.ext.php" ;
108         }
109         $dir_exists = is_dir ( $basepath ) ;
110
111         $mod_strings = array ( ) ;
112
113         if ($dir_exists)
114         {
115             if (file_exists ( $filename ))
116             {
117                 // obtain $mod_strings
118                 include ($filename) ;
119             }else if($forRelationshipLabel){
120                 $fh = fopen ($filename, 'a');
121                 fclose($fh);
122             }
123         } else
124         {
125             return false ;
126         }
127
128                 $changed = false ;
129
130         //$charset = (isset($app_strings['LBL_CHARSET'])) ? $app_strings['LBL_CHARSET'] : $GLOBALS['sugar_config']['default_charset'] ;
131
132                 foreach ( $labels as $key => $value )
133                 {
134             if (! isset ( $mod_strings [ $key ] ) || strcmp ( $value, $mod_strings [ $key ] ) != 0)
135                     {
136                 $mod_strings [$key] = html_entity_decode_utf8($value, ENT_QUOTES ); // must match encoding used in view.labels.php
137                         $changed = true ;
138                     }
139                 }
140
141                 if ($changed)
142                 {
143             $GLOBALS [ 'log' ]->debug ( "ParserLabel->addLabels: writing new mod_strings to $filename" ) ;
144                     $GLOBALS [ 'log' ]->debug ( "ParserLabel->addLabels: mod_strings=".print_r($mod_strings,true) ) ;            
145             if (! write_array_to_file ( "mod_strings", $mod_strings, $filename ))
146                     {
147                 $GLOBALS [ 'log' ]->fatal ( "Could not write $filename" ) ;
148                     } else
149                     {
150                         // if we have a cache to worry about, then clear it now
151                 if ($deployedModule)
152                         {
153                             $GLOBALS [ 'log' ]->debug ( "PaserLabel->addLabels: clearing language cache" ) ;
154                             $cache_key = "module_language." . $language . $moduleName ;
155                             sugar_cache_clear ( $cache_key ) ;
156                             LanguageManager::clearLanguageCache ( $moduleName, $language ) ;
157                         }
158                     }
159                 }
160
161         return true ;
162     }
163     
164     /**
165      * Takes in the request params from a save request and processes
166      * them for the save.
167      * @param $metadata 
168      * @param string $language      Language key, for example 'en_us'
169      */
170     function handleSaveRelationshipLabels ($metadata , $language)
171         {
172         foreach ( $metadata as $definition )
173             {
174                 $labels = array();
175                 $labels[$definition [ 'system_label' ]] = $definition [ 'display_label' ];
176                 self::addLabels ( $language, $labels, $definition [ 'module' ],null,true );
177             }
178         }
179
180     function addLabelsToAllLanguages($labels)
181             {
182         $langs = get_languages();
183         foreach($langs as $lang_key => $lang_display)
184         {
185                 $this->addLabels($lang_key, $labels, $this->moduleName);
186         }
187     }
188 }
189
190 ?>