You are here

views_handler_sort_hosting_package_site_count.inc in Hosting 6.2

File

package/views/views_handler_sort_hosting_package_site_count.inc
View source
<?php

/**
 * Sort handler for package site counts.
 */
class views_handler_sort_hosting_package_site_count extends views_handler_sort {

  /**
   * Called to add the sort to a query.
   */
  function query() {

    // Add the field.
    $this->query
      ->add_orderby(NULL, NULL, $this->options['order'], $this->field);
  }

}

Classes

Namesort descending Description
views_handler_sort_hosting_package_site_count Sort handler for package site counts.