FilterEditor: addTo method for special operations

Removed obsolete mark function
This commit is contained in:
Thomas Gelf 2014-11-15 23:27:58 +01:00
parent ee16391720
commit 8858069514

View File

@ -28,6 +28,8 @@ class FilterEditor extends AbstractWidget
protected $url; protected $url;
protected $addTo;
protected $preserveParams = array(); protected $preserveParams = array();
protected $ignoreParams = array(); protected $ignoreParams = array();
@ -131,9 +133,9 @@ class FilterEditor extends AbstractWidget
return $html; return $html;
} }
public function markIndex($idx) protected function addFilterToId($id)
{ {
$this->selectedIdx = $idx; $this->addTo = $id;
return $this; return $this;
} }