2011-10-28 13:02:22 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2011-10-28 18:49:36 -04:00
|
|
|
* Dashboard controller
|
2011-10-28 13:02:22 -04:00
|
|
|
* @inherits Controller
|
|
|
|
|
* @access public
|
|
|
|
|
*/
|
|
|
|
|
|
2011-10-28 18:49:36 -04:00
|
|
|
class Dashboard extends Controller {
|
2011-10-28 13:02:22 -04:00
|
|
|
/**
|
|
|
|
|
* getting default list
|
2011-10-28 18:49:36 -04:00
|
|
|
* @param object $httpData
|
2011-10-28 13:02:22 -04:00
|
|
|
*/
|
2011-10-28 18:49:36 -04:00
|
|
|
public function index($httpData) {
|
2011-10-28 13:02:22 -04:00
|
|
|
$this->includeExtJS('dashboard/index');
|
|
|
|
|
$this->includeExtJSLib('ux/portal');
|
2011-10-28 18:49:36 -04:00
|
|
|
G::RenderPage('publish', 'extJs');
|
|
|
|
|
}
|
2011-10-28 13:02:22 -04:00
|
|
|
|
2011-10-28 18:49:36 -04:00
|
|
|
public function dashletsList() {
|
|
|
|
|
echo 'dashletsList';
|
2011-10-28 13:02:22 -04:00
|
|
|
G::RenderPage('publish', 'extJs');
|
|
|
|
|
}
|
2011-10-28 18:49:36 -04:00
|
|
|
|
2011-10-28 13:02:22 -04:00
|
|
|
}
|