當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Validator::addNestedMany方法代碼示例

本文整理匯總了PHP中Cake\Validation\Validator::addNestedMany方法的典型用法代碼示例。如果您正苦於以下問題:PHP Validator::addNestedMany方法的具體用法?PHP Validator::addNestedMany怎麽用?PHP Validator::addNestedMany使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Cake\Validation\Validator的用法示例。


在下文中一共展示了Validator::addNestedMany方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validationDefault

 public function validationDefault(Validator $validator)
 {
     $data = null;
     // Contain our first $context validator
     $validator->requirePresence('label')->notEmpty('label', __("Ce champs est obligatoire"), function ($context) use(&$data) {
         $data = $context;
         // Update the $data with current $context
         return true;
     })->requirePresence('type_id')->notEmpty('type_id', __("Ce champs est obligatoire"));
     // @ TODO : TYPE_ID => 1, doit être unique (seulement une homepage par site !)
     $translationValidator = new Validator();
     $translationValidator->requirePresence('title')->notEmpty('title', __("Ce champs est obligatoire"))->requirePresence('slug')->notEmpty('slug', __("Ce champs est obligatoire"));
     $validator->addNestedMany('translations', $translationValidator);
     return $validator;
 }
開發者ID:Aerue,項目名稱:avalia,代碼行數:15,代碼來源:ContentbuildersTable.php

示例2: testNestedManyValidatorCreate

 /**
  * Tests that the 'create' and 'update' modes are preserved when using
  * nested validators
  *
  * @return void
  */
 public function testNestedManyValidatorCreate()
 {
     $validator = new Validator();
     $inner = new Validator();
     $inner->add('username', 'email', ['rule' => 'email', 'on' => 'create']);
     $validator->addNestedMany('user', $inner);
     $this->assertNotEmpty($validator->errors(['user' => [['username' => 'example']]], true));
     $this->assertEmpty($validator->errors(['user' => [['username' => 'a']]], false));
 }
開發者ID:jdaosavanh,項目名稱:clickerwebapp,代碼行數:15,代碼來源:ValidatorTest.php

示例3: testErrorsWithNestedManySomeInvalid

 /**
  * Test nested fields with many, but invalid data.
  *
  * @return void
  */
 public function testErrorsWithNestedManySomeInvalid()
 {
     $validator = new Validator();
     $comments = new Validator();
     $comments->add('comment', 'letter', ['rule' => 'alphanumeric']);
     $validator->addNestedMany('comments', $comments);
     $data = ['comments' => ['a string', ['comment' => 'letters'], ['comment' => 'more invalid']]];
     $errors = $validator->errors($data);
     $expected = ['comments' => ['_nested' => 'The provided value is invalid']];
     $this->assertEquals($expected, $errors);
 }
開發者ID:HarkiratGhotra,項目名稱:cake,代碼行數:16,代碼來源:ValidatorTest.php


注:本文中的Cake\Validation\Validator::addNestedMany方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。