You are here

function views_handler_field_hosting_platform_sites::render in Hosting 6.2

File

platform/views_handler_field_hosting_platform_sites.inc, line 4

Class

views_handler_field_hosting_platform_sites

Code

function render($values) {
  $value = $values->{$this->field_alias};
  return hosting_site_count($value, array(
    HOSTING_SITE_ENABLED,
    HOSTING_SITE_DISABLED,
    HOSTING_SITE_QUEUED,
  ));
}