]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DynamicFields/templates/Fields/TemplateDatetimecombo.php
Release 6.1.4
[Github/sugarcrm.git] / modules / DynamicFields / templates / Fields / TemplateDatetimecombo.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 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 class TemplateDatetimecombo extends TemplateText{
40         var $type = 'datetimecombo';
41         var $len = '';
42         var $dateStrings = array(
43                 '-none-' => '',
44         'today'=>'now',
45         'yesterday'=> '-1 day',
46         'tomorrow'=>'+1 day',
47         'next week'=> '+1 week',
48         'next monday'=>'next monday',
49         'next friday'=>'next friday',
50         'two weeks'=> '+2 weeks',
51         'next month'=> '+1 month',
52         'first day of next month'=> 'first of next month', // must handle this non-GNU date string in SugarBean->populateDefaultValues; if we don't this will evaluate to 1969...
53         'three months'=> '+3 months',  //kbrill Bug #17023
54         'six months'=> '+6 months',
55         'next year'=> '+1 year',
56     );
57     
58     var $hoursStrings = array(
59         '' => '',
60         '01' => '01',   
61         '02' => '02',
62         '03' => '03',
63         '04' => '04',
64         '05' => '05',
65         '06' => '06',
66         '07' => '07',
67         '08' => '08',
68         '09' => '09',
69         '10' => '10',
70         '11' => '11',
71         '12' => '12',
72     );
73     
74     var $hoursStrings24 = array(
75         '' => '',
76         '00' => '00',
77         '01' => '01',   
78         '02' => '02',
79         '03' => '03',
80         '04' => '04',
81         '05' => '05',
82         '06' => '06',
83         '07' => '07',
84         '08' => '08',
85         '09' => '09',
86         '10' => '10',
87         '11' => '11',
88         '12' => '12',
89         '13' => '13',   
90         '14' => '14',
91         '15' => '15',
92         '16' => '16',
93         '17' => '17',
94         '18' => '18',
95         '19' => '19',
96         '20' => '20',
97         '21' => '21',
98         '22' => '22',
99         '23' => '23',
100     );    
101     
102     var $minutesStrings = array(
103         '' => '',
104         '00' => '00',   
105         '15' => '15',
106         '30' => '30',
107         '45' => '45',
108     );
109     
110     var $meridiemStrings = array(
111         '' => '',
112         'am' => 'am',
113         'pm' => 'pm',
114     );
115     
116         function get_db_type(){
117             if($GLOBALS['db']->dbType == 'oracle'){
118                 return " DATE ";
119             } else {
120                 return " DATETIME ";
121             }
122         }
123         
124         function get_db_default($modify=false){
125                         return '';
126         }
127
128         function get_field_def(){
129                 $def = parent::get_field_def();
130                 if($GLOBALS['db']->dbType == 'oracle'){
131                 $def['dbType'] = 'date';
132             } else {
133                 $def['dbType'] = 'datetime';
134             }
135             if(!empty($def['default'])){
136                         $def['display_default'] = $def['default'];
137                         $def['default'] = '';
138                 }
139                 return $def;
140         }
141         
142         function save($df){
143         parent::save($df);
144     } 
145     
146     function populateFromPost(){
147         if(!empty($_REQUEST['defaultDate']) && !empty($_REQUEST['defaultTime'])){
148                 $_REQUEST['default'] = $_REQUEST['defaultDate'].'&'.$_REQUEST['defaultTime'];
149                 
150                 $defaultTime = $_REQUEST['defaultTime'];
151                         $hours = substr($defaultTime, 0, 2); 
152                         $minutes = substr($defaultTime, 3, 2);
153                         $meridiem = substr($defaultTime, 5, 2);
154                 if(empty($meridiem)) {
155                       if($hours == '00') {
156                          $hours = 12;
157                          $meridiem = 'am';
158                       } else if($hours > 12) {
159                          $hours -= 12;
160                          $meridiem = 'pm';
161                       } else {
162                          $meridiem = 'am';
163                       }
164                       $_REQUEST['default'] = $_REQUEST['defaultDate'].'&'.$hours.':'.$minutes.''.$meridiem;
165                 }
166         }else{
167                 $_REQUEST['default'] = '';
168         }
169         unset($_REQUEST['defaultDate']);
170         unset($_REQUEST['defaultTime']);
171                 foreach($this->vardef_map as $vardef=>$field){
172                         if(isset($_REQUEST[$vardef])){
173                                 $this->$vardef = $_REQUEST[$vardef];
174                                 if($vardef != $field){
175                                         $this->$field = $this->$vardef;
176                                 }
177                         }
178                 }
179                 $GLOBALS['log']->debug('populate: '.print_r($this,true));
180         }
181         
182 }
183 ?>