BUG 0000 adding dashboard initial module
This commit is contained in:
23
workflow/engine/controllers/dashboard.php
Normal file
23
workflow/engine/controllers/dashboard.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Dashborad controller
|
||||
* @inherits Controller
|
||||
* @access public
|
||||
*/
|
||||
|
||||
class Dashboard extends Controller
|
||||
{
|
||||
/**
|
||||
* getting default list
|
||||
* @param string $httpData->PRO_UID (opional)
|
||||
*/
|
||||
public function index($httpData)
|
||||
{
|
||||
$this->includeExtJS('dashboard/index');
|
||||
$this->includeExtJSLib('ux/portal');
|
||||
//$this->setView('dashboard/index');
|
||||
|
||||
//render content
|
||||
G::RenderPage('publish', 'extJs');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user