本文整理汇总了PHP中MUtil_Model_ModelAbstract::createUniqueValidator方法的典型用法代码示例。如果您正苦于以下问题:PHP MUtil_Model_ModelAbstract::createUniqueValidator方法的具体用法?PHP MUtil_Model_ModelAbstract::createUniqueValidator怎么用?PHP MUtil_Model_ModelAbstract::createUniqueValidator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MUtil_Model_ModelAbstract
的用法示例。
在下文中一共展示了MUtil_Model_ModelAbstract::createUniqueValidator方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addFormElements
/**
* Adds elements from the model to the bridge that creates the form.
*
* Overrule this function to add different elements to the browse table, without
* having to recode the core table building code.
*
* @param \MUtil_Model_Bridge_FormBridgeInterface $bridge
* @param \MUtil_Model_ModelAbstract $model
* @param array $data The data that will later be loaded into the form
* @param optional boolean $new Form should be for a new element
* @return void|array When an array of new values is return, these are used to update the $data array in the calling function
*/
protected function addFormElements(\MUtil_Model_Bridge_FormBridgeInterface $bridge, \MUtil_Model_ModelAbstract $model, array $data, $new = false)
{
$returnValues = array();
if (APPLICATION_ENV !== 'production') {
$bsn = new \MUtil_Validate_Dutch_Burgerservicenummer();
$num = mt_rand(100000000, 999999999);
while (!$bsn->isValid($num)) {
$num++;
}
$model->set('grs_ssn', 'description', sprintf($this->_('Random Example BSN: %s'), $num));
} else {
$model->set('grs_ssn', 'description', $this->_('Enter a 9-digit SSN number.'));
}
if ($model->hashSsn === \Gems_Model_RespondentModel::SSN_HASH) {
if (strlen($data['grs_ssn']) > 9) {
// When longer the grs_ssn contains a hash, not a bsn number
$returnValues['grs_ssn'] = '';
}
}
$ucfirst = new \Zend_Filter_Callback('ucfirst');
// \MUtil_Echo::track($data);
$bridge->addTab('caption1')->h4($this->_('Identification'));
//Add the hidden fields after the tab, so validation will work. They need to be in the
//same tab where they are needed
$bridge->addHidden('grs_id_user');
$bridge->addHidden('gr2o_id_organization');
$bridge->addHidden($model->getKeyCopyName('gr2o_patient_nr'));
$bridge->addHidden($model->getKeyCopyName('gr2o_id_organization'));
if (isset($data['gul_id_user'])) {
$bridge->addHidden('gul_id_user');
}
$bridge->addText('grs_ssn', 'label', $this->_('SSN'), 'size', 10, 'maxlength', 12)->addValidator(new \MUtil_Validate_Dutch_Burgerservicenummer())->addValidator($model->createUniqueValidator('grs_ssn'))->addFilter('Digits');
$bridge->addText('gr2o_patient_nr', 'label', $this->_('Patient number'), 'size', 15, 'minlength', 4)->addValidator($model->createUniqueValidator(array('gr2o_patient_nr', 'gr2o_id_organization'), array('gr2o_id_user' => 'grs_id_user', 'gr2o_id_organization')));
$bridge->addText('grs_first_name')->addFilter($ucfirst);
$bridge->addText('grs_surname_prefix', 'description', 'de, van der, \'t, etc...');
$bridge->addText('grs_last_name', 'required', true)->addFilter($ucfirst);
$bridge->addTab('caption2')->h4($this->_('Medical data'));
$bridge->addRadio('grs_gender', 'separator', '', 'multiOptions', $this->util->getTranslated()->getGenders());
$year = intval(date('Y'));
// Als jQuery 1.4 gebruikt wordt: yearRange = c-130:c0
$bridge->addDate('grs_birthday', 'jQueryParams', array('defaultDate' => '-30y', 'maxDate' => 0, 'yearRange' => $year - 130 . ':' . $year))->addValidator(new \MUtil_Validate_Date_DateBefore());
//$bridge->addSelect( 'gr2o_id_physician');
$bridge->addText('gr2o_treatment', 'size', 30, 'description', $this->_('DBC\'s, etc...'));
$bridge->addTextarea('gr2o_comments', 'rows', 4, 'cols', 60);
$bridge->addTab('caption3')->h4($this->_('Contact information'));
// Setting e-mail to required is niet mogelijk, grijpt te diep in
// misschien later proberen met ->addGroup('required', 'true'); ???
$bridge->addText('grs_email', 'size', 30)->addValidator('SimpleEmail');
$bridge->addCheckBox('calc_email', 'label', $this->_('Respondent has no e-mail'));
$bridge->addRadio('gr2o_mailable');
$bridge->addText('grs_address_1', 'size', 40, 'description', $this->_('With housenumber'))->addFilter($ucfirst);
if ($model->has('grs_address_2')) {
$bridge->addText('grs_address_2', 'size', 40);
}
$bridge->addText('grs_zipcode', 'size', 7, 'description', '0000 AA');
$bridge->addFilter('grs_zipcode', new \Gems_Filter_DutchZipcode());
$bridge->addText('grs_city')->addFilter($ucfirst);
$bridge->addSelect('grs_iso_country', 'label', $this->_('Country'), 'multiOptions', $this->util->getLocalized()->getCountries());
$bridge->addText('grs_phone_1', 'size', 15)->addValidator('Phone');
$bridge->addTab('caption4')->h4($this->_('Settings'));
$bridge->addSelect('grs_iso_lang', 'label', $this->_('Language'), 'multiOptions', $this->util->getLocalized()->getLanguages());
$bridge->addRadio('gr2o_consent', 'separator', '', 'description', $this->_('Has the respondent signed the informed consent letter?'), 'required', true);
return $returnValues;
}