Files
luos/workflow/engine/src/ProcessMaker/Plugins/Interfaces/DashboardPage.php
2017-08-08 15:08:34 -04:00

27 lines
572 B
PHP

<?php
namespace ProcessMaker\Plugins\Interfaces;
class DashboardPage
{
public $sNamespace;
public $sPage;
public $sName;
public $sIcon;
/**
* This function is the constructor of the dashboardPage class
* @param string $sNamespace
* @param string $sPage
* @param string $sName
* @param string $sIcon
*/
public function __construct($sNamespace, $sPage, $sName, $sIcon)
{
$this->sNamespace = $sNamespace;
$this->sPage = $sPage;
$this->sName = $sName;
$this->sIcon = $sIcon;
}
}