creating templates for validation.
This commit is contained in:
parent
19ba788bae
commit
69afc715d1
24 changed files with 1552 additions and 82 deletions
|
@ -38,6 +38,15 @@ define('MDATA_KEY_CUE_OUT' , 'cueout');
|
|||
define('UI_MDATA_VALUE_FORMAT_FILE' , 'File');
|
||||
define('UI_MDATA_VALUE_FORMAT_STREAM' , 'live stream');
|
||||
|
||||
//Constants for playout history template fields
|
||||
define('TEMPLATE_DATE', 'date');
|
||||
define('TEMPLATE_TIME', 'time');
|
||||
define('TEMPLATE_DATETIME', 'datetime');
|
||||
define('TEMPLATE_STRING', 'string');
|
||||
define('TEMPLATE_BOOLEAN', 'boolean');
|
||||
define('TEMPLATE_INT', 'integer');
|
||||
define('TEMPLATE_FLOAT', 'float');
|
||||
|
||||
// Session Keys
|
||||
define('UI_PLAYLISTCONTROLLER_OBJ_SESSNAME', 'PLAYLISTCONTROLLER_OBJ');
|
||||
/*define('UI_PLAYLIST_SESSNAME', 'PLAYLIST');
|
||||
|
|
|
@ -79,13 +79,6 @@ $pages = array(
|
|||
'action' => 'index',
|
||||
'resource' => 'systemstatus'
|
||||
),
|
||||
array(
|
||||
'label' => _('Playout History'),
|
||||
'module' => 'default',
|
||||
'controller' => 'playouthistory',
|
||||
'action' => 'index',
|
||||
'resource' => 'playouthistory'
|
||||
),
|
||||
array(
|
||||
'label' => _('Listener Stats'),
|
||||
'module' => 'default',
|
||||
|
@ -95,6 +88,27 @@ $pages = array(
|
|||
)
|
||||
)
|
||||
),
|
||||
array(
|
||||
'label' => _('History'),
|
||||
'uri' => '#',
|
||||
'resource' => 'playouthistory',
|
||||
'pages' => array(
|
||||
array(
|
||||
'label' => _('Playout History'),
|
||||
'module' => 'default',
|
||||
'controller' => 'playouthistory',
|
||||
'action' => 'index',
|
||||
'resource' => 'playouthistory'
|
||||
),
|
||||
array(
|
||||
'label' => _('History Templates'),
|
||||
'module' => 'default',
|
||||
'controller' => 'playouthistory',
|
||||
'action' => 'template',
|
||||
'resource' => 'playouthistory'
|
||||
),
|
||||
)
|
||||
),
|
||||
array(
|
||||
'label' => _('Help'),
|
||||
'uri' => '#',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue