function _varbase_magic_get_views_display in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3
1 call to _varbase_magic_get_views_display()
- _varbase_slideshow_form_alter in modules/
starter_kits/ varbase_fpp/ varbase_fpp.module
File
- modules/
custom/ varbase_magic/ includes/ common.inc, line 15
Code
function _varbase_magic_get_views_display($view_name) {
// Get the view code for varbase_content_panes_slideshow view
$view = views_get_view($view_name);
// get all the displays in the varbase_content_panes_slideshow view
$views_diplay = array();
foreach ($view->display as $machine_name => &$display) {
$views_diplay[$machine_name] = t($display->display_title);
}
// Remove the master display
unset($views_diplay['default']);
return $views_diplay;
}