Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
views_ui_default_load($name)
contributions/views/views_ui.module, line 286
Specialized menu callback to load a view that is only a default view.
<?php
function views_ui_default_load($name) {
$view = views_get_view($name);
if ($view->type == t('Default')) {
return $view;
}
return FALSE;
}
?>