/**
  * Reset filter
  * (note: this function existed before data table filter has been introduced
  */
 function resetFilterObject()
 {
     include_once "./Services/User/classes/class.ilUserTableGUI.php";
     $utab = new ilUserTableGUI($this, "view");
     $utab->resetOffset();
     $utab->resetFilter();
     // from "old" implementation
     $this->viewObject(TRUE);
 }
示例#2
0
 /**
  * Reset filter
  * (note: this function existed before data table filter has been introduced
  */
 protected function resetFilter()
 {
     $table = new ilUserTableGUI($this, "index", ilUserTableGUI::MODE_LOCAL_USER);
     $table->resetOffset();
     $table->resetFilter();
     $this->index();
 }
 /**
  * Reset filter
  * (note: this function existed before data table filter has been introduced
  */
 protected function resetFilterObject()
 {
     include_once "./Services/User/classes/class.ilUserTableGUI.php";
     $utab = new ilUserTableGUI($this, "listUsers", ilUserTableGUI::MODE_LOCAL_USER);
     $utab->resetOffset();
     $utab->resetFilter();
     // from "old" implementation
     $this->listUsersObject();
 }