hourElement = new Select('hour'); $this->minuteElement = new Select('minute'); $this->secondElement = new Select('second'); } /** * Set options for DateTimeSelect element. * * Accepted options for DateTimeSelect (plus the ones from DateSelect): * * - hour_attributes: HTML attributes to be rendered with the hour element * - minute_attributes: HTML attributes to be rendered with the minute element * - second_attributes: HTML attributes to be rendered with the second element * - should_show_seconds: if set to true, the seconds select is shown * * @param array|Traversable $options * @return self */ public function setOptions($options) { parent::setOptions($options); if ($options instanceof Traversable) { $options = ArrayUtils::iteratorToArray($options); } if (isset($options['hour_attributes'])) { $this->setHourAttributes($options['hour_attributes']); } if (isset($options['minute_attributes'])) { $this->setMinuteAttributes($options['minute_attributes']); } if (isset($options['second_attributes'])) { $this->setSecondAttributes($options['second_attributes']); } if (isset($options['should_show_seconds'])) { $this->setShouldShowSeconds($options['should_show_seconds']); } return $this; } /** * @return Select */ public function getHourElement() { return $this->hourElement; } /** * @return Select */ public function getMinuteElement() { return $this->minuteElement; } /** * @return Select */ public function getSecondElement() { return $this->secondElement; } /** * Set the hour attributes * * @param array $hourAttributes * @return self */ public function setHourAttributes(array $hourAttributes) { $this->hourElement->setAttributes($hourAttributes); return $this; } /** * Get the hour attributes * * @return array */ public function getHourAttributes() { return $this->hourElement->getAttributes(); } /** * Set the minute attributes * * @param array $minuteAttributes * @return self */ public function setMinuteAttributes(array $minuteAttributes) { $this->minuteElement->setAttributes($minuteAttributes); return $this; } /** * Get the minute attributes * * @return array */ public function getMinuteAttributes() { return $this->minuteElement->getAttributes(); } /** * Set the second attributes * * @param array $secondAttributes * @return self */ public function setSecondAttributes(array $secondAttributes) { $this->secondElement->setAttributes($secondAttributes); return $this; } /** * Get the second attributes * * @return array */ public function getSecondAttributes() { return $this->secondElement->getAttributes(); } /** * If set to true, this indicate that the second select is shown. If set to true, the seconds will be * assumed to always be 00 * * @param bool $shouldShowSeconds * @return self */ public function setShouldShowSeconds($shouldShowSeconds) { $this->shouldShowSeconds = (bool) $shouldShowSeconds; return $this; } /** * @return bool */ public function shouldShowSeconds() { return $this->shouldShowSeconds; } /** * @param mixed $value * @return self * @throws InvalidArgumentException */ 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 (null === $value) { $value = new PhpDateTime(); } if ($value instanceof PhpDateTime) { $value = array( 'year' => $value->format('Y'), 'month' => $value->format('m'), 'day' => $value->format('d'), 'hour' => $value->format('H'), 'minute' => $value->format('i'), 'second' => $value->format('s') ); } if (! isset($value['second'])) { $value['second'] = '00'; } $this->yearElement->setValue($value['year']); $this->monthElement->setValue($value['month']); $this->dayElement->setValue($value['day']); $this->hourElement->setValue($value['hour']); $this->minuteElement->setValue($value['minute']); $this->secondElement->setValue($value['second']); return $this; } /** * @return string */ public function getValue() { return sprintf( '%s-%s-%s %s:%s:%s', $this->getYearElement()->getValue(), $this->getMonthElement()->getValue(), $this->getDayElement()->getValue(), $this->getHourElement()->getValue(), $this->getMinuteElement()->getValue(), $this->getSecondElement()->getValue() ); } /** * Prepare the form element (mostly used for rendering purposes) * * @param FormInterface $form * @return void */ public function prepareElement(FormInterface $form) { parent::prepareElement($form); $name = $this->getName(); $this->hourElement->setName($name . '[hour]'); $this->minuteElement->setName($name . '[minute]'); $this->secondElement->setName($name . '[second]'); } /** * Get validator * * @return ValidatorInterface */ protected function getValidator() { if (null === $this->validator) { $this->validator = new DateValidator(array('format' => 'Y-m-d H:i:s')); } 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' => 'DateTimeSelect') ), '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; $this->hourElement = clone $this->hourElement; $this->minuteElement = clone $this->minuteElement; $this->secondElement = clone $this->secondElement; } }