mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 00:03:18 +01:00
220 lines
6.5 KiB
PHP
220 lines
6.5 KiB
PHP
<?php
|
|
/*******************************************************************************
|
|
* Copyright (C) 2007 Easter-eggs
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
*
|
|
* Author: See AUTHORS file in top-level directory.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
/**
|
|
* Element date d'un formulaire pour LdapSaisie
|
|
*
|
|
* Cette classe définis les éléments dates des formulaires.
|
|
* Elle étant la classe basic LSformElement.
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*/
|
|
|
|
class LSformElement_date extends LSformElement {
|
|
|
|
var $fieldTemplate = 'LSformElement_date_field.tpl';
|
|
|
|
var $_php2js_format = array(
|
|
"a" => "a",
|
|
"A" => "A",
|
|
"b" => "b",
|
|
"B" => "B",
|
|
"c" => "c",
|
|
"d" => "d",
|
|
"e" => "e",
|
|
"H" => "H",
|
|
"I" => "I",
|
|
"j" => "j",
|
|
"m" => "m",
|
|
"M" => "M",
|
|
"p" => "p",
|
|
"s" => "s",
|
|
"S" => "S",
|
|
"T" => "T",
|
|
"U" => "U",
|
|
"w" => "w",
|
|
"y" => "y",
|
|
"Y" => "Y",
|
|
"z" => "z",
|
|
"Z" => "Z",
|
|
"%" => "%",
|
|
);
|
|
|
|
var $_cache_php2js_format=array();
|
|
|
|
var $default_style="vista";
|
|
|
|
/**
|
|
* Définis la valeur de l'élément date
|
|
*
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
*
|
|
* @param[in] [<b>required</b>] string or array La futur valeur de l'élément
|
|
*
|
|
* @retval boolean Retourne True
|
|
*/
|
|
function setValue($data) {
|
|
if (!is_array($data)) {
|
|
$data=array($data);
|
|
}
|
|
|
|
for($i=0;$i<count($data);$i++) {
|
|
if(is_numeric($data[$i])) {
|
|
$data[$i]=strftime($this -> getFormat(),$data[$i]);
|
|
}
|
|
else {
|
|
$this -> form -> setElementError($this -> attr_html);
|
|
}
|
|
}
|
|
|
|
$this -> values = $data;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Exporte les valeurs de l'élément
|
|
*
|
|
* @retval Array Les valeurs de l'élement
|
|
*/
|
|
function exportValues(){
|
|
$retval=array();
|
|
if (is_array($this -> values)) {
|
|
foreach($this -> values as $val) {
|
|
$date = strptime($val,$this -> getFormat());
|
|
if (is_array($date)) {
|
|
$retval[] = mktime($date['tm_hour'],$date['tm_min'],$date['tm_sec'],$date['tm_mon']+1,$date['tm_mday'],$date['tm_year']+1900);
|
|
}
|
|
}
|
|
}
|
|
return $retval;
|
|
}
|
|
|
|
/**
|
|
* Retourne le format d'affichage de la date
|
|
*
|
|
* @retval string Le format de la date
|
|
**/
|
|
function getFormat() {
|
|
if (isset($this -> params['html_options']['format'])) {
|
|
return $this -> params['html_options']['format'];
|
|
}
|
|
else {
|
|
if (isset($this -> params['html_options']['time']) && !$this -> params['html_options']['time']) {
|
|
return '%d/%m/%Y';
|
|
}
|
|
return "%d/%m/%Y, %T";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return date picker style value
|
|
*
|
|
* @retval string The date picker style
|
|
**/
|
|
function getStyle() {
|
|
if (isset($this -> params['html_options']['style'])) {
|
|
if (is_dir(LS_LIB_DIR.'arian-mootools-datepicker/datepicker_'.strval($this -> params['html_options']['style']))) {
|
|
return $this -> params['html_options']['style'];
|
|
}
|
|
LSdebug('LSformElement :: Date => unknown style parameter value '.strval($this -> params['html_options']['style']));
|
|
}
|
|
return $this -> default_style;
|
|
}
|
|
|
|
/**
|
|
* Retourne les infos d'affichage de l'élément
|
|
*
|
|
* Cette méthode retourne les informations d'affichage de l'élement
|
|
*
|
|
* @retval array
|
|
*/
|
|
function getDisplay(){
|
|
$return = $this -> getLabelInfos();
|
|
// value
|
|
if (!$this -> isFreeze()) {
|
|
// Help Infos
|
|
LSsession :: addHelpInfos(
|
|
'LSformElement_date',
|
|
array(
|
|
'now' => _('Now.'),
|
|
'today' => _('Today.')
|
|
)
|
|
);
|
|
|
|
$params = array(
|
|
'format' => $this -> php2js_format($this -> getFormat()),
|
|
'style' => $this -> getStyle(),
|
|
'time' => (isset($this -> params['html_options']['time'])?$this -> params['html_options']['time']:true),
|
|
'manual' => (isset($this -> params['html_options']['manual'])?$this -> params['html_options']['manual']:true),
|
|
'showNowButton' => (isset($this -> params['html_options']['showNowButton'])?$this -> params['html_options']['showNowButton']:true),
|
|
'showTodayButton' => (isset($this -> params['html_options']['showTodayButton'])?$this -> params['html_options']['showTodayButton']:true),
|
|
);
|
|
LSsession :: addJSconfigParam($this -> name,$params);
|
|
|
|
$codeLang = str_replace('_','-',preg_replace('/\..*$/','',LSsession :: getLang()));
|
|
|
|
LSsession :: addJSscript('Picker.js',LS_LIB_DIR.'arian-mootools-datepicker/');
|
|
LSsession :: addJSscript('Picker.Attach.js',LS_LIB_DIR.'arian-mootools-datepicker/');
|
|
LSsession :: addJSscript('Picker.Date.js',LS_LIB_DIR.'arian-mootools-datepicker/');
|
|
LSsession :: addJSscript('Locale.'.$codeLang.'.DatePicker.js',LS_LIB_DIR.'arian-mootools-datepicker/');
|
|
LSsession :: addCssFile('datepicker_'.$params['style'].'.css',LS_LIB_DIR.'arian-mootools-datepicker/datepicker_'.$params['style'].'/');
|
|
|
|
LSsession :: addJSscript('LSformElement_date_field.js');
|
|
LSsession :: addJSscript('LSformElement_date.js');
|
|
}
|
|
$return['html'] = $this -> fetchTemplate();
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* Convertis un format de date Php (strftime) en JS (jscalendar)
|
|
*
|
|
* @retval mixed Format de date jscalendar (string) ou False si la convertion
|
|
* n'a pas réussi.
|
|
*/
|
|
function php2js_format($format) {
|
|
if (isset($this -> _cache_php2js_format[$format])) {
|
|
return $this -> _cache_php2js_format[$format];
|
|
}
|
|
$new="";
|
|
for($i=0;$i<strlen($format);$i++) {
|
|
if ($format[$i]=="%") {
|
|
if (isset($this -> _php2js_format[$format[$i+1]])) {
|
|
$new.="%".$this -> _php2js_format[$format[$i+1]];
|
|
$i++;
|
|
}
|
|
else {
|
|
$this -> _cache_php2js_format[$format]=false;
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
$new.=$format[$i];
|
|
}
|
|
}
|
|
$this -> _cache_php2js_format[$format]=$new;
|
|
return $new;
|
|
}
|
|
}
|
|
|
|
?>
|