icon = ['image' => 'b_triggers', 'title' => __('Triggers')]; $this->links = [ 'text' => ['route' => '/database/triggers', 'params' => ['db' => null, 'table' => null]], 'icon' => ['route' => '/database/triggers', 'params' => ['db' => null, 'table' => null]], ]; $this->realName = 'triggers'; $newLabel = _pgettext('Create new trigger', 'New'); $new = NodeFactory::getInstanceForNewNode($newLabel, 'new_trigger italics'); $new->icon = ['image' => 'b_trigger_add', 'title' => $newLabel]; $new->links = [ 'text' => ['route' => '/database/triggers', 'params' => ['add_item' => 1, 'db' => null]], 'icon' => ['route' => '/database/triggers', 'params' => ['add_item' => 1, 'db' => null]], ]; $this->addChild($new); } }