]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/EmailTemplates/EmailTemplate.php
Release 6.5.0
[Github/sugarcrm.git] / modules / EmailTemplates / EmailTemplate.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:  TODO: To be written.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46
47
48
49
50
51 // EmailTemplate is used to store email email_template information.
52 class EmailTemplate extends SugarBean {
53         var $field_name_map = array();
54         // Stored fields
55         var $id;
56         var $date_entered;
57         var $date_modified;
58         var $modified_user_id;
59         var $created_by;
60         var $created_by_name;
61         var $modified_by_name;
62     var $assigned_user_id;
63     var $assigned_user_name;
64         var $name;
65         var $published;
66         var $description;
67         var $body;
68         var $body_html;
69     var $subject;
70         var $attachments;
71         var $from_name;
72         var $from_address;
73         var $table_name = "email_templates";
74         var $object_name = "EmailTemplate";
75         var $module_dir = "EmailTemplates";
76         var $new_schema = true;
77         // This is used to retrieve related fields from form posts.
78         var $additional_column_fields = array(
79         );
80         // add fields here that would not make sense in an email template
81         var $badFields = array(
82                 'account_description',
83                 'contact_id',
84                 'lead_id',
85                 'opportunity_amount',
86                 'opportunity_id',
87                 'opportunity_name',
88                 'opportunity_role_id',
89                 'opportunity_role_fields',
90                 'opportunity_role',
91                 'campaign_id',
92                 // User objects
93                 'id',
94                 'date_entered',
95                 'date_modified',
96                 'user_preferences',
97                 'accept_status',
98                 'user_hash',
99                 'authenticate_id',
100                 'sugar_login',
101                 'reports_to_id',
102                 'reports_to_name',
103                 'is_admin',
104                 'receive_notifications',
105                 'modified_user_id',
106                 'modified_by_name',
107                 'created_by',
108                 'created_by_name',
109                 'accept_status_id',
110                 'accept_status_name',
111         );
112
113         function EmailTemplate() {
114                 parent::SugarBean();
115         }
116
117         /**
118          * Generates the extended field_defs for creating macros
119          * @param object $bean SugarBean
120          * @param string $prefix "contact_", "user_" etc.
121          * @return
122          */
123         function generateFieldDefsJS() {
124                 global $current_user;
125
126
127
128
129
130                 $contact = new Contact();
131                 $account = new Account();
132                 $lead = new Lead();
133                 $prospect = new Prospect();
134
135
136                 $loopControl = array(
137                         'Contacts' => array(
138                             'Contacts' => $contact,
139                             'Leads' => $lead,
140                                 'Prospects' => $prospect,
141                         ),
142                         'Accounts' => array(
143                                 'Accounts' => $account,
144                         ),
145                         'Users' => array(
146                                 'Users' => $current_user,
147                         ),
148                 );
149
150                 $prefixes = array(
151                         'Contacts' => 'contact_',
152                         'Accounts' => 'account_',
153                         'Users' => 'contact_user_',
154                 );
155
156                 $collection = array();
157                 foreach($loopControl as $collectionKey => $beans) {
158                         $collection[$collectionKey] = array();
159                         foreach($beans as $beankey => $bean) {
160
161                                 foreach($bean->field_defs as $key => $field_def) {
162                                     if( ($field_def['type'] == 'relate' && empty($field_def['custom_type'])) ||
163                                                 ($field_def['type'] == 'assigned_user_name' || $field_def['type'] =='link') ||
164                                                 ($field_def['type'] == 'bool') ||
165                                                 (in_array($field_def['name'], $this->badFields)) ) {
166                                         continue;
167                                     }
168                                     if(!isset($field_def['vname'])) {
169                                         //echo $key;
170                                     }
171                                     // valid def found, process
172                                     $optionKey = strtolower("{$prefixes[$collectionKey]}{$key}");
173                                     $optionLabel = preg_replace('/:$/', "", translate($field_def['vname'], $beankey));
174                                     $dup=1;
175                                     foreach ($collection[$collectionKey] as $value){
176                                         if($value['name']==$optionKey){
177                                                 $dup=0;
178                                                 break;
179                                         }
180                                     }
181                                     if($dup)
182                                         $collection[$collectionKey][] = array("name" => $optionKey, "value" => $optionLabel);
183                                 }
184                         }
185                 }
186
187                 $json = getJSONobj();
188                 $ret = "var field_defs = ";
189                 $ret .= $json->encode($collection, false);
190                 $ret .= ";";
191                 return $ret;
192         }
193
194         function get_summary_text() {
195                 return "$this->name";
196         }
197
198         function create_export_query(&$order_by, &$where) {
199                 return $this->create_new_list_query($order_by, $where);
200         }
201
202         function fill_in_additional_list_fields() {
203                 $this->fill_in_additional_parent_fields();
204         }
205
206         function fill_in_additional_detail_fields() {
207             if (empty($this->body) && !empty($this->body_html))
208         {
209             global $sugar_config;
210             $this->body = strip_tags(html_entity_decode($this->body_html, ENT_COMPAT, $sugar_config['default_charset']));
211         }
212                 $this->created_by_name = get_assigned_user_name($this->created_by);
213                 $this->modified_by_name = get_assigned_user_name($this->modified_user_id);
214         $this->assigned_user_name = get_assigned_user_name($this->assigned_user_id);
215                 $this->fill_in_additional_parent_fields();
216         }
217
218         function fill_in_additional_parent_fields() {
219         }
220
221         function get_list_view_data() {
222                 global $app_list_strings, $focus, $action, $currentModule;
223                 $fields = $this->get_list_view_array();
224                 $fields["DATE_MODIFIED"] = substr($fields["DATE_MODIFIED"], 0 , 10);
225                 return $fields;
226         }
227
228         //function all string that match the pattern {.} , also catches the list of found strings.
229         //the cache will get refreshed when the template bean instance changes.
230         //The found url key patterns are replaced with name value pairs provided as function parameter. $tracked_urls.
231         //$url_template is used to construct the url for the email message. the template should have place holder for 1 variable parameter, represented by %1
232         //$template_text_array is a list of text strings that need to be searched. usually the subject, html body and text body of the email message.
233         //$removeme_url_template, if the url has is_optout property checked then use this template.
234         function parse_tracker_urls($template_text_array,$url_template,$tracked_urls,$removeme_url_template) {
235                 global $beanFiles,$beanList, $app_list_strings,$sugar_config;
236                 if (!isset($this->parsed_urls))
237                         $this->parsed_urls=array();
238
239                 //parse the template and find all the dynamic strings that need replacement.
240                 $pattern = '/\{*[^\{\}]*\}/'; // cn: bug 6638, find multibyte strings
241                 foreach ($template_text_array as $key=>$template_text) {
242                         if (!empty($template_text)) {
243                 if(!isset($this->parsed_urls[$key]) || $this->parsed_urls[$key]['text'] != $template_text) {
244                     // Fix for bug52014.
245                     $template_text = urldecode($template_text);
246
247                                         $matches=array();
248                                         $count=preg_match_all($pattern,$template_text,$matches,PREG_OFFSET_CAPTURE);
249                                         $this->parsed_urls[$key]=array('matches' => $matches, 'text' => $template_text);
250                                 } else {
251                                         $matches=$this->parsed_urls[$key]['matches'];
252                                         if(!empty($matches[0])) {
253                                                 $count=count($matches[0]);
254                                         } else {
255                                                 $count=0;
256                                         }
257                                 }
258
259                                 //navigate thru all the matched keys and replace the keys with actual strings.
260                                 for ($i=($count -1); $i>=0; $i--) {
261                                         $url_key_name=$matches[0][$i][0];
262
263                                         if (!empty($tracked_urls[$url_key_name])) {
264                                                 if ($tracked_urls[$url_key_name]['is_optout']==1){
265                                                         $tracker_url = $removeme_url_template;
266                                                 } else {
267                                                         $tracker_url = sprintf($url_template,$tracked_urls[$url_key_name]['id']);
268                                                 }
269                                         }
270                                         if(!empty($tracker_url) && !empty($template_text) && !empty($matches[0][$i][0]) && !empty($tracked_urls[$matches[0][$i][0]])){
271                         $template_text=substr_replace($template_text,$tracker_url,$matches[0][$i][1], strlen($matches[0][$i][0]));
272                         $template_text=str_replace($sugar_config['site_url'].'/'.$sugar_config['site_url'],$sugar_config['site_url'],$template_text);
273                     }
274                                 }
275                         }
276                         $return_array[$key]=$template_text;
277                 }
278
279                 return $return_array;
280         }
281
282         function parse_email_template($template_text_array, $focus_name, $focus, &$macro_nv) {
283
284
285                 global $beanFiles, $beanList, $app_list_strings;
286
287                 // generate User instance that owns this "Contact" for contact_user_* macros
288                 $user = new User();
289         if(isset($focus->assigned_user_id)  && !empty($focus->assigned_user_id)){
290                   $user->retrieve($focus->assigned_user_id);
291         }
292
293                 if(!isset($this->parsed_entities))
294                         $this->parsed_entities=array();
295
296                 //parse the template and find all the dynamic strings that need replacement.
297         // Bug #48111 It's strange why prefix for User module is contact_user (see self::generateFieldDefsJS method)
298         if ($beanList[$focus_name] == 'User')
299         {
300             $pattern_prefix = '$contact_user_';
301         }
302         else
303         {
304             $pattern_prefix = '$'.strtolower($beanList[$focus_name]).'_';
305         }
306                 $pattern_prefix_length = strlen($pattern_prefix);
307                 $pattern = '/\\'.$pattern_prefix.'[A-Za-z_0-9]*/';
308
309                 foreach($template_text_array as $key=>$template_text) {
310                         if(!isset($this->parsed_entities[$key])) {
311                                 $matches = array();
312                                 $count = preg_match_all($pattern, $template_text, $matches, PREG_OFFSET_CAPTURE);
313
314                                 if($count != 0) {
315                                         for($i=($count -1); $i>=0; $i--) {
316                                                 if(!isset($matches[0][$i][2])) {
317                                                         //find the field name in the bean.
318                                                         $matches[0][$i][2]=substr($matches[0][$i][0],$pattern_prefix_length,strlen($matches[0][$i][0]) - $pattern_prefix_length);
319
320                                                         //store the localized strings if the field is of type enum..
321                                                         if(isset($focus->field_defs[$matches[0][$i][2]]) && $focus->field_defs[$matches[0][$i][2]]['type']=='enum' && isset($focus->field_defs[$matches[0][$i][2]]['options'])) {
322                                                                 $matches[0][$i][3]=$focus->field_defs[$matches[0][$i][2]]['options'];
323                                                         }
324                                                 }
325                                         }
326                                 }
327                                 $this->parsed_entities[$key]=$matches;
328                         } else {
329                                 $matches=$this->parsed_entities[$key];
330                                 if(!empty($matches[0])) {
331                                         $count=count($matches[0]);
332                                 } else {
333                                         $count=0;
334                                 }
335                         }
336
337                         for ($i=($count -1); $i>=0; $i--) {
338                                 $field_name=$matches[0][$i][2];
339
340                                 // cn: feel for User object attribute key and assign as found
341                                 if(strpos($field_name, "user_") === 0) {
342                                         $userFieldName = substr($field_name, 5);
343                                         $value = $user->$userFieldName;
344                                         //_pp($userFieldName."[{$value}]");
345                                 } else {
346                                         $value = $focus->{$field_name};
347                                 }
348
349                                 //check dom
350                                 if(isset($matches[0][$i][3])) {
351                                         if(isset($app_list_strings[$matches[0][$i][3]][$value])) {
352                                                 $value=$app_list_strings[$matches[0][$i][3]][$value];
353                                         }
354                                 }
355
356                 //generate name value pair array of macros and corresponding values for the targed.
357                 $macro_nv[$matches[0][$i][0]] =$value;
358
359                                 $template_text=substr_replace($template_text,$value,$matches[0][$i][1], strlen($matches[0][$i][0]));
360                         }
361
362                         //parse the template for tracker url strings. patter for these strings in {[a-zA-Z_0-9]+}
363
364                         $return_array[$key]=$template_text;
365                 }
366
367                 return $return_array;
368         }
369
370     /**
371      * Convenience method to convert raw value into appropriate type format
372      * @param string $type
373      * @param string $value
374      * @return string
375      */
376     function _convertToType($type,$value) {
377         switch($type) {
378             case 'currency' : return currency_format_number($value);
379             default: return $value;
380         }
381     }
382
383         /**
384          * Convenience method to parse for user's values in a template
385          * @param array $repl_arr
386          * @param object $user
387          * @return array
388          */
389         function _parseUserValues($repl_arr, &$user) {
390                 foreach($user->field_defs as $field_def) {
391                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
392                         continue;
393                         }
394
395                         if($field_def['type'] == 'enum') {
396                                 $translated = translate($field_def['options'], 'Users', $user->$field_def['name']);
397
398                                 if(isset($translated) && ! is_array($translated)) {
399                                         $repl_arr["contact_user_".$field_def['name']] = $translated;
400                                 } else { // unset enum field, make sure we have a match string to replace with ""
401                                         $repl_arr["contact_user_".$field_def['name']] = '';
402                                 }
403                         } else {
404                                 if(isset($user->$field_def['name'])) {
405                     // bug 47647 - allow for fields to translate before adding to template
406                                         $repl_arr["contact_user_".$field_def['name']] = self::_convertToType($field_def['type'],$user->$field_def['name']);
407                                 } else {
408                                         $repl_arr["contact_user_".$field_def['name']] = "";
409                                 }
410                         }
411                 }
412
413                 return $repl_arr;
414         }
415
416
417         function parse_template_bean($string, $bean_name, &$focus) {
418                 global $current_user;
419                 global $beanFiles, $beanList;
420                 $repl_arr = array();
421
422                 // cn: bug 9277 - create a replace array with empty strings to blank-out invalid vars
423                 $acct = new Account();
424                 $contact = new Contact();
425                 $lead = new Lead();
426                 $prospect = new Prospect();
427
428                 foreach($lead->field_defs as $field_def) {
429                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
430                         continue;
431                         }
432                         $repl_arr["contact_".$field_def['name']] = '';
433                         $repl_arr["contact_account_".$field_def['name']] = '';
434                 }
435                 foreach($prospect->field_defs as $field_def) {
436                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
437                         continue;
438                         }
439                         $repl_arr["contact_".$field_def['name']] = '';
440                         $repl_arr["contact_account_".$field_def['name']] = '';
441                 }
442                 foreach($contact->field_defs as $field_def) {
443                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
444                         continue;
445                         }
446                         $repl_arr["contact_".$field_def['name']] = '';
447                         $repl_arr["contact_account_".$field_def['name']] = '';
448                 }
449                 foreach($acct->field_defs as $field_def) {
450                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
451                         continue;
452                         }
453                         $repl_arr["account_".$field_def['name']] = '';
454                         $repl_arr["account_contact_".$field_def['name']] = '';
455                 }
456                 // cn: end bug 9277 fix
457
458
459                 // feel for Parent account, only for Contacts traditionally, but written for future expansion
460                 if(isset($focus->account_id) && !empty($focus->account_id)) {
461                         $acct->retrieve($focus->account_id);
462                 }
463
464                 if($bean_name == 'Contacts') {
465                         // cn: bug 9277 - email templates not loading account/opp info for templates
466                         if(!empty($acct->id)) {
467                                 foreach($acct->field_defs as $field_def) {
468                                         if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
469                                 continue;
470                                         }
471
472                                         if($field_def['type'] == 'enum') {
473                                                 $translated = translate($field_def['options'], 'Accounts' ,$acct->$field_def['name']);
474
475                                                 if(isset($translated) && ! is_array($translated)) {
476                                                         $repl_arr["account_".$field_def['name']] = $translated;
477                                                         $repl_arr["contact_account_".$field_def['name']] = $translated;
478                                                 } else { // unset enum field, make sure we have a match string to replace with ""
479                                                         $repl_arr["account_".$field_def['name']] = '';
480                                                         $repl_arr["contact_account_".$field_def['name']] = '';
481                                                 }
482                                         } else {
483                         // bug 47647 - allow for fields to translate before adding to template
484                         $translated = self::_convertToType($field_def['type'],$acct->$field_def['name']);
485                                                 $repl_arr["account_".$field_def['name']] = $translated;
486                                                 $repl_arr["contact_account_".$field_def['name']] = $translated;
487                                         }
488                                 }
489                         }
490
491                         if(!empty($focus->assigned_user_id)) {
492                                 $user = new User();
493                                 $user->retrieve($focus->assigned_user_id);
494                                 $repl_arr = EmailTemplate::_parseUserValues($repl_arr, $user);
495                         }
496                 } elseif($bean_name == 'Users') {
497                         /**
498                          * This section of code will on do work when a blank Contact, Lead,
499                          * etc. is passed in to parse the contact_* vars.  At this point,
500                          * $current_user will be used to fill in the blanks.
501                          */
502                         $repl_arr = EmailTemplate::_parseUserValues($repl_arr, $current_user);
503                 } else {
504                         // assumed we have an Account in focus
505                         foreach($contact->field_defs as $field_def) {
506                                 if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name' || $field_def['type'] == 'link') {
507                         continue;
508                                 }
509
510                                 if($field_def['type'] == 'enum') {
511                                         $translated = translate($field_def['options'], 'Accounts' ,$contact->$field_def['name']);
512
513                                         if(isset($translated) && ! is_array($translated)) {
514                                                 $repl_arr["contact_".$field_def['name']] = $translated;
515                                                 $repl_arr["contact_account_".$field_def['name']] = $translated;
516                                         } else { // unset enum field, make sure we have a match string to replace with ""
517                                                 $repl_arr["contact_".$field_def['name']] = '';
518                                                 $repl_arr["contact_account_".$field_def['name']] = '';
519                                         }
520                                 } else {
521                                         if (isset($contact->$field_def['name'])) {
522                         // bug 47647 - allow for fields to translate before adding to template
523                         $translated = self::_convertToType($field_def['type'],$contact->$field_def['name']);
524                                                 $repl_arr["contact_".$field_def['name']] = $translated;
525                                                 $repl_arr["contact_account_".$field_def['name']] = $translated;
526                                         } // if
527                                 }
528                         }
529                 }
530
531                 ///////////////////////////////////////////////////////////////////////
532                 ////    LOAD FOCUS DATA INTO REPL_ARR
533                 foreach($focus->field_defs as $field_def) {
534                         if(isset($focus->$field_def['name'])) {
535                                 if(($field_def['type'] == 'relate' && empty($field_def['custom_type'])) || $field_def['type'] == 'assigned_user_name') {
536                         continue;
537                                 }
538
539                                 if($field_def['type'] == 'enum' && isset($field_def['options'])) {
540                                         $translated = translate($field_def['options'],$bean_name,$focus->$field_def['name']);
541
542                                         if(isset($translated) && ! is_array($translated)) {
543                                                 $repl_arr[strtolower($beanList[$bean_name])."_".$field_def['name']] = $translated;
544                                         } else { // unset enum field, make sure we have a match string to replace with ""
545                                                 $repl_arr[strtolower($beanList[$bean_name])."_".$field_def['name']] = '';
546                                         }
547                                 } else {
548                     // bug 47647 - translate currencies to appropriate values
549                                         $repl_arr[strtolower($beanList[$bean_name])."_".$field_def['name']] = self::_convertToType($field_def['type'],$focus->$field_def['name']);
550                                 }
551                         } else {
552                                 if($field_def['name'] == 'full_name') {
553                                         $repl_arr[strtolower($beanList[$bean_name]).'_full_name'] = $focus->get_summary_text();
554                                 } else {
555                                         $repl_arr[strtolower($beanList[$bean_name])."_".$field_def['name']] = '';
556                                 }
557                         }
558                 } // end foreach()
559
560                 krsort($repl_arr);
561                 reset($repl_arr);
562                 //20595 add nl2br() to respect the multi-lines formatting
563                 if(isset($repl_arr['contact_primary_address_street'])){
564                     $repl_arr['contact_primary_address_street'] = nl2br($repl_arr['contact_primary_address_street']);
565                 }
566                 if(isset($repl_arr['contact_alt_address_street'])){
567                     $repl_arr['contact_alt_address_street'] = nl2br($repl_arr['contact_alt_address_street']);
568                 }
569
570                 foreach ($repl_arr as $name=>$value) {
571                         if($value != '' && is_string($value)) {
572                                 $string = str_replace("\$$name", $value, $string);
573                         } else {
574                                 $string = str_replace("\$$name", ' ', $string);
575                         }
576                 }
577
578                 return $string;
579         }
580
581         function parse_template($string, &$bean_arr) {
582                 global $beanFiles, $beanList;
583
584                 foreach($bean_arr as $bean_name => $bean_id) {
585                         require_once($beanFiles[$beanList[$bean_name]]);
586
587                         $focus = new $beanList[$bean_name];
588                         $result = $focus->retrieve($bean_id);
589
590                         if($bean_name == 'Leads' || $bean_name == 'Prospects') {
591                                 $bean_name = 'Contacts';
592                         }
593
594                         if(isset($this) && isset($this->module_dir) && $this->module_dir == 'EmailTemplates') {
595                                 $string = $this->parse_template_bean($string, $bean_name, $focus);
596                         } else {
597                                 $string = EmailTemplate::parse_template_bean($string, $bean_name, $focus);
598                         }
599                 }
600                 return $string;
601         }
602
603         function bean_implements($interface) {
604                 switch($interface) {
605                         case 'ACL':return true;
606                 }
607                 return false;
608         }
609
610     static function getTypeOptionsForSearch(){
611         $template = new EmailTemplate();
612         $optionKey = $template->field_defs['type']['options'];
613         $options = $GLOBALS['app_list_strings'][$optionKey];
614         if( ! is_admin($GLOBALS['current_user']) && isset($options['workflow']))
615             unset($options['workflow']);
616
617         return $options;
618     }
619
620         function is_used_by_email_marketing() {
621                 $query = "select id from email_marketing where template_id='$this->id' and deleted=0";
622                 $result = $this->db->query($query);
623                 if($this->db->fetchByAssoc($result)) {
624                         return true;
625                 }
626                 return false;
627         }
628 }
629 ?>