本文整理汇总了PHP中EmployeeService::getDefaultEmployeeId方法的典型用法代码示例。如果您正苦于以下问题:PHP EmployeeService::getDefaultEmployeeId方法的具体用法?PHP EmployeeService::getDefaultEmployeeId怎么用?PHP EmployeeService::getDefaultEmployeeId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EmployeeService
的用法示例。
在下文中一共展示了EmployeeService::getDefaultEmployeeId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: configure
public function configure()
{
// Note: Widget names were kept from old non-symfony version
$this->setWidgets(array('txtEmployeeId' => new sfWidgetFormInputText(), 'txtEmpFirstName' => new sfWidgetFormInputText(), 'txtEmpMiddleName' => new sfWidgetFormInputText(), 'txtEmpLastName' => new sfWidgetFormInputText(), 'txtEmpNickName' => new sfWidgetFormInputText(), 'MAX_FILE_SIZE' => new sfWidgetFormInputHidden(), 'photofile' => new sfWidgetFormInputFile()));
$employeeService = new EmployeeService();
$this->setDefault('txtEmployeeId', $employeeService->getDefaultEmployeeId());
$this->setValidators(array('txtEmployeeId' => new sfValidatorString(array('required' => false)), 'txtEmpFirstName' => new sfValidatorString(array('required' => true), array('required' => 'First Name Empty!')), 'txtEmpMiddleName' => new sfValidatorString(array('required' => false)), 'txtEmpLastName' => new sfValidatorString(array('required' => true), array('required' => 'Last Name Empty!')), 'txtEmpNickName' => new sfValidatorString(array('required' => false)), 'MAX_FILE_SIZE' => new sfValidatorString(array('required' => true)), 'photofile' => new sfValidatorFile(array('required' => false))));
}