function views_views_tabs in Views (for Drupal 7) 5
Implementation of hook_views_tabs().
File
- ./
views.module, line 144
Code
function views_views_tabs($op) {
switch ($op) {
case 'names':
return array(
'edit',
'view',
'clone',
'export',
'add',
);
break;
}
}