BUG 0000 adding dashboard initial module

This commit is contained in:
Erik Amaru Ortiz
2011-10-28 13:02:22 -04:00
parent 60d79ab34d
commit 89b9dbab56
7 changed files with 427 additions and 36 deletions

View 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');
}
}