dayElement = new Select('day'); parent::__construct($name, $options); } /** * Accepted options for DateSelect (plus the ones from MonthSelect) : * - day_attributes: HTML attributes to be rendered with the day element * * @param array|\Traversable $options * @return DateSelect */ public function setOptions($options) { parent::setOptions($options); if (isset($options['day_attributes'])) { $this->setDayAttributes($options['day_attributes']); } return $this; } /** * @return Select */ public function getDayElement() { return $this->dayElement; } /** * Set the day attributes * * @param array $dayAttributes * @return DateSelect */ public function setDayAttributes(array $dayAttributes) { $this->dayElement->setAttributes($dayAttributes); return $this; } /** * Get the day attributes * * @return array */ public function getDayAttributes() { return $this->dayElement->getAttributes(); } /** * @param string|array|\ArrayAccess|PhpDateTime $value * @throws \Zend\Form\Exception\InvalidArgumentException * @return void|\Zend\Form\Element */ public function setValue($value) { if (is_string($value)) { try { $value = new PhpDateTime($value); } catch (Exception $e) { throw new InvalidArgumentException('Value should be a parsable string or an instance of DateTime'); } } if ($value instanceof PhpDateTime) { $value = array( 'year' => $value->format('Y'), 'month' => $value->format('m'), 'day' => $value->format('d') ); } $this->yearElement->setValue($value['year']); $this->monthElement->setValue($value['month']); $this->dayElement->setValue($value['day']); } /** * Prepare the form element (mostly used for rendering purposes) * * @param FormInterface $form * @return mixed */ public function prepareElement(FormInterface $form) { parent::prepareElement($form); $name = $this->getName(); $this->dayElement->setName($name . '[day]'); } /** * Get validator * * @return ValidatorInterface */ protected function getValidator() { if (null === $this->validator) { $this->validator = new DateValidator(array('format' => 'Y-m-d')); } return $this->validator; } /** * Should return an array specification compatible with * {@link Zend\InputFilter\Factory::createInput()}. * * @return array */ public function getInputSpecification() { return array( 'name' => $this->getName(), 'required' => false, 'filters' => array( array( 'name' => 'Callback', 'options' => array( 'callback' => function ($date) { // Convert the date to a specific format if (is_array($date)) { $date = $date['year'] . '-' . $date['month'] . '-' . $date['day']; } return $date; } ) ) ), 'validators' => array( $this->getValidator(), ) ); } /** * Clone the element (this is needed by Collection element, as it needs different copies of the elements) */ public function __clone() { $this->dayElement = clone $this->dayElement; $this->monthElement = clone $this->monthElement; $this->yearElement = clone $this->yearElement; } }