コード例 #1
0
ファイル: Password.php プロジェクト: cargomedia/cm
 protected function _initialize()
 {
     $this->_params->set('lengthMin', 4);
     $this->_params->set('lengthMax', 100);
     parent::_initialize();
 }
コード例 #2
0
ファイル: Time.php プロジェクト: cargomedia/cm
 protected function _initialize()
 {
     $this->_timeZone = $this->_params->has('timeZone') ? $this->_params->getDateTimeZone('timeZone') : null;
     parent::_initialize();
 }
コード例 #3
0
ファイル: Float.php プロジェクト: cargomedia/cm
 protected function _initialize()
 {
     $this->_setMinMaxOptions();
     parent::_initialize();
 }