| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/vesoul/libraries/src/Form/Field/ |
Upload File : |
<?php
/**
* Joomla! Content Management System
*
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\CMS\Form\Field;
use Joomla\CMS\Form\FormField;
/**
* Date field
*
* @since 6.0.0
*/
class DateField extends FormField
{
/**
* The form field type.
*
* @var string
*
* @since 6.0.0
*/
protected $type = 'Date';
/**
* Name of the layout being used to render the field
*
* @var string
*
* @since 6.0.0
*/
protected $layout = 'joomla.form.field.date';
/**
* Min value Y-m-d
*
* @var string
*
* @since 6.0.0
*/
protected $dateMin = '';
/**
* Max value Y-m-d
*
* @var string
*
* @since 6.0.0
*/
protected $dateMax = '';
/**
* Method to attach a Form object to the field.
*
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
* @param mixed $value The form field value to validate.
* @param string $group The field name group control value. This acts as as an array container for the field.
* For example if the field has name="foo" and the group value is set to "bar" then the
* full field name would end up being "bar[foo]".
*
* @return boolean True on success.
*
* @since 6.0.0
*/
public function setup(\SimpleXMLElement $element, $value, $group = null)
{
if (!parent::setup($element, $value, $group)) {
return false;
}
foreach (['min', 'max'] as $attr) {
$this->__set($attr, (string) $element[$attr]);
}
return true;
}
/**
* Method to get certain otherwise inaccessible properties from the form field object.
*
* @param string $name The property name for which to get the value.
*
* @return mixed The property value or null.
*
* @since 6.0.0
*/
public function __get($name)
{
switch ($name) {
case 'min':
return $this->dateMin;
case 'max':
return $this->dateMax;
default:
return parent::__get($name);
}
}
/**
* Method to set certain otherwise inaccessible properties of the form field object.
*
* @param string $name The property name for which to set the value.
* @param mixed $value The value of the property.
*
* @return void
*
* @since 6.0.0
*/
public function __set($name, $value)
{
switch ($name) {
case 'value':
if ($value instanceof \DateTimeInterface) {
$this->value = $value->format('Y-m-d');
} else {
$this->value = (string) $value;
}
break;
case 'min':
$this->dateMin = (string) $value;
break;
case 'max':
$this->dateMax = (string) $value;
break;
default:
parent::__set($name, $value);
}
}
/**
* Method to get the data to be passed to the layout for rendering.
*
* @return array
*
* @since 6.0.0
*/
protected function getLayoutData()
{
$data = parent::getLayoutData();
$data['min'] = $this->dateMin;
$data['max'] = $this->dateMax;
return $data;
}
}