Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions application/libraries/Datatables.php
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,24 @@ public function last_query()
{
return $this->ci->db->last_query();
}

/**
* Starts a new group by adding an opening parenthesis to the WHERE clause of the query.
* @return type
*/
public function group_start()
{
return $this->ci->db->group_start();
}

/**
* Ends the current group by adding an closing parenthesis to the WHERE clause of the query.
* @return type
*/
public function group_end()
{
return $this->ci->db ->group_end();
}
}
/* End of file Datatables.php */
/* Location: ./application/libraries/Datatables.php */