2017 © Pedro Peláez
 

library form

CakePHP Form library

image

cakephp/form

CakePHP Form library

  • Thursday, April 26, 2018
  • by cakephp
  • Repository
  • 5 Watchers
  • 3 Stars
  • 116 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 67 Versions
  • 0 % Grown

The README.md

Total Downloads License, (*1)

CakePHP Form Library

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., (*2)

Usage

use Cake\Form\Form;
use Cake\Form\Schema;
use Cake\Validation\Validator;

class ContactForm extends Form
{

    protected function _buildSchema(Schema $schema)
    {
        return $schema->addField('name', 'string')
            ->addField('email', ['type' => 'string'])
            ->addField('body', ['type' => 'text']);
    }

    public function validationDefault(Validator $validator)
    {
        return $validator->add('name', 'length', [
                'rule' => ['minLength', 10],
                'message' => 'A name is required'
            ])->add('email', 'format', [
                'rule' => 'email',
                'message' => 'A valid email address is required',
            ]);
    }

    protected function _execute(array $data)
    {
        // Send an email.
        return true;
    }
}

In the above example we see the 3 hook methods that forms provide:, (*3)

  • _buildSchema() is used to define the schema data. You can define field type, length, and precision.
  • validationDefault() Gets a Cake\Validation\Validator instance that you can attach validators to.
  • _execute() lets you define the behavior you want to happen when execute() is called and the data is valid.

You can always define additional public methods as you need as well., (*4)

$contact = new ContactForm();
$success = $contact->execute($data);
$errors = $contact->getErrors();

Documentation

Please make sure you check the official documentation, (*5)

The Versions

26/04 2018

dev-master

9999999-dev https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.2

3.6.2.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.3

3.6.3.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.4

3.6.4.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.5

3.6.5.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.6

3.6.6.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.7

3.6.7.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.8

3.6.8.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

26/04 2018

3.6.9

3.6.9.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

19/04 2018

3.6.1

3.6.1.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/03 2018

dev-3.next

dev-3.next https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/03 2018

3.6.0-RC1

3.6.0.0-RC1 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/03 2018

3.6.0

3.6.0.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/03 2018

3.6.0-RC2

3.6.0.0-RC2 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/02 2018

3.6.0-beta1

3.6.0.0-beta1 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/02 2018

3.6.0-beta2

3.6.0.0-beta2 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

20/02 2018

3.6.0-beta3

3.6.0.0-beta3 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

05/02 2018

3.5.13

3.5.13.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

05/02 2018

3.5.14

3.5.14.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

05/02 2018

3.5.15

3.5.15.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

05/02 2018

3.5.x-dev

3.5.9999999.9999999-dev https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

05/02 2018

3.5.17

3.5.17.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.4

3.5.4.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.5

3.5.5.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.6

3.5.6.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.7

3.5.7.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.8

3.5.8.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.9

3.5.9.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.10

3.5.10.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.11

3.5.11.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

04/10 2017

3.5.12

3.5.12.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

27/08 2017

3.5.1

3.5.1.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

27/08 2017

3.5.2

3.5.2.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

27/08 2017

3.5.3

3.5.3.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.10

3.4.10.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.11

3.4.11.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.12

3.4.12.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.13

3.4.13.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.8

3.4.8.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.9

3.4.9.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.5.0

3.5.0.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.5.0-RC1

3.5.0.0-RC1 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.5.0-RC2

3.5.0.0-RC2 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.x-dev

3.4.9999999.9999999-dev https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/06 2017

3.4.14

3.4.14.0 https://cakephp.org

CakePHP Form library

  Sources   Download

MIT

The Requires

 

cakephp form

11/03 2017

3.4.4

3.4.4.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

11/03 2017

3.4.5

3.4.5.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

11/03 2017

3.4.6

3.4.6.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

11/03 2017

3.4.7

3.4.7.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.0

3.4.0.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.0-RC3

3.4.0.0-RC3

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.0-RC4

3.4.0.0-RC4

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.1

3.4.1.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.2

3.4.2.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.3

3.4.3.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-beta1

3.4.0.0-beta1

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-beta2

3.4.0.0-beta2

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-beta3

3.4.0.0-beta3

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-beta4

3.4.0.0-beta4

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-RC1

3.4.0.0-RC1

CakePHP Form library

  Sources   Download

MIT

The Requires

 

29/12 2016

3.4.0-RC2

3.4.0.0-RC2

CakePHP Form library

  Sources   Download

MIT

The Requires

 

28/12 2016

3.3.12

3.3.12.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

28/12 2016

3.3.13

3.3.13.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

28/12 2016

3.3.14

3.3.14.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

28/12 2016

3.3.15

3.3.15.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

28/12 2016

3.3.16

3.3.16.0

CakePHP Form library

  Sources   Download

MIT

The Requires

 

19/12 2016

3.3.11

3.3.11.0

CakePHP Form library

  Sources   Download

MIT

The Requires