-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from antograssiot/bake-form
Add possibility to bake modeless form
- Loading branch information
Showing
6 changed files
with
126 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
/** | ||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org) | ||
* @link http://cakephp.org CakePHP(tm) Project | ||
* @since 1.0.9 | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
namespace Bake\Shell\Task; | ||
|
||
/** | ||
* ShellHelper code generator. | ||
*/ | ||
class FormTask extends SimpleBakeTask | ||
{ | ||
/** | ||
* Task name used in path generation. | ||
* | ||
* @var string | ||
*/ | ||
public $pathFragment = 'Form/'; | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function name() | ||
{ | ||
return 'form'; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function fileName($name) | ||
{ | ||
return $name . 'Form.php'; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function template() | ||
{ | ||
return 'Form/form'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<% | ||
/** | ||
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org) | ||
* @link http://cakephp.org CakePHP(tm) Project | ||
* @since 1.0.9 | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
%> | ||
<?php | ||
namespace <%= $namespace %>\Form; | ||
|
||
use Cake\Form\Form; | ||
use Cake\Form\Schema; | ||
use Cake\Validation\Validator; | ||
|
||
/** | ||
* <%= $name %> Form. | ||
*/ | ||
class <%= $name %>Form extends Form | ||
{ | ||
/** | ||
* Builds the schema for the modeless form | ||
* | ||
* @param Schema $schema From schema | ||
* @return $this | ||
*/ | ||
protected function _buildSchema(Schema $schema) | ||
{ | ||
return $schema; | ||
} | ||
|
||
/** | ||
* Form validation builder | ||
* | ||
* @param Validator $validator to use against the form | ||
* @return Validator | ||
*/ | ||
protected function _buildValidator(Validator $validator) | ||
{ | ||
return $validator; | ||
} | ||
|
||
/** | ||
* Defines what to execute once the From is being processed | ||
* | ||
* @return bool | ||
*/ | ||
protected function _execute(array $data) | ||
{ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters