Source for file jFormsControlDate.class.php
Documentation is available at jFormsControlDate.class.php
- <?php
- /**
- * @package jelix
- * @subpackage forms
- * @author Julien Issler
- * @contributor Thomas, Zeffyr
- * @copyright 2008 Julien Issler, 2009 Thomas, 2010 Zeffyr
- * @link http://www.jelix.org
- * @licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
- */
-
- /**
- *
- * @package jelix
- * @subpackage forms
- */
- class jFormsControlDate extends jFormsControl {
- public $type = 'date';
-
- public function __construct($ref){
- $this->ref = $ref;
- $this->datatype = new jDatatypeDate();
- }
-
- function setValueFromRequest($request) {
- $value = $request->getParam($this->ref,'');
- if (is_array($value))
- $value = $value['year'].'-'.$value['month'].'-'.$value['day'];
- if($value == '--')
- $value = '';
- $this->setData($value);
- }
-
- function getDisplayValue($value) {
- if ($value != '') {
- $dt = new jDateTime();
- $dt->setFromString($value, jDateTime::DB_DFORMAT);
- $value = $dt->toString(jDateTime::LANG_DFORMAT);
- }
- return $value;
- }
- }
Documentation generated on Mon, 19 Sep 2011 14:12:52 +0200 by phpDocumentor 1.4.3