Files
luos/workflow/engine/controllers/dashboard.php
2011-10-28 18:50:27 -04:00

24 lines
456 B
PHP

<?php
/**
* Dashboard controller
* @inherits Controller
* @access public
*/
class Dashboard extends Controller {
/**
* getting default list
* @param object $httpData
*/
public function index($httpData) {
$this->includeExtJS('dashboard/index');
$this->includeExtJSLib('ux/portal');
G::RenderPage('publish', 'extJs');
}
public function dashletsList() {
echo 'dashletsList';
G::RenderPage('publish', 'extJs');
}
}