CC-3380 Better names for items in the System menu
This commit is contained in:
parent
59b7f4ab56
commit
d250e2a297
|
@ -54,28 +54,27 @@ $pages = array(
|
||||||
'controller' => 'Preference'
|
'controller' => 'Preference'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'label' => 'Manage Users',
|
'label' => 'Users',
|
||||||
'module' => 'default',
|
'module' => 'default',
|
||||||
'controller' => 'user',
|
'controller' => 'user',
|
||||||
'action' => 'add-user',
|
'action' => 'add-user',
|
||||||
'resource' => 'user'
|
'resource' => 'user'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'label' => 'Manage Media Folders',
|
'label' => 'Media Folders',
|
||||||
'module' => 'default',
|
'module' => 'default',
|
||||||
'controller' => 'Preference',
|
'controller' => 'Preference',
|
||||||
'action' => 'directory-config',
|
'action' => 'directory-config',
|
||||||
'id' => 'manage_folder'
|
'id' => 'manage_folder'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'label' => 'Stream Settings',
|
'label' => 'Streams',
|
||||||
'module' => 'default',
|
'module' => 'default',
|
||||||
'controller' => 'Preference',
|
'controller' => 'Preference',
|
||||||
'action' => 'stream-setting'
|
'action' => 'stream-setting'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'label' =>
|
'label' => 'Support Feedback',
|
||||||
Application_Model_Preference::GetPlanLevel() == 'disabled'?'Support Settings':'Station Information Settings',
|
|
||||||
'module' => 'default',
|
'module' => 'default',
|
||||||
'controller' => 'Preference',
|
'controller' => 'Preference',
|
||||||
'action' => 'support-setting'
|
'action' => 'support-setting'
|
||||||
|
|
|
@ -111,7 +111,7 @@ class PreferenceController extends Zend_Controller_Action
|
||||||
$privacyChecked = true;
|
$privacyChecked = true;
|
||||||
}
|
}
|
||||||
$this->view->privacyChecked = $privacyChecked;
|
$this->view->privacyChecked = $privacyChecked;
|
||||||
$this->view->section_title = Application_Model_Preference::GetPlanLevel() == 'disabled'?'Support Settings':'Station Information Settings';
|
$this->view->section_title = 'Support Feedback';
|
||||||
$this->view->form = $form;
|
$this->view->form = $form;
|
||||||
//$form->render($this->view);
|
//$form->render($this->view);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue