本文整理汇总了PHP中FormItem::email方法的典型用法代码示例。如果您正苦于以下问题:PHP FormItem::email方法的具体用法?PHP FormItem::email怎么用?PHP FormItem::email使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormItem
的用法示例。
在下文中一共展示了FormItem::email方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
};
break;
case 'last_name':
return function () {
InlineEditItem::text('last_name', NULL)->validationRule('required|regex:/^[a-zA-Z0-9_@]{3,100}$/');
};
break;
default:
return function () {
};
break;
}
})->form(function () {
FormItem::text('name', 'Name')->validationRule('required')->group('general');
FormItem::text('second_name', 'Second Name')->validationRule('required')->group('general');
FormItem::text('last_name', 'Last Name')->validationRule('required')->group('general');
FormItem::email('email', 'Email')->validationRule('required|email')->group('general');
FormItem::text('phone', 'Phone')->validationRule('required')->group('general');
if (!preg_match('/edit$/', Request::url()) && !preg_match('/update$/', Request::url())) {
FormItem::text('login', 'Login')->validationRule('required')->group('general');
FormItem::text('password', 'Password')->validationRule('required')->group('general');
}
FormItem::images()->type('model')->modelMethod('photos')->group('photos');
FormGroup::create('general', 'General')->setDisplayType(FormGroup::DISPLAY_TYPE_FULL);
FormGroup::create('photos', 'Photos')->setDisplayType(FormGroup::DISPLAY_TYPE_FULL);
})->viewFilters(function () {
ViewFilter::text('name', 'Name');
ViewFilter::text('second_name', 'Second Name');
ViewFilter::text('last_name', 'Last Name');
ViewFilter::text('email', 'Email');
});