BUG 000 Fix another bug in the home menu

This commit is contained in:
Julio Cesar Laura
2012-01-04 17:41:38 -04:00
parent 17af889464
commit a24cb843e8

View File

@@ -330,6 +330,28 @@ class taskExtendedProperty {
$this->sIcon = $sIcon;
}
}
/**
* @package workflow.engine.classes
*/
class dashboardPage {
var $sNamespace;
var $sPage;
var $sName;
var $sIcon;
/**
* This function is the constructor of the dashboardPage class
* param string $sNamespace
* param string $sPage
* @return void
*/
function __construct( $sNamespace, $sPage, $sName, $sIcon ) {
$this->sNamespace = $sNamespace;
$this->sPage = $sPage;
$this->sName = $sName;
$this->sIcon = $sIcon;
}
}
/**
* @package workflow.engine.classes
*/