phpcs: Fix ObjectsController

This commit is contained in:
Markus Frosch 2018-11-27 11:00:14 +01:00
parent 16252822cf
commit 91a62ffbee

View File

@ -240,23 +240,23 @@ abstract class ObjectsController extends ActionController
$this->translate('All your %s Apply Rules'), $this->translate('All your %s Apply Rules'),
$tType $tType
); );
$this->actions()/*->add( $this->actions()
$this->getBackToDashboardLink() //->add($this->getBackToDashboardLink())
)*/->add( ->add(
Link::create( Link::create(
$this->translate('Add'), $this->translate('Add'),
"director/$type/add", "director/$type/add",
['type' => 'apply'], ['type' => 'apply'],
[ [
'title' => sprintf( 'title' => sprintf(
$this->translate('Create a new %s Apply Rule'), $this->translate('Create a new %s Apply Rule'),
$tType $tType
), ),
'class' => 'icon-plus', 'class' => 'icon-plus',
'data-base-target' => '_next' 'data-base-target' => '_next'
] ]
) )
); );
$table = new ApplyRulesTable($this->db()); $table = new ApplyRulesTable($this->db());
$table->setType($this->getType()); $table->setType($this->getType());