codaxis/cakephp-parsley-helper
Composer 安装命令:
composer require codaxis/cakephp-parsley-helper
包简介
CakePHP Form Helper for Parsley.js automatic validation integration
README 文档
README
DEPRECATION WARNING: This plugin is not maintained anymore.
CakePHP Form Helper for Parsley.js automatic validation integration
This helper will automatically read validation rules from active form model and assign field attributes accordingly.
Compatible with Cake 2.4.7+
Feel free to make any code/docs contributions or post any issues.
Basic usage
-
Enable the helper plugin in your app/Config/bootstrap.php by doing
CakePlugin::load('ParsleyHelper');- or justCakePlugin::loadAll();. -
Load helper in your
app/Controller/AppController.php. You can use the classname option if you want to keep your helper alias as "Form".// In AppController.php public $helpers = array('ParsleyHelper.ParsleyForm'); // or public $helpers = array('Form' => array('className' => 'ParsleyHelper.ParsleyForm'));
-
Enable Parsley rules integration in any form by setting
parsley => trueordata-parsley-validate => truein Form->create() options array.echo $this->Form->create('MyModel', array('parsley' => true));
-
That's all! When you create an input field, parsley attributes will be set according to the defined validation rules.
Trait usage
If you are running PHP 5.4 or greater, and already using a custom or vendor form helper, you can make use of provided ParsleyFormTrait and retain both helper functionalities. You can do so by creating a custom helper in your app/View/Helper folder like this:
// In app/View/Helper App::uses('ParsleyFormTrait', 'ParsleyHelper.View/Helper'); class MyFormHelper extends VendorFormHelper { use ParsleyFormTrait; }
统计信息
- 总下载量: 108
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-04-30