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