initial commit from rev. 632
This commit is contained in:
36
workflow/engine/plugins/openFlash.php
Normal file
36
workflow/engine/plugins/openFlash.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
G::LoadClass( "plugin");
|
||||
|
||||
class openFlashPlugin extends PMPlugin
|
||||
{
|
||||
function openFlashPlugin($sNamespace, $sFilename = null)
|
||||
{
|
||||
$res = parent::PMPlugin($sNamespace, $sFilename);
|
||||
$this->sFriendlyName = 'openFlash Plugin';
|
||||
$this->sDescription = 'Charts Plugin, with this plugin you can see many differents charts using interactive flash charts for ProcessMaker';
|
||||
$this->sPluginFolder = 'openFlash';
|
||||
$this->sSetupPage = 'setupPage';
|
||||
$this->aWorkspaces = array ( );
|
||||
$this->aWorkspaces = array ( 'dev');
|
||||
$this->iVersion = 0.45;
|
||||
return $res;
|
||||
}
|
||||
|
||||
function setup()
|
||||
{
|
||||
$this->registerDashboard();
|
||||
}
|
||||
|
||||
function install()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$oPluginRegistry =& PMPluginRegistry::getSingleton();
|
||||
$oPluginRegistry->registerPlugin('openFlash', __FILE__);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user