215 lines
5.1 KiB
PHP
215 lines
5.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework
|
||
|
*
|
||
|
* LICENSE
|
||
|
*
|
||
|
* This source file is subject to the new BSD license that is bundled
|
||
|
* with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://framework.zend.com/license/new-bsd
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@zend.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* @category Zend
|
||
|
* @package Zend_Dojo
|
||
|
* @subpackage Form_Element
|
||
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
/** Zend_Dojo_Form_Element_ValidationTextBox */
|
||
|
require_once 'Zend/Dojo/Form/Element/ValidationTextBox.php';
|
||
|
|
||
|
/**
|
||
|
* DateTextBox dijit
|
||
|
*
|
||
|
* @uses Zend_Dojo_Form_Element_ValidationTextBox
|
||
|
* @package Zend_Dojo
|
||
|
* @subpackage Form_Element
|
||
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @version $Id: DateTextBox.php 10079 2008-07-14 10:56:37Z matthew $
|
||
|
*/
|
||
|
class Zend_Dojo_Form_Element_DateTextBox extends Zend_Dojo_Form_Element_ValidationTextBox
|
||
|
{
|
||
|
/**
|
||
|
* Use DateTextBox dijit view helper
|
||
|
* @var string
|
||
|
*/
|
||
|
public $helper = 'DateTextBox';
|
||
|
|
||
|
/**
|
||
|
* Allowed formatLength types
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $_allowedFormatTypes = array(
|
||
|
'long',
|
||
|
'short',
|
||
|
'medium',
|
||
|
'full',
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* Allowed selector types
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $_allowedSelectorTypes = array(
|
||
|
'time',
|
||
|
'date',
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* Set am,pm flag
|
||
|
*
|
||
|
* @param bool $am,pm
|
||
|
* @return Zend_Dojo_Form_Element_DateTextBox
|
||
|
*/
|
||
|
public function setAmPm($flag)
|
||
|
{
|
||
|
$this->setConstraint('am,pm', (bool) $flag);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve am,pm flag
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function getAmPm()
|
||
|
{
|
||
|
if (!$this->hasConstraint('am,pm')) {
|
||
|
return false;
|
||
|
}
|
||
|
return ('true' ==$this->getConstraint('am,pm'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set strict flag
|
||
|
*
|
||
|
* @param bool $strict
|
||
|
* @return Zend_Dojo_Form_Element_DateTextBox
|
||
|
*/
|
||
|
public function setStrict($flag)
|
||
|
{
|
||
|
$this->setConstraint('strict', (bool) $flag);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve strict flag
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function getStrict()
|
||
|
{
|
||
|
if (!$this->hasConstraint('strict')) {
|
||
|
return false;
|
||
|
}
|
||
|
return ('true' == $this->getConstraint('strict'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set locale
|
||
|
*
|
||
|
* @param string $locale
|
||
|
* @return Zend_Dojo_Form_Element_DateTextBox
|
||
|
*/
|
||
|
public function setLocale($locale)
|
||
|
{
|
||
|
$this->setConstraint('locale', (string) $locale);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve locale
|
||
|
*
|
||
|
* @return string|null
|
||
|
*/
|
||
|
public function getLocale()
|
||
|
{
|
||
|
return $this->getConstraint('locale');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set date format pattern
|
||
|
*
|
||
|
* @param string $pattern
|
||
|
* @return Zend_Dojo_Form_Element_NumberTextBox
|
||
|
*/
|
||
|
public function setDatePattern($pattern)
|
||
|
{
|
||
|
$this->setConstraint('datePattern', (string) $pattern);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve date format pattern
|
||
|
*
|
||
|
* @return string|null
|
||
|
*/
|
||
|
public function getDatePattern()
|
||
|
{
|
||
|
return $this->getConstraint('datePattern');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set numeric format formatLength
|
||
|
*
|
||
|
* @see $_allowedFormatTypes
|
||
|
* @param string $formatLength
|
||
|
* @return Zend_Dojo_Form_Element_NumberTextBox
|
||
|
*/
|
||
|
public function setFormatLength($formatLength)
|
||
|
{
|
||
|
$formatLength = strtolower($formatLength);
|
||
|
if (!in_array($formatLength, $this->_allowedFormatTypes)) {
|
||
|
require_once 'Zend/Form/Element/Exception.php';
|
||
|
throw new Zend_Form_Element_Exception(sprintf('Invalid formatLength "%s" specified', $formatLength));
|
||
|
}
|
||
|
|
||
|
$this->setConstraint('formatLength', $formatLength);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve formatLength
|
||
|
*
|
||
|
* @return string|null
|
||
|
*/
|
||
|
public function getFormatLength()
|
||
|
{
|
||
|
return $this->getConstraint('formatLength');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set numeric format Selector
|
||
|
*
|
||
|
* @see $_allowedSelectorTypes
|
||
|
* @param string $selector
|
||
|
* @return Zend_Dojo_Form_Element_NumberTextBox
|
||
|
*/
|
||
|
public function setSelector($selector)
|
||
|
{
|
||
|
$selector = strtolower($selector);
|
||
|
if (!in_array($selector, $this->_allowedSelectorTypes)) {
|
||
|
require_once 'Zend/Form/Element/Exception.php';
|
||
|
throw new Zend_Form_Element_Exception(sprintf('Invalid Selector "%s" specified', $selector));
|
||
|
}
|
||
|
|
||
|
$this->setConstraint('selector', $selector);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve selector
|
||
|
*
|
||
|
* @return string|null
|
||
|
*/
|
||
|
public function getSelector()
|
||
|
{
|
||
|
return $this->getConstraint('selector');
|
||
|
}
|
||
|
}
|