initial commit from rev. 632

This commit is contained in:
Erik Amaru Ortiz
2010-12-02 23:34:41 +00:00
commit 0525681d79
5410 changed files with 864427 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?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__);