chg: [decaying:(en|dis)able] Converted empty form with built-in cakephp

`postLink`
pull/5032/head
mokaddem 2019-09-12 13:31:23 +02:00
parent 9b7f997443
commit 917b374921
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,5 @@
<div>
<?php
echo $this->Form->create('DecayingModel', array('url' => '/DecayingModel/disable/' . $model['id']));
echo $this->Form->end();
echo $this->Form->postLink(__('Disable model'), '/DecayingModel/disable/' . h($model['id']))
?>
</div>

View File

@ -1,6 +1,5 @@
<div>
<?php
echo $this->Form->create('DecayingModel', array('url' => '/DecayingModel/enable/' . $model['id']));
echo $this->Form->end();
echo $this->Form->postLink(__('Enable model'), '/DecayingModel/enable/' . h($model['id']))
?>
</div>