Ejemplo n.º 1
0
 /**
  * Get table data to show on current page
  * @see SortableTable#get_table_data
  */
 public function get_table_data($from = 1, $per_page = null, $column = null, $direction = null, $sort = true)
 {
     $content = TableSort::sort_table_config($this->table_data, $this->column, $this->direction == 'ASC' ? SORT_ASC : SORT_DESC, $this->column_show, $this->column_order, SORT_REGULAR, $this->doc_filter);
     return array_slice($content, $from, $this->per_page);
 }