function hosting_site_views_plugins in Hostmaster (Aegir) 6
File
- modules/
hosting/ site/ hosting_site.views.inc, line 125 - Hosting site views integration.
Code
function hosting_site_views_plugins() {
return array(
'style' => array(
'hosting_site_list' => array(
'title' => t('Site listing'),
'help' => t('Displays sites in a table.'),
'handler' => 'views_plugin_style_site_table',
'theme' => 'views_view_table',
'parent' => 'table',
'path' => drupal_get_path('module', 'hosting_site'),
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}