Change menu item order and change trial box position

This commit is contained in:
drigato 2015-08-20 10:56:11 -04:00
parent b718171729
commit d9455f86ea
2 changed files with 48 additions and 48 deletions

View File

@ -8,6 +8,13 @@
* the navigation container below. * the navigation container below.
*/ */
$pages = array( $pages = array(
array(
'label' => "<i class='icon-globe icon-white'></i>"._('Radio Page'),
'uri' => '/',
'resource' => '',
'pages' => array(
)
),
array( array(
'label' => "<i class='icon-calendar icon-white'></i>"._('Calendar'), 'label' => "<i class='icon-calendar icon-white'></i>"._('Calendar'),
'module' => 'default', 'module' => 'default',
@ -16,10 +23,24 @@ $pages = array(
'resource' => 'schedule' 'resource' => 'schedule'
), ),
array( array(
'label' => "<i class='icon-globe icon-white'></i>"._('Radio Page'), 'label' => "<i class='icon-wrench icon-white'></i>"._('Widgets'),
'uri' => '/', 'module' => 'default',
'resource' => '', 'controller' => 'embeddablewidgets',
'action' => 'player',
'title' => 'Widgets',
'pages' => array( 'pages' => array(
array(
'label' => _('Player'),
'module' => 'default',
'controller' => 'embeddablewidgets',
'action' => 'player',
),
array(
'label' => _('Weekly Schedule'),
'module' => 'default',
'controller' => 'embeddablewidgets',
'action' => 'schedule',
)
) )
), ),
array( array(
@ -88,23 +109,32 @@ $pages = array(
) )
), ),
array( array(
'label' => "<i class='icon-wrench icon-white'></i>"._('Widgets'), 'label' => "<i class='icon-briefcase icon-white'></i>"._('Billing'),
'module' => 'default', 'controller' => 'billing',
'controller' => 'embeddablewidgets', 'action' => 'client',
'action' => 'player', 'resource' => 'billing',
'title' => 'Widgets', 'title' => 'Billing',
'pages' => array( 'pages' => array(
array( array(
'label' => _('Player'), 'label' => _('Account Details'),
'module' => 'default', 'module' => 'default',
'controller' => 'embeddablewidgets', 'controller' => 'billing',
'action' => 'player', 'action' => 'client',
'resource' => 'billing'
), ),
array( array(
'label' => _('Weekly Schedule'), 'label' => _('Account Plans'),
'module' => 'default', 'module' => 'default',
'controller' => 'embeddablewidgets', 'controller' => 'billing',
'action' => 'schedule', 'action' => 'upgrade',
'resource' => 'billing'
),
array(
'label' => _('View Invoices'),
'module' => 'default',
'controller' => 'billing',
'action' => 'invoices',
'resource' => 'billing'
) )
) )
), ),
@ -149,36 +179,6 @@ $pages = array(
) )
) )
), ),
array(
'label' => "<i class='icon-user icon-white'></i>"._('Billing'),
'controller' => 'billing',
'action' => 'client',
'resource' => 'billing',
'title' => 'Billing',
'pages' => array(
array(
'label' => _('Account Details'),
'module' => 'default',
'controller' => 'billing',
'action' => 'client',
'resource' => 'billing'
),
array(
'label' => _('Account Plans'),
'module' => 'default',
'controller' => 'billing',
'action' => 'upgrade',
'resource' => 'billing'
),
array(
'label' => _('View Invoices'),
'module' => 'default',
'controller' => 'billing',
'action' => 'invoices',
'resource' => 'billing'
)
)
)
); );

View File

@ -2994,8 +2994,8 @@ tfoot tr th {
height:38px; height:38px;
display:block; display:block;
position:fixed; position:fixed;
left:20px; left:160px;
bottom:10px; bottom:0px;
background-color:#222; background-color:#222;
background-color:rgba(0, 0, 0, 0.7); background-color:rgba(0, 0, 0, 0.7);
z-index:101; z-index:101;