You are here

hosting_package_handler_sort_site_count.inc in Hosting 7.3

File

package/includes/views/handlers/hosting_package_handler_sort_site_count.inc
View source
<?php

/**
 * Sort handler for package site counts.
 */
class hosting_package_handler_sort_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
hosting_package_handler_sort_site_count Sort handler for package site counts.