Files
luos/workflow/engine/plugins/pmosCommunity.php
2010-12-02 23:34:41 +00:00

37 lines
912 B
PHP

<?php
G::LoadClass( "plugin");
class pmosCommunityPlugin extends PMPlugin
{
function pmosCommunityPlugin($sNamespace, $sFilename = null)
{
$res = parent::PMPlugin($sNamespace, $sFilename);
$this->sFriendlyName = 'PMOS Community Plugin';
$this->sDescription = 'Community Charts Plugin, with this plugin you can see many differents charts related to ProcessMaker Open Source Community';
$this->sPluginFolder = 'pmosCommunity';
$this->sSetupPage = 'setupPage';
$this->iVersion = 0.45;
$this->aWorkspaces = array ( 'os' );
return $res;
}
function setup()
{
//$this->registerTrigger( 10000, 'createCaseFolder' );
$this->registerDashboard();
}
function install()
{
}
}
$oPluginRegistry =& PMPluginRegistry::getSingleton();
$oPluginRegistry->registerPlugin('pmosCommunity', __FILE__);