BUG 000 Second commit for the dashboards

This commit is contained in:
Julio Cesar Laura
2011-10-28 18:49:36 -04:00
parent 89b9dbab56
commit 8aa5e07358
3 changed files with 13 additions and 189 deletions

View File

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