SyncruleTable: add run link

refs #9731
This commit is contained in:
Thomas Gelf 2015-07-24 10:55:31 +02:00
parent e16dce9880
commit 6d9aaf73d9
1 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,16 @@ class SyncruleTable extends QuickTable
return $this->url('director/syncrule/add', array('id' => $row->id));
}
protected function renderAdditionalActions($row)
{
return $this->view->qlink(
'Run',
'director/syncrule/run',
array('id' => $row->id),
array('data-base-target' => '_main')
);
}
public function getTitles()
{
$view = $this->view();