| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Form;
- use Cake\Validation\Validator;
- /**
- * Form abstraction used to create forms not tied to ORM backed models,
- * or to other permanent datastores. Ideal for implementing forms on top of
- * API services, or contact forms.
- *
- * ### Building a form
- *
- * This class is most useful when subclassed. In a subclass you
- * should define the `_buildSchema`, `_buildValidator` and optionally,
- * the `_execute` methods. These allow you to declare your form's
- * fields, validation and primary action respectively.
- *
- * You can also define the validation and schema by chaining method
- * calls off of `$form->schema()` and `$form->validator()`.
- *
- * Forms are conventionally placed in the `App\Form` namespace.
- */
- class Form
- {
- /**
- * Schema class.
- *
- * @var string
- */
- protected $_schemaClass = '\Cake\Form\Schema';
- /**
- * The schema used by this form.
- *
- * @var \Cake\Form\Schema
- */
- protected $_schema;
- /**
- * The errors if any
- *
- * @var array
- */
- protected $_errors = [];
- /**
- * The validator used by this form.
- *
- * @var \Cake\Validation\Validator
- */
- protected $_validator;
- /**
- * Get/Set the schema for this form.
- *
- * This method will call `_buildSchema()` when the schema
- * is first built. This hook method lets you configure the
- * schema or load a pre-defined one.
- *
- * @param \Cake\Form\Schema|null $schema The schema to set, or null.
- * @return \Cake\Form\Schema the schema instance.
- */
- public function schema(Schema $schema = null)
- {
- if ($schema === null && empty($this->_schema)) {
- $schema = $this->_buildSchema(new $this->_schemaClass);
- }
- if ($schema) {
- $this->_schema = $schema;
- }
- return $this->_schema;
- }
- /**
- * A hook method intended to be implemented by subclasses.
- *
- * You can use this method to define the schema using
- * the methods on Cake\Form\Schema, or loads a pre-defined
- * schema from a concrete class.
- *
- * @param \Cake\Form\Schema $schema The schema to customize.
- * @return \Cake\Form\Schema The schema to use.
- */
- protected function _buildSchema(Schema $schema)
- {
- return $schema;
- }
- /**
- * Get/Set the validator for this form.
- *
- * This method will call `_buildValidator()` when the validator
- * is first built. This hook method lets you configure the
- * validator or load a pre-defined one.
- *
- * @param \Cake\Validation\Validator|null $validator The validator to set, or null.
- * @return \Cake\Validation\Validator the validator instance.
- */
- public function validator(Validator $validator = null)
- {
- if ($validator === null && empty($this->_validator)) {
- $validator = $this->_buildValidator(new Validator());
- }
- if ($validator) {
- $this->_validator = $validator;
- }
- return $this->_validator;
- }
- /**
- * A hook method intended to be implemented by subclasses.
- *
- * You can use this method to define the validator using
- * the methods on Cake\Validation\Validator or loads a pre-defined
- * validator from a concrete class.
- *
- * @param \Cake\Validation\Validator $validator The validator to customize.
- * @return \Cake\Validation\Validator The validator to use.
- */
- protected function _buildValidator(Validator $validator)
- {
- return $validator;
- }
- /**
- * Used to check if $data passes this form's validation.
- *
- * @param array $data The data to check.
- * @return bool Whether or not the data is valid.
- */
- public function validate(array $data)
- {
- $validator = $this->validator();
- $this->_errors = $validator->errors($data);
- return count($this->_errors) === 0;
- }
- /**
- * Get the errors in the form
- *
- * Will return the errors from the last call
- * to `validate()` or `execute()`.
- *
- * @return array Last set validation errors.
- */
- public function errors()
- {
- return $this->_errors;
- }
- /**
- * Set the errors in the form.
- *
- * ```
- * $errors = [
- * 'field_name' => ['rule_name' => 'message']
- * ];
- *
- * $form->setErrors($errors);
- * ```
- *
- * @since 3.5.1
- * @param array $errors Errors list.
- * @return $this
- */
- public function setErrors(array $errors)
- {
- $this->_errors = $errors;
- return $this;
- }
- /**
- * Execute the form if it is valid.
- *
- * First validates the form, then calls the `_execute()` hook method.
- * This hook method can be implemented in subclasses to perform
- * the action of the form. This may be sending email, interacting
- * with a remote API, or anything else you may need.
- *
- * @param array $data Form data.
- * @return bool False on validation failure, otherwise returns the
- * result of the `_execute()` method.
- */
- public function execute(array $data)
- {
- if (!$this->validate($data)) {
- return false;
- }
- return $this->_execute($data);
- }
- /**
- * Hook method to be implemented in subclasses.
- *
- * Used by `execute()` to execute the form's action.
- *
- * @param array $data Form data.
- * @return bool
- */
- protected function _execute(array $data)
- {
- return true;
- }
- /**
- * Get the printable version of a Form instance.
- *
- * @return array
- */
- public function __debugInfo()
- {
- $special = [
- '_schema' => $this->schema()->__debugInfo(),
- '_errors' => $this->errors(),
- '_validator' => $this->validator()->__debugInfo()
- ];
- return $special + get_object_vars($this);
- }
- }
|