Skeleton player form/view/controller
This commit is contained in:
parent
a1436bfebb
commit
c261182c8f
6 changed files with 82 additions and 1 deletions
|
@ -36,7 +36,8 @@ $ccAcl->add(new Zend_Acl_Resource('library'))
|
|||
->add(new Zend_Acl_Resource('rest:media'))
|
||||
->add(new Zend_Acl_Resource('rest:show-image'))
|
||||
->add(new Zend_Acl_Resource('billing'))
|
||||
->add(new Zend_Acl_Resource('provisioning'));
|
||||
->add(new Zend_Acl_Resource('provisioning'))
|
||||
->add(new Zend_Acl_Resource('embeddableplayer'));
|
||||
|
||||
/** Creating permissions */
|
||||
$ccAcl->allow('G', 'index')
|
||||
|
@ -68,6 +69,7 @@ $ccAcl->allow('G', 'index')
|
|||
->allow('A', 'user')
|
||||
->allow('A', 'systemstatus')
|
||||
->allow('A', 'preference')
|
||||
->allow('A', 'embeddableplayer')
|
||||
->allow('S', 'billing');
|
||||
|
||||
|
||||
|
|
|
@ -85,6 +85,13 @@ $pages = array(
|
|||
'controller' => 'listenerstat',
|
||||
'action' => 'index',
|
||||
'resource' => 'listenerstat'
|
||||
),
|
||||
array(
|
||||
'label' => _('Embeddable Player'),
|
||||
'module' => 'default',
|
||||
'controller' => 'embeddableplayer',
|
||||
'action' => 'index',
|
||||
'resource' => 'embeddableplayer'
|
||||
)
|
||||
)
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue