function views_plugin_style_table::build_sort_post

Add our actual sort criteria.

Overrides views_plugin_style::build_sort_post

File

plugins/views_plugin_style_table.inc, line 71

Class

views_plugin_style_table
Style plugin to render each item as a row in a table.

Code

public function build_sort_post() {
    if (!isset($_GET['order'])) {
        // Check for a 'default' clicksort. If there isn't one, exit gracefully.
        if (empty($this->options['default'])) {
            return;
        }
        $sort = $this->options['default'];
        if (!empty($this->options['info'][$sort]['default_sort_order'])) {
            $this->order = $this->options['info'][$sort]['default_sort_order'];
        }
        else {
            $this->order = !empty($this->options['order']) ? $this->options['order'] : 'asc';
        }
    }
    else {
        $sort = $_GET['order'];
        // Store the $order for later use.
        $this->order = !empty($_GET['sort']) ? strtolower($_GET['sort']) : 'asc';
    }
    // If a sort we don't know anything about gets through, exit gracefully.
    if (empty($this->view->field[$sort])) {
        return;
    }
    // Ensure $this->order is valid.
    if ($this->order != 'asc' && $this->order != 'desc') {
        $this->order = 'asc';
    }
    // Store the $sort for later use.
    $this->active = $sort;
    // Tell the field to click sort.
    $this->view->field[$sort]
        ->click_sort($this->order);
}