2002-05-13 23:30:46 +02:00
|
|
|
<?php
|
2006-04-20 19:12:30 +02:00
|
|
|
/**
|
|
|
|
* eGroupWare eTemplate Extension - Date Widget
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2005-02-09 11:15:49 +01:00
|
|
|
/**
|
|
|
|
* eTemplate extension to input or display date and/or time values
|
|
|
|
*
|
2005-12-06 08:11:14 +01:00
|
|
|
* Contains the following widgets: Date, Date+Time, Time, Hour, Duration
|
2005-02-09 11:15:49 +01:00
|
|
|
*
|
|
|
|
* Supported attributes: format[,options]
|
|
|
|
* format: ''=timestamp, or eg. 'Y-m-d H:i' for 2002-12-31 23:59
|
|
|
|
* options: &1 = year is int-input not selectbox, &2 = show a [Today] button, (html-UI always uses jscal and dont care for &1+&2)
|
|
|
|
* &4 = 1min steps for time (default is 5min, with fallback to 1min if value is not in 5min-steps),
|
|
|
|
* &8 = dont show time for readonly and type date-time if time is 0:00,
|
|
|
|
* &16 = prefix r/o display with dow
|
2007-03-09 12:23:26 +01:00
|
|
|
* &32 = prefix r/o display with week-number
|
2005-02-09 11:15:49 +01:00
|
|
|
*
|
|
|
|
* This widget is independent of the UI as it only uses etemplate-widgets and has therefor no render-function.
|
|
|
|
* Uses the adodb datelibary to overcome the windows-limitation to not allow dates before 1970
|
|
|
|
*
|
|
|
|
* @package etemplate
|
2005-02-22 23:11:00 +01:00
|
|
|
* @subpackage extensions
|
2005-02-09 11:15:49 +01:00
|
|
|
* @author RalfBecker-AT-outdoor-training.de
|
|
|
|
* @license GPL
|
|
|
|
*/
|
2002-05-13 23:30:46 +02:00
|
|
|
class date_widget
|
|
|
|
{
|
2005-02-22 23:11:00 +01:00
|
|
|
/**
|
|
|
|
* exported methods of this class
|
|
|
|
* @var array
|
|
|
|
*/
|
2002-05-13 23:30:46 +02:00
|
|
|
var $public_functions = array(
|
|
|
|
'pre_process' => True,
|
|
|
|
'post_process' => True
|
|
|
|
);
|
2005-02-22 23:11:00 +01:00
|
|
|
/**
|
|
|
|
* availible extensions and there names for the editor
|
|
|
|
* @var array
|
|
|
|
*/
|
2003-04-13 21:14:50 +02:00
|
|
|
var $human_name = array(
|
|
|
|
'date' => 'Date', // just a date, no time
|
|
|
|
'date-time' => 'Date+Time', // date + time
|
2004-10-07 23:58:33 +02:00
|
|
|
'date-timeonly' => 'Time', // time
|
|
|
|
'date-houronly' => 'Hour', // hour
|
2005-06-03 00:43:44 +02:00
|
|
|
'date-duration' => 'Duration', // duration
|
2003-04-13 21:14:50 +02:00
|
|
|
);
|
2005-02-09 11:15:49 +01:00
|
|
|
var $dateformat; // eg. Y-m-d, d-M-Y
|
|
|
|
var $timeformat; // 12 or 24
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2005-02-22 23:11:00 +01:00
|
|
|
/**
|
|
|
|
* Constructor of the extension
|
|
|
|
*
|
|
|
|
* @param string $ui '' for html
|
|
|
|
*/
|
2002-10-06 02:15:14 +02:00
|
|
|
function date_widget($ui)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-08-19 01:15:59 +02:00
|
|
|
if ($ui == 'html')
|
|
|
|
{
|
2005-11-09 21:50:45 +01:00
|
|
|
if (!is_object($GLOBALS['egw']->jscalendar))
|
2004-10-07 23:58:33 +02:00
|
|
|
{
|
2005-11-09 21:50:45 +01:00
|
|
|
$GLOBALS['egw']->jscalendar =& CreateObject('phpgwapi.jscalendar');
|
2004-10-07 23:58:33 +02:00
|
|
|
}
|
2005-11-09 21:50:45 +01:00
|
|
|
$this->jscal =& $GLOBALS['egw']->jscalendar;
|
2003-08-19 01:15:59 +02:00
|
|
|
}
|
2005-11-09 21:50:45 +01:00
|
|
|
$this->timeformat = $GLOBALS['egw_info']['user']['preferences']['common']['timeformat'];
|
|
|
|
$this->dateformat = $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'];
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
|
|
|
|
2005-02-22 23:11:00 +01:00
|
|
|
/**
|
|
|
|
* pre-processing of the extension
|
|
|
|
*
|
|
|
|
* This function is called before the extension gets rendered
|
|
|
|
*
|
|
|
|
* @param string $name form-name of the control
|
|
|
|
* @param mixed &$value value / existing content, can be modified
|
|
|
|
* @param array &$cell array with the widget, can be modified for ui-independent widgets
|
|
|
|
* @param array &$readonlys names of widgets as key, to be made readonly
|
|
|
|
* @param mixed &$extension_data data the extension can store persisten between pre- and post-process
|
|
|
|
* @param object &$tmpl reference to the template we belong too
|
|
|
|
* @return boolean true if extra label is allowed, false otherwise
|
|
|
|
*/
|
2002-10-01 20:26:30 +02:00
|
|
|
function pre_process($name,&$value,&$cell,&$readonlys,&$extension_data,&$tmpl)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-04-13 21:14:50 +02:00
|
|
|
$type = $cell['type'];
|
2005-06-03 00:43:44 +02:00
|
|
|
if ($type == 'date-duration')
|
|
|
|
{
|
|
|
|
return $this->pre_process_duration($name,$value,$cell,$readonlys,$extension_data,$tmpl);
|
|
|
|
}
|
|
|
|
list($data_format,$options,$options2) = explode(',',$cell['size']);
|
2004-10-07 23:58:33 +02:00
|
|
|
if ($type == 'date-houronly' && empty($data_format)) $data_format = 'H';
|
2006-08-12 08:14:28 +02:00
|
|
|
|
|
|
|
$readonly = $cell['readonly'] || $readonlys;
|
|
|
|
|
|
|
|
if (!$readonly) // dont set extension-data on readonly, it's not needed and can conflict with other widgets
|
|
|
|
{
|
|
|
|
$extension_data = array(
|
|
|
|
'type' => $type,
|
|
|
|
'data_format' => $data_format,
|
|
|
|
);
|
|
|
|
}
|
2002-10-06 02:15:14 +02:00
|
|
|
if (!$value)
|
|
|
|
{
|
|
|
|
$value = array(
|
|
|
|
'Y' => '',
|
|
|
|
'm' => '',
|
2003-04-13 21:14:50 +02:00
|
|
|
'd' => '',
|
|
|
|
'H' => '',
|
2006-06-22 18:14:08 +02:00
|
|
|
'i' => '',
|
2002-10-06 02:15:14 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
elseif ($data_format != '')
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-04-13 21:14:50 +02:00
|
|
|
$date = split('[- /.:,]',$value);
|
|
|
|
//echo "date=<pre>"; print_r($date); echo "</pre>";
|
|
|
|
$mdy = split('[- /.:,]',$data_format);
|
|
|
|
$value = array();
|
|
|
|
foreach ($date as $n => $dat)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
|
|
|
switch($mdy[$n])
|
|
|
|
{
|
2007-01-14 04:14:11 +01:00
|
|
|
case 'Y': $value['Y'] = (int) $dat; break;
|
|
|
|
case 'm': $value['m'] = (int) $dat; break;
|
|
|
|
case 'd': $value['d'] = (int) $dat; break;
|
|
|
|
case 'H': $value['H'] = (int) $dat; break;
|
|
|
|
case 'i': $value['i'] = (int) $dat; break;
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-04-10 23:25:42 +02:00
|
|
|
// for the timeformats we use only seconds, no timezone conversation between server-time and UTC
|
|
|
|
if (substr($type,-4) == 'only') $value -= adodb_date('Z',0);
|
|
|
|
|
2002-10-06 02:15:14 +02:00
|
|
|
$value = array(
|
2007-01-14 04:14:11 +01:00
|
|
|
'Y' => (int) adodb_date('Y',$value),
|
|
|
|
'm' => (int) adodb_date('m',$value),
|
|
|
|
'd' => (int) adodb_date('d',$value),
|
|
|
|
'H' => (int) adodb_date('H',$value),
|
|
|
|
'i' => (int) adodb_date('i',$value)
|
2002-10-06 02:15:14 +02:00
|
|
|
);
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2004-08-28 19:57:44 +02:00
|
|
|
$time_0h0 = !(int)$value['H'] && !(int)$value['i'];
|
|
|
|
|
2003-04-13 21:14:50 +02:00
|
|
|
$timeformat = array(3 => 'H', 4 => 'i');
|
2006-06-22 18:14:08 +02:00
|
|
|
if ($this->timeformat == '12' && $readonly && $value['H'] !== '')
|
2003-04-13 21:14:50 +02:00
|
|
|
{
|
|
|
|
$value['a'] = $value['H'] < 12 ? 'am' : 'pm';
|
2006-06-22 18:14:08 +02:00
|
|
|
$value['H'] = $value['H'] % 12 ? $value['H'] % 12 : 12; // no leading 0 and 0h => 12am
|
2003-04-13 21:14:50 +02:00
|
|
|
$timeformat += array(5 => 'a');
|
|
|
|
}
|
2005-02-09 11:15:49 +01:00
|
|
|
$format = split('[/.-]',$this->dateformat);
|
2003-04-13 21:14:50 +02:00
|
|
|
|
2004-08-28 19:57:44 +02:00
|
|
|
// no time also if $options&8 and readonly and time=0h0
|
|
|
|
if ($type != 'date' && !($readonly && ($options & 8) && $time_0h0))
|
2003-04-13 21:14:50 +02:00
|
|
|
{
|
|
|
|
$format += $timeformat;
|
|
|
|
}
|
2007-02-14 08:09:17 +01:00
|
|
|
if ($value['m'] && strchr($this->dateformat,'M') !== false)
|
|
|
|
{
|
|
|
|
$value['M'] = substr(lang(adodb_date('F',$value['m'])),0,3);
|
|
|
|
}
|
2004-08-28 19:57:44 +02:00
|
|
|
if ($readonly) // is readonly
|
2002-10-12 18:39:10 +02:00
|
|
|
{
|
2006-06-22 18:14:08 +02:00
|
|
|
if ($value['H'] === '') unset($value['a']); // no am/pm if no hour set
|
2007-02-14 08:09:17 +01:00
|
|
|
|
2003-04-27 10:50:20 +02:00
|
|
|
$sep = array(
|
2005-02-09 11:15:49 +01:00
|
|
|
1 => $this->dateformat[1],
|
|
|
|
2 => $this->dateformat[1],
|
2003-04-27 10:50:20 +02:00
|
|
|
3 => ' ',
|
|
|
|
4 => ':'
|
|
|
|
);
|
2004-10-07 23:58:33 +02:00
|
|
|
for ($str='',$n = substr($type,-4) == 'only' ? 3 : 0; $n < count($format); ++$n)
|
2002-10-12 18:39:10 +02:00
|
|
|
{
|
2007-03-06 16:33:46 +01:00
|
|
|
if ($value[$format[$n]] && $n < 3 || $n >= 3 && ($value[$format[3]] || $value[$format[4]]))
|
2004-10-07 23:58:33 +02:00
|
|
|
{
|
|
|
|
if (!$n && $options & 16 )
|
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
$str = lang(adodb_date('l',adodb_mktime(12,0,0,$value['m'],$value['d'],$value['Y']))).' ';
|
2004-10-07 23:58:33 +02:00
|
|
|
}
|
2007-03-09 12:23:26 +01:00
|
|
|
if (!$n && $options & 32 )
|
|
|
|
{
|
|
|
|
$str = lang('Wk').adodb_date('W',adodb_mktime(12,0,0,$value['m'],$value['d'],$value['Y'])).' ';
|
|
|
|
}
|
2007-02-14 08:09:17 +01:00
|
|
|
$str .= ($str != '' ? $sep[$n] : '') .
|
|
|
|
(is_numeric($value[$format[$n]]) ? sprintf('%02d',$value[$format[$n]]) : $value[$format[$n]]);
|
2004-10-07 23:58:33 +02:00
|
|
|
}
|
|
|
|
if ($type == 'date-houronly') ++$n; // no minutes
|
2002-10-12 18:39:10 +02:00
|
|
|
}
|
|
|
|
$value = $str;
|
|
|
|
$cell['type'] = 'label';
|
2003-10-25 23:02:16 +02:00
|
|
|
if (!$cell['no_lang'])
|
|
|
|
{
|
|
|
|
$cell['no_lang'] = True;
|
|
|
|
$cell['label'] = strlen($cell['label']) > 1 ? lang($cell['label']) : $cell['label'];
|
|
|
|
}
|
2004-02-05 14:27:20 +01:00
|
|
|
unset($cell['size']);
|
2002-10-12 18:39:10 +02:00
|
|
|
return True;
|
|
|
|
}
|
2005-03-05 15:56:30 +01:00
|
|
|
if ($cell['needed'])
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['etemplate']['to_process'][$name] = array(
|
|
|
|
'type' => 'ext-'.$type,
|
|
|
|
'needed' => $cell['needed'],
|
|
|
|
);
|
|
|
|
}
|
2005-02-16 00:22:10 +01:00
|
|
|
$tpl =& new etemplate;
|
2002-10-06 02:15:14 +02:00
|
|
|
$tpl->init('*** generated fields for date','','',0,'',0,0); // make an empty template
|
2005-02-16 00:22:10 +01:00
|
|
|
// keep the editor away from the generated tmpls
|
|
|
|
$tpl->no_onclick = true;
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2003-04-13 21:14:50 +02:00
|
|
|
$types = array(
|
|
|
|
'Y' => ($options&1 ? 'int' : 'select-year'), // if options&1 set, show an int-field
|
2002-10-13 00:34:50 +02:00
|
|
|
'm' => 'select-month',
|
2003-11-03 13:03:17 +01:00
|
|
|
'M' => 'select-month',
|
2003-04-13 21:14:50 +02:00
|
|
|
'd' => 'select-day',
|
2006-06-22 18:14:08 +02:00
|
|
|
'H' => 'select-hour',
|
2003-04-13 21:14:50 +02:00
|
|
|
'i' => 'select-number'
|
|
|
|
);
|
2003-04-13 23:47:03 +02:00
|
|
|
$opts = array(
|
2003-08-28 16:31:11 +02:00
|
|
|
'H' => $this->timeformat == '12' ? ',0,12' : ',0,23,01',
|
|
|
|
'i' => $value['i'] % 5 || $options & 4 ? ',0,59,01' : ',0,59,05' // 5min steps, if ok with value
|
2002-10-13 00:34:50 +02:00
|
|
|
);
|
|
|
|
$help = array(
|
|
|
|
'Y' => 'Year',
|
|
|
|
'm' => 'Month',
|
2003-11-03 13:03:17 +01:00
|
|
|
'M' => 'Month',
|
2003-04-13 21:14:50 +02:00
|
|
|
'd' => 'Day',
|
|
|
|
'H' => 'Hour',
|
|
|
|
'i' => 'Minute'
|
2002-10-13 00:34:50 +02:00
|
|
|
);
|
2002-10-06 02:15:14 +02:00
|
|
|
$row = array();
|
2004-10-07 23:58:33 +02:00
|
|
|
for ($i=0,$n= substr($type,-4) == 'only' ? 3 : 0; $n < ($type == 'date' ? 3 : 5); ++$n,++$i)
|
2002-10-06 02:15:14 +02:00
|
|
|
{
|
|
|
|
$dcell = $tpl->empty_cell();
|
2005-11-05 18:07:29 +01:00
|
|
|
if ($cell['tabindex']) $dcell['tabindex'] = $cell['tabindex'];
|
|
|
|
if (!$i && $cell['accesskey']) $dcell['accesskey'] = $cell['accesskey'];
|
|
|
|
|
2003-08-19 01:15:59 +02:00
|
|
|
// test if we can use jsCalendar
|
|
|
|
if ($n == 0 && $this->jscal && $tmpl->java_script())
|
|
|
|
{
|
|
|
|
$dcell['type'] = 'html';
|
|
|
|
$dcell['name'] = 'str';
|
2003-08-28 16:31:11 +02:00
|
|
|
$value['str'] = $this->jscal->input($name.'[str]',False,$value['Y'],$value['m'],$value['d'],lang($cell['help']));
|
2003-08-19 01:15:59 +02:00
|
|
|
$n = 2; // no other fields
|
|
|
|
$options &= ~2; // no set-today button
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$dcell['type'] = $types[$format[$n]];
|
|
|
|
$dcell['size'] = $opts[$format[$n]];
|
|
|
|
$dcell['name'] = $format[$n];
|
2003-08-28 16:31:11 +02:00
|
|
|
$dcell['help'] = lang($help[$format[$n]]).': '.lang($cell['help']); // note: no lang on help, already done
|
2003-08-19 01:15:59 +02:00
|
|
|
}
|
2003-04-14 23:59:24 +02:00
|
|
|
if ($n == 4)
|
|
|
|
{
|
|
|
|
$dcell['label'] = ':'; // put a : between hour and minute
|
|
|
|
}
|
2004-10-07 23:58:33 +02:00
|
|
|
$dcell['no_lang'] = 2;
|
2003-04-13 21:14:50 +02:00
|
|
|
$row[$tpl->num2chrs($i)] = &$dcell;
|
2002-10-06 02:15:14 +02:00
|
|
|
unset($dcell);
|
2003-04-13 23:47:03 +02:00
|
|
|
|
|
|
|
if ($n == 2 && ($options & 2)) // Today button
|
2003-04-13 21:14:50 +02:00
|
|
|
{
|
|
|
|
$dcell = $tpl->empty_cell();
|
2005-11-05 18:07:29 +01:00
|
|
|
if ($cell['tabindex']) $dcell['tabindex'] = $cell['tabindex'];
|
2003-04-13 21:14:50 +02:00
|
|
|
$dcell['name'] = 'today';
|
2003-04-13 23:47:03 +02:00
|
|
|
$dcell['label'] = 'Today';
|
2003-04-13 21:14:50 +02:00
|
|
|
$dcell['help'] = 'sets today as date';
|
2004-10-07 23:58:33 +02:00
|
|
|
$dcell['no_lang'] = True;
|
2003-04-13 23:47:03 +02:00
|
|
|
if (($js = $tmpl->java_script()))
|
|
|
|
{
|
|
|
|
$dcell['needed'] = True; // to get a button
|
2005-02-09 11:15:49 +01:00
|
|
|
$dcell['onchange'] = "this.form.elements['$name"."[Y]'].value='".adodb_date('Y')."'; this.form.elements['$name"."[m]'].value='".adodb_date('n')."';this.form.elements['$name"."[d]'].value='".(0+adodb_date('d'))."'; return false;";
|
2003-04-13 23:47:03 +02:00
|
|
|
}
|
|
|
|
$dcell['type'] = $js ? 'button' : 'checkbox';
|
|
|
|
$row[$tpl->num2chrs(++$i)] = &$dcell;
|
2003-04-13 21:14:50 +02:00
|
|
|
unset($dcell);
|
|
|
|
}
|
|
|
|
if ($n == 2 && $type == 'date-time') // insert some space between date+time
|
|
|
|
{
|
|
|
|
$dcell = $tpl->empty_cell();
|
2003-08-28 16:31:11 +02:00
|
|
|
$dcell['type'] = 'html';
|
2003-04-13 21:14:50 +02:00
|
|
|
$dcell['name'] = 'space';
|
|
|
|
$value['space'] = ' ';
|
|
|
|
$row[$tpl->num2chrs(++$i)] = &$dcell;
|
|
|
|
unset($dcell);
|
|
|
|
}
|
2004-10-07 23:58:33 +02:00
|
|
|
if ($type == 'date-houronly') $n++; // no minutes
|
2002-10-06 02:15:14 +02:00
|
|
|
}
|
|
|
|
$tpl->data[0] = array();
|
|
|
|
$tpl->data[1] = &$row;
|
|
|
|
$tpl->set_rows_cols();
|
|
|
|
$tpl->size = ',,,,0';
|
2002-05-13 23:30:46 +02:00
|
|
|
|
2002-10-06 02:15:14 +02:00
|
|
|
$cell['size'] = $cell['name'];
|
|
|
|
$cell['type'] = 'template';
|
|
|
|
$cell['name'] = $tpl->name;
|
|
|
|
$cell['obj'] = &$tpl;
|
2002-09-27 18:17:39 +02:00
|
|
|
|
2002-10-06 02:15:14 +02:00
|
|
|
return True; // extra Label is ok
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
|
|
|
|
2005-06-03 00:43:44 +02:00
|
|
|
/**
|
|
|
|
* pre-processing of the duration extension
|
|
|
|
*
|
2005-12-06 08:11:14 +01:00
|
|
|
* Options contain $data_format,$input_format,$hours_per_day,$empty_not_0,$short_labels
|
2006-03-27 14:22:12 +02:00
|
|
|
* 1. data_format: d = days, h = hours, m = minutes, default minutes
|
|
|
|
* 2. input_format: d = days, h = hours, m = minutes, default hours+days (selectbox), optional % = allow to enter a percent value (no conversation)
|
2005-12-06 08:11:14 +01:00
|
|
|
* 3. hours_per_day: default 8 (workday)
|
|
|
|
* 4. should the widget differ between 0 and empty, which get then returned as NULL
|
2006-03-27 14:22:12 +02:00
|
|
|
* 5. short_labels use d/h/m instead of day/hour/minute
|
2005-06-03 00:43:44 +02:00
|
|
|
*
|
|
|
|
* @param string $name form-name of the control
|
|
|
|
* @param mixed &$value value / existing content, can be modified
|
|
|
|
* @param array &$cell array with the widget, can be modified for ui-independent widgets
|
|
|
|
* @param array &$readonlys names of widgets as key, to be made readonly
|
|
|
|
* @param mixed &$extension_data data the extension can store persisten between pre- and post-process
|
|
|
|
* @param object &$tmpl reference to the template we belong too
|
|
|
|
* @return boolean true if extra label is allowed, false otherwise
|
|
|
|
*/
|
|
|
|
function pre_process_duration($name,&$value,&$cell,&$readonlys,&$extension_data,&$tmpl)
|
|
|
|
{
|
2005-11-02 20:59:58 +01:00
|
|
|
//echo "<p>pre_process_duration($name,$value,...) cell[size]='$cell[size]'</p>\n";
|
2005-06-03 00:43:44 +02:00
|
|
|
$readonly = $readonlys || $cell['readonly'];
|
2005-12-06 08:11:14 +01:00
|
|
|
list($data_format,$input_format,$hours_per_day,$empty_not_0,$short_labels) = explode(',',$cell['size']);
|
2005-06-03 00:43:44 +02:00
|
|
|
if (!$hours_per_day) $hours_per_day = 8; // workday is 8 hours
|
2006-12-19 14:36:14 +01:00
|
|
|
if (($percent_allowed = strpos($input_format,'%') !== false))
|
2005-06-03 00:43:44 +02:00
|
|
|
{
|
|
|
|
$input_format = str_replace('%','',$input_format);
|
|
|
|
}
|
2006-03-27 14:22:12 +02:00
|
|
|
if (!in_array($input_format,array('d','h','dh','m','hm','dhm'))) $input_format = 'dh'; // hours + days
|
2005-06-03 00:43:44 +02:00
|
|
|
|
2006-08-12 08:14:28 +02:00
|
|
|
if (!$readonly) // dont set extension-data on readonly, it's not needed and can conflict with other widgets
|
|
|
|
{
|
|
|
|
$extension_data = array(
|
|
|
|
'type' => $cell['type'],
|
|
|
|
'data_format' => $data_format,
|
|
|
|
'unit' => ($unit = $input_format == 'd' ? 'd' : 'h'),
|
|
|
|
'input_format' => $input_format,
|
|
|
|
'hours_per_day' => $hours_per_day,
|
|
|
|
'percent_allowed'=> $percent_allowed,
|
|
|
|
'empty_not_0' => $empty_not_0,
|
|
|
|
);
|
2006-12-07 19:59:53 +01:00
|
|
|
$cell['size'] = '4,,/^-?[0-9]*[,.]?[0-9]*'.($percent_allowed ? '%?' : '').'$/';
|
2006-08-12 08:14:28 +02:00
|
|
|
}
|
2005-11-02 20:59:58 +01:00
|
|
|
if ($value)
|
2005-06-03 00:43:44 +02:00
|
|
|
{
|
2005-11-02 20:59:58 +01:00
|
|
|
switch($data_format)
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
$value *= $hours_per_day;
|
|
|
|
// fall-through
|
|
|
|
case 'h': case 'H':
|
|
|
|
$value *= 60;
|
|
|
|
break;
|
|
|
|
}
|
2005-06-03 00:43:44 +02:00
|
|
|
}
|
|
|
|
$cell['type'] = 'text';
|
|
|
|
$cell_name = $cell['name'];
|
|
|
|
$cell['name'] .= '[value]';
|
|
|
|
|
2006-12-19 14:36:14 +01:00
|
|
|
if (strpos($input_format,'m') !== false && $value && $value < 60)
|
2006-03-27 14:22:12 +02:00
|
|
|
{
|
|
|
|
$unit = 'm';
|
|
|
|
}
|
2006-12-19 14:36:14 +01:00
|
|
|
elseif (strpos($input_format,'d') !== false && $value >= 60*$hours_per_day)
|
2005-06-03 00:43:44 +02:00
|
|
|
{
|
|
|
|
$unit = 'd';
|
|
|
|
}
|
2005-11-02 20:59:58 +01:00
|
|
|
$value = $empty_not_0 && (string) $value === '' || !$empty_not_0 && !$value ? '' :
|
2006-03-27 14:22:12 +02:00
|
|
|
($unit == 'm' ? (int) $value : round($value / 60 / ($unit == 'd' ? $hours_per_day : 1),3));
|
2005-06-03 00:43:44 +02:00
|
|
|
|
2006-03-27 14:22:12 +02:00
|
|
|
if (!$readonly && strlen($input_format) > 1) // selectbox to switch between hours and days
|
2005-06-03 00:43:44 +02:00
|
|
|
{
|
|
|
|
$value = array(
|
|
|
|
'value' => $value,
|
|
|
|
'unit' => $unit,
|
|
|
|
);
|
|
|
|
$tpl =& new etemplate;
|
|
|
|
$tpl->init('*** generated fields for duration','','',0,'',0,0); // make an empty template
|
|
|
|
// keep the editor away from the generated tmpls
|
|
|
|
$tpl->no_onclick = true;
|
|
|
|
|
|
|
|
$selbox =& $tpl->empty_cell('select',$cell_name.'[unit]');
|
2006-12-19 14:36:14 +01:00
|
|
|
if (strpos($input_format,'m') !== false) $selbox['sel_options']['m'] = $short_labels ? 'm' : 'minutes';
|
|
|
|
if (strpos($input_format,'h') !== false) $selbox['sel_options']['h'] = $short_labels ? 'h' : 'hours';
|
|
|
|
if (strpos($input_format,'d') !== false) $selbox['sel_options']['d'] = $short_labels ? 'd' : 'days';
|
2005-11-05 18:07:29 +01:00
|
|
|
if ($cell['tabindex']) $selbox['tabindex'] = $cell['tabindex'];
|
2005-06-03 00:43:44 +02:00
|
|
|
|
|
|
|
$tpl->data[0] = array();
|
|
|
|
$tpl->data[1] =array(
|
|
|
|
'A' => $cell,
|
|
|
|
'B' => $selbox,
|
|
|
|
);
|
|
|
|
$tpl->set_rows_cols();
|
|
|
|
$tpl->size = ',,,,0';
|
|
|
|
|
|
|
|
unset($cell['size']);
|
|
|
|
$cell['type'] = 'template';
|
|
|
|
$cell['name'] = $tpl->name;
|
|
|
|
unset($cell['label']);
|
|
|
|
$cell['obj'] = &$tpl;
|
|
|
|
}
|
|
|
|
elseif (!$readonly || $value)
|
|
|
|
{
|
|
|
|
$cell['no_lang'] = 2;
|
2006-03-27 14:22:12 +02:00
|
|
|
$cell['label'] .= ($cell['label'] ? ' ' : '') . '%s ';
|
|
|
|
switch($unit)
|
|
|
|
{
|
|
|
|
case 'm': $cell['label'] .= $short_labels ? 'm' : lang('minutes'); break;
|
|
|
|
case 'h': $cell['label'] .= $short_labels ? 'h' : lang('hours'); break;
|
|
|
|
case 'd': $cell['label'] .= $short_labels ? 'd' : lang('days'); break;
|
|
|
|
}
|
2005-06-03 00:43:44 +02:00
|
|
|
}
|
|
|
|
return True; // extra Label is ok
|
|
|
|
}
|
|
|
|
|
2005-02-22 23:11:00 +01:00
|
|
|
/**
|
|
|
|
* postprocessing method, called after the submission of the form
|
|
|
|
*
|
|
|
|
* It has to copy the allowed/valid data from $value_in to $value, otherwise the widget
|
|
|
|
* will return no data (if it has a preprocessing method). The framework insures that
|
|
|
|
* the post-processing of all contained widget has been done before.
|
|
|
|
*
|
|
|
|
* Only used by select-dow so far
|
|
|
|
*
|
|
|
|
* @param string $name form-name of the widget
|
|
|
|
* @param mixed &$value the extension returns here it's input, if there's any
|
|
|
|
* @param mixed &$extension_data persistent storage between calls or pre- and post-process
|
|
|
|
* @param boolean &$loop can be set to true to request a re-submision of the form/dialog
|
|
|
|
* @param object &$tmpl the eTemplate the widget belongs too
|
|
|
|
* @param mixed &value_in the posted values (already striped of magic-quotes)
|
|
|
|
* @return boolean true if $value has valid content, on false no content will be returned!
|
|
|
|
*/
|
2003-08-19 01:15:59 +02:00
|
|
|
function post_process($name,&$value,&$extension_data,&$loop,&$tmpl,$value_in)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
//echo "<p>date_widget::post_process('$name','$extension_data[type]','$extension_data[data_format]') value="; print_r($value); echo ", value_in="; print_r($value_in); echo "</p>\n";
|
2003-08-19 01:15:59 +02:00
|
|
|
if (!isset($value) && !isset($value_in))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
2005-06-03 00:43:44 +02:00
|
|
|
if ($extension_data['type'] == 'date-duration')
|
|
|
|
{
|
|
|
|
if (is_array($value)) // template with selectbox
|
|
|
|
{
|
|
|
|
$unit = $value['unit'];
|
|
|
|
$value = $value['value'];
|
|
|
|
}
|
|
|
|
elseif (!preg_match('/^-?[0-9]*[,.]?[0-9]*'.($extension_data['percent_allowed'] ? '%?' : '').'$/',$value_in))
|
|
|
|
{
|
2005-11-09 21:50:45 +01:00
|
|
|
$GLOBALS['egw_info']['etemplate']['validation_errors'][$name] = lang("'%1' is not a valid floatingpoint number !!!",$value_in);
|
2005-06-03 00:43:44 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$value = $value_in;
|
|
|
|
$unit = $extension_data['unit'];
|
|
|
|
}
|
|
|
|
if ($extension_data['percent_allowed'] && substr($value,-1) == '%')
|
|
|
|
{
|
2005-11-02 20:59:58 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ($value === '' && $extension_data['empty_not_0']) // we differ between 0 and empty, which get returned as null
|
|
|
|
{
|
|
|
|
$value = null;
|
|
|
|
return true;
|
2005-06-03 00:43:44 +02:00
|
|
|
}
|
2006-03-27 14:22:12 +02:00
|
|
|
$value = (int) round(str_replace(',','.',$value) * ($unit == 'm' ? 1 : (60 * ($unit == 'd' ? $extension_data['hours_per_day'] : 1))));
|
2005-06-03 00:43:44 +02:00
|
|
|
|
|
|
|
switch($extension_data['data_format'])
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
$value /= (float) $extension_data['hours_per_day'];
|
|
|
|
// fall-through
|
|
|
|
case 'h': case 'H':
|
|
|
|
$value /= 60.0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2005-04-10 23:25:42 +02:00
|
|
|
$no_date = substr($extension_data['type'],-4) == 'only';
|
|
|
|
|
2003-04-13 23:47:03 +02:00
|
|
|
if ($value['today'])
|
|
|
|
{
|
|
|
|
$set = array('Y','m','d');
|
|
|
|
foreach($set as $d)
|
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
$value[$d] = adodb_date($d);
|
2003-04-13 23:47:03 +02:00
|
|
|
}
|
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
if (isset($value_in['str']) && !empty($value_in['str']))
|
2003-08-19 01:15:59 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
if (!is_array($value))
|
|
|
|
{
|
|
|
|
$value = array();
|
|
|
|
}
|
|
|
|
$value += $this->jscal->input2date($value_in['str'],False,'d','m','Y');
|
2003-08-19 01:15:59 +02:00
|
|
|
}
|
2005-04-10 23:25:42 +02:00
|
|
|
if ($value['d'] || $no_date &&
|
|
|
|
(isset($value['H']) && $value['H'] !== '' || isset($value['i']) && $value['i'] !== ''))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-04-13 21:14:50 +02:00
|
|
|
if ($value['d'])
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-04-13 21:14:50 +02:00
|
|
|
if (!$value['m'])
|
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
$value['m'] = adodb_date('m');
|
2003-04-13 21:14:50 +02:00
|
|
|
}
|
|
|
|
if (!$value['Y'])
|
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
$value['Y'] = adodb_date('Y');
|
2003-04-13 21:14:50 +02:00
|
|
|
}
|
|
|
|
elseif ($value['Y'] < 100)
|
|
|
|
{
|
|
|
|
$value['Y'] += $value['Y'] < 30 ? 2000 : 1900;
|
|
|
|
}
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2003-04-13 21:14:50 +02:00
|
|
|
else // for the timeonly field
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2003-04-13 21:14:50 +02:00
|
|
|
$value['d'] = $value['m'] = 1;
|
|
|
|
$value['Y'] = 1970;
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
2005-02-09 11:15:49 +01:00
|
|
|
// checking the date is a correct one
|
|
|
|
if (!checkdate($value['m'],$value['d'],$value['Y']))
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2005-11-09 21:50:45 +01:00
|
|
|
$GLOBALS['egw_info']['etemplate']['validation_errors'][$name] .= lang("'%1' is not a valid date !!!",
|
|
|
|
$GLOBALS['egw']->common->dateformatorder($value['Y'],$value['m'],$value['d'],true));
|
2005-02-09 11:15:49 +01:00
|
|
|
}
|
|
|
|
$data_format = $extension_data['data_format'];
|
|
|
|
if (empty($data_format))
|
|
|
|
{
|
2005-04-10 23:25:42 +02:00
|
|
|
// for time or hour format we use just seconds (and no timezone correction between server-time and UTC)
|
|
|
|
$value = $no_date ? 3600 * (int) $value['H'] + 60 * (int) $value['i'] :
|
|
|
|
adodb_mktime((int) $value['H'],(int) $value['i'],0,$value['m'],$value['d'],$value['Y']);
|
2002-05-13 23:30:46 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-02-09 11:15:49 +01:00
|
|
|
for ($n = 0,$str = ''; $n < strlen($data_format); ++$n)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
2006-12-19 14:36:14 +01:00
|
|
|
if (strpos('YmdHi',$c = $data_format[$n]) !== false)
|
2002-05-13 23:30:46 +02:00
|
|
|
{
|
|
|
|
$str .= sprintf($c=='Y'?'%04d':'%02d',$value[$c]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$str .= $c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$value = $str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$value = '';
|
|
|
|
}
|
|
|
|
return True;
|
|
|
|
}
|
2002-10-12 18:39:10 +02:00
|
|
|
}
|