You are here

class views_handler_field_hosting_platform_sites in Hosting 6.2

Hierarchy

Expanded class hierarchy of views_handler_field_hosting_platform_sites

1 string reference to 'views_handler_field_hosting_platform_sites'
hosting_platform_views_data in platform/hosting_platform.views.inc
Implements hook_views_data().

File

platform/views_handler_field_hosting_platform_sites.inc, line 3

View source
class views_handler_field_hosting_platform_sites extends views_handler_field {
  function render($values) {
    $value = $values->{$this->field_alias};
    return hosting_site_count($value, array(
      HOSTING_SITE_ENABLED,
      HOSTING_SITE_DISABLED,
      HOSTING_SITE_QUEUED,
    ));
  }

}

Members