2009-07-01 04:24:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Bake Template for Controller action generation.
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2009-07-01 04:24:20 +00:00
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-07-01 04:24:20 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-01-26 22:03:03 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-10-15 18:26:48 +00:00
|
|
|
* @package Cake.Console.Templates.default.actions
|
2009-07-01 04:24:20 +00:00
|
|
|
* @since CakePHP(tm) v 1.3
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $admin ?>index method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function <?php echo $admin ?>index() {
|
2009-07-01 04:24:20 +00:00
|
|
|
$this-><?php echo $currentModelName ?>->recursive = 0;
|
|
|
|
$this->set('<?php echo $pluralName ?>', $this->paginate());
|
|
|
|
}
|
|
|
|
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $admin ?>view method
|
|
|
|
*
|
2012-05-09 22:28:02 +00:00
|
|
|
* @throws NotFoundException
|
2011-01-20 00:22:50 +00:00
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function <?php echo $admin ?>view($id = null) {
|
2010-12-12 17:37:02 +00:00
|
|
|
$this-><?php echo $currentModelName; ?>->id = $id;
|
|
|
|
if (!$this-><?php echo $currentModelName; ?>->exists()) {
|
|
|
|
throw new NotFoundException(__('Invalid <?php echo strtolower($singularHumanName); ?>'));
|
2009-07-01 04:24:20 +00:00
|
|
|
}
|
|
|
|
$this->set('<?php echo $singularName; ?>', $this-><?php echo $currentModelName; ?>->read(null, $id));
|
|
|
|
}
|
|
|
|
|
|
|
|
<?php $compact = array(); ?>
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $admin ?>add method
|
|
|
|
*
|
2012-08-24 23:39:19 +00:00
|
|
|
* @throws MethodNotAllowedException
|
2011-01-20 00:22:50 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function <?php echo $admin ?>add() {
|
2012-08-24 23:39:19 +00:00
|
|
|
if ($this->request->data) {
|
|
|
|
$this->request->onlyAllow('post');
|
2009-07-01 04:24:20 +00:00
|
|
|
$this-><?php echo $currentModelName; ?>->create();
|
2010-11-07 05:08:02 +00:00
|
|
|
if ($this-><?php echo $currentModelName; ?>->save($this->request->data)) {
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('The <?php echo strtolower($singularHumanName); ?> has been saved'));
|
2009-07-01 04:24:20 +00:00
|
|
|
$this->redirect(array('action' => 'index'));
|
|
|
|
<?php else: ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->flash(__('<?php echo ucfirst(strtolower($currentModelName)); ?> saved.'), array('action' => 'index'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
} else {
|
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('The <?php echo strtolower($singularHumanName); ?> could not be saved. Please, try again.'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
foreach (array('belongsTo', 'hasAndBelongsToMany') as $assoc):
|
|
|
|
foreach ($modelObj->{$assoc} as $associationName => $relation):
|
|
|
|
if (!empty($associationName)):
|
|
|
|
$otherModelName = $this->_modelName($associationName);
|
|
|
|
$otherPluralName = $this->_pluralName($associationName);
|
|
|
|
echo "\t\t\${$otherPluralName} = \$this->{$currentModelName}->{$otherModelName}->find('list');\n";
|
|
|
|
$compact[] = "'{$otherPluralName}'";
|
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endforeach;
|
|
|
|
if (!empty($compact)):
|
|
|
|
echo "\t\t\$this->set(compact(".join(', ', $compact)."));\n";
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
}
|
|
|
|
|
|
|
|
<?php $compact = array(); ?>
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $admin ?>edit method
|
|
|
|
*
|
2012-08-24 23:39:19 +00:00
|
|
|
* @throws MethodNotAllowedException
|
2012-05-09 22:28:02 +00:00
|
|
|
* @throws NotFoundException
|
2011-01-20 00:22:50 +00:00
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function <?php echo $admin; ?>edit($id = null) {
|
2010-12-12 17:37:02 +00:00
|
|
|
$this-><?php echo $currentModelName; ?>->id = $id;
|
|
|
|
if (!$this-><?php echo $currentModelName; ?>->exists()) {
|
|
|
|
throw new NotFoundException(__('Invalid <?php echo strtolower($singularHumanName); ?>'));
|
2009-07-01 04:24:20 +00:00
|
|
|
}
|
2012-08-24 23:39:19 +00:00
|
|
|
if ($this->request->data) {
|
|
|
|
$this->request->onlyAllow('post', 'put');
|
2010-11-07 05:08:02 +00:00
|
|
|
if ($this-><?php echo $currentModelName; ?>->save($this->request->data)) {
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('The <?php echo strtolower($singularHumanName); ?> has been saved'));
|
2009-07-01 04:24:20 +00:00
|
|
|
$this->redirect(array('action' => 'index'));
|
|
|
|
<?php else: ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->flash(__('The <?php echo strtolower($singularHumanName); ?> has been saved.'), array('action' => 'index'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
} else {
|
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('The <?php echo strtolower($singularHumanName); ?> could not be saved. Please, try again.'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
}
|
2010-12-12 17:37:02 +00:00
|
|
|
} else {
|
2010-12-27 20:34:56 +00:00
|
|
|
$this->request->data = $this-><?php echo $currentModelName; ?>->read(null, $id);
|
2009-07-01 04:24:20 +00:00
|
|
|
}
|
|
|
|
<?php
|
|
|
|
foreach (array('belongsTo', 'hasAndBelongsToMany') as $assoc):
|
|
|
|
foreach ($modelObj->{$assoc} as $associationName => $relation):
|
|
|
|
if (!empty($associationName)):
|
|
|
|
$otherModelName = $this->_modelName($associationName);
|
|
|
|
$otherPluralName = $this->_pluralName($associationName);
|
|
|
|
echo "\t\t\${$otherPluralName} = \$this->{$currentModelName}->{$otherModelName}->find('list');\n";
|
|
|
|
$compact[] = "'{$otherPluralName}'";
|
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endforeach;
|
|
|
|
if (!empty($compact)):
|
|
|
|
echo "\t\t\$this->set(compact(".join(', ', $compact)."));\n";
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
}
|
|
|
|
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $admin ?>delete method
|
|
|
|
*
|
2012-05-09 22:28:02 +00:00
|
|
|
* @throws MethodNotAllowedException
|
|
|
|
* @throws NotFoundException
|
2011-01-20 00:22:50 +00:00
|
|
|
* @param string $id
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function <?php echo $admin; ?>delete($id = null) {
|
2012-08-24 23:39:19 +00:00
|
|
|
$this->request->onlyAllow('post', 'delete');
|
2010-12-12 17:37:02 +00:00
|
|
|
$this-><?php echo $currentModelName; ?>->id = $id;
|
|
|
|
if (!$this-><?php echo $currentModelName; ?>->exists()) {
|
|
|
|
throw new NotFoundException(__('Invalid <?php echo strtolower($singularHumanName); ?>'));
|
2009-07-01 04:24:20 +00:00
|
|
|
}
|
2010-12-12 17:37:02 +00:00
|
|
|
if ($this-><?php echo $currentModelName; ?>->delete()) {
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('<?php echo ucfirst(strtolower($singularHumanName)); ?> deleted'));
|
2011-12-01 07:21:31 +00:00
|
|
|
$this->redirect(array('action' => 'index'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php else: ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->flash(__('<?php echo ucfirst(strtolower($singularHumanName)); ?> deleted'), array('action' => 'index'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
}
|
|
|
|
<?php if ($wannaUseSession): ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->Session->setFlash(__('<?php echo ucfirst(strtolower($singularHumanName)); ?> was not deleted'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php else: ?>
|
2010-05-02 21:53:42 +00:00
|
|
|
$this->flash(__('<?php echo ucfirst(strtolower($singularHumanName)); ?> was not deleted'), array('action' => 'index'));
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
$this->redirect(array('action' => 'index'));
|
2012-05-09 22:28:02 +00:00
|
|
|
}
|