120 lines
3.5 KiB
PHP
120 lines
3.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Navigation container (config/array)
|
|
|
|
* Each element in the array will be passed to
|
|
* Zend_Navigation_Page::factory() when constructing
|
|
* the navigation container below.
|
|
*/
|
|
$pages = array(
|
|
array(
|
|
'label' => 'Now Playing',
|
|
'module' => 'default',
|
|
'controller' => 'Nowplaying',
|
|
'action' => 'index',
|
|
'resource' => 'nowplaying'
|
|
),
|
|
array(
|
|
'label' => 'Add Media',
|
|
'module' => 'default',
|
|
'controller' => 'Plupload',
|
|
'action' => 'index',
|
|
'resource' => 'plupload'
|
|
),
|
|
array(
|
|
'label' => 'Playlist Builder',
|
|
'module' => 'default',
|
|
'controller' => 'Library',
|
|
'action' => 'index',
|
|
'resource' => 'library'
|
|
),
|
|
array(
|
|
'label' => 'Calendar',
|
|
'module' => 'default',
|
|
'controller' => 'Schedule',
|
|
'action' => 'index',
|
|
'resource' => 'schedule'
|
|
),
|
|
array(
|
|
'label' => 'System',
|
|
'uri' => '#',
|
|
'resource' => 'preference',
|
|
'pages' => array(
|
|
array(
|
|
'label' => 'Preferences',
|
|
'module' => 'default',
|
|
'controller' => 'Preference'
|
|
),
|
|
array(
|
|
'label' => 'Manage Users',
|
|
'module' => 'default',
|
|
'controller' => 'user',
|
|
'action' => 'add-user',
|
|
'resource' => 'user'
|
|
),
|
|
array(
|
|
'label' => 'Manage Media Folders',
|
|
'module' => 'default',
|
|
'controller' => 'Preference',
|
|
'action' => 'directory-config',
|
|
'id' => 'manage_folder'
|
|
),
|
|
array(
|
|
'label' => 'Stream Settings',
|
|
'module' => 'default',
|
|
'controller' => 'Preference',
|
|
'action' => 'stream-setting'
|
|
),
|
|
array(
|
|
'label' =>
|
|
Application_Model_Preference::GetPlanLevel() == 'disabled'?'Support Settings':'Station Information Settings',
|
|
'module' => 'default',
|
|
'controller' => 'Preference',
|
|
'action' => 'support-setting'
|
|
),
|
|
array(
|
|
'label' => 'Status',
|
|
'module' => 'default',
|
|
'controller' => 'systemstatus',
|
|
'action' => 'index',
|
|
'resource' => 'systemstatus'
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'label' => 'Help',
|
|
'uri' => '#',
|
|
'resource' => 'dashboard',
|
|
'pages' => array(
|
|
array(
|
|
'label' => 'Getting Started',
|
|
'module' => 'default',
|
|
'controller' => 'dashboard',
|
|
'action' => 'help',
|
|
'resource' => 'dashboard'
|
|
),
|
|
array(
|
|
'label' => 'User Manual',
|
|
'uri' => "http://www.sourcefabric.org/en/airtime/manuals/",
|
|
'target' => "_blank"
|
|
),
|
|
array(
|
|
'label' => 'About',
|
|
'module' => 'default',
|
|
'controller' => 'dashboard',
|
|
'action' => 'about',
|
|
'resource' => 'dashboard'
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
|
|
// Create container from array
|
|
$container = new Zend_Navigation($pages);
|
|
$container->id = "nav";
|
|
|
|
//store it in the registry:
|
|
Zend_Registry::set('Zend_Navigation', $container);
|