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 self */ 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; } /** * Get both the year and month elements * * @return array */ public function getElements() { return array_merge(array($this->dayElement), parent::getElements()); } /** * Set the day attributes * * @param array $dayAttributes * @return self */ 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 self Provides a fluent interface */ 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']); return $this; } /** * @return String */ public function getValue() { return sprintf( '%s-%s-%s', $this->getYearElement()->getValue(), $this->getMonthElement()->getValue(), $this->getDayElement()->getValue() ); } /** * 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' => 'DateSelect') ), '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; } }