Files
luos/workflow/engine/methods/strategicDashboard/main.php

21 lines
695 B
PHP
Raw Normal View History

2015-03-26 17:37:32 -04:00
<?php
2017-10-05 15:01:09 -04:00
$RBAC->requirePermissions('PM_DASHBOARD');
2015-04-02 13:25:13 -04:00
$licensedFeatures = & PMLicensedFeatures::getSingleton();
if (!$licensedFeatures->verifyfeature('r19Vm5DK1UrT09MenlLYjZxejlhNUZ1b1NhV0JHWjBsZEJ6dnpJa3dTeWVLVT0=')) {
2017-10-05 15:01:09 -04:00
G::SendTemporalMessage('ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels');
G::header('location: ../login/login');
2015-04-02 13:25:13 -04:00
die;
}
2015-03-26 17:37:32 -04:00
$G_MAIN_MENU = 'processmaker';
$G_ID_MENU_SELECTED = 'DASHBOARD+';
$G_PUBLISH = new Publisher();
2017-10-05 15:01:09 -04:00
$G_PUBLISH->AddContent('view', 'strategicDashboard/load');
$oHeadPublisher = & headPublisher::getSingleton();
$oHeadPublisher->addScriptFile('/jscore/src/PM.js');
$oHeadPublisher->addScriptFile('/jscore/src/Sessions.js');
2017-10-05 15:01:09 -04:00
G::RenderPage('publish');
2015-03-26 17:37:32 -04:00