Fixed issue with customer filter popover and added confirmation for removal

This commit is contained in:
Nick Blackledge
2016-02-13 22:06:23 +11:00
parent 77ae92b09b
commit 71dc812ae6
3 changed files with 35 additions and 1 deletions

View File

@@ -56,6 +56,23 @@ class Customfilter extends Base
$this->index($values, $errors);
}
/**
* Confirmation dialog before removing a custom filter
*
* @access public
*/
public function confirm()
{
$project = $this->getProject();
$filter = $this->customFilter->getById($this->request->getIntegerParam('filter_id'));
$this->response->html($this->helper->layout->project('custom_filter/remove', array(
'project' => $project,
'filter' => $filter,
'title' => t('Remove a custom filter')
)));
}
/**
* Remove a custom filter
*