Add namespace Processmaker\Core
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
use ProcessMaker\Core\System;
|
||||
use ProcessMaker\Plugins\PluginRegistry;
|
||||
|
||||
/**
|
||||
@@ -264,7 +265,7 @@ class Main extends Controller
|
||||
}
|
||||
|
||||
$this->setVar( 'logo_company', $this->getCompanyLogo() );
|
||||
$this->setVar( 'pmos_version', PmSystem::getVersion() );
|
||||
$this->setVar( 'pmos_version', System::getVersion() );
|
||||
|
||||
$footerText = 'Copyright © 2003-' . date( 'Y' ) . ' Colosa, Inc. All rights reserved.';
|
||||
$adviseText = 'Supplied free of charge with no support, certification, warranty,
|
||||
@@ -314,7 +315,7 @@ class Main extends Controller
|
||||
$this->includeExtJS( 'main/sysLogin' );
|
||||
|
||||
$this->setVar( 'logo_company', $this->getCompanyLogo() );
|
||||
$this->setVar( 'pmos_version', PmSystem::getVersion() );
|
||||
$this->setVar( 'pmos_version', System::getVersion() );
|
||||
|
||||
$footerText = G::LoadTranslation('ID_COPYRIGHT_FROM') . date( 'Y' ) . G::LoadTranslation('ID_COPYRIGHT_COL');
|
||||
$adviseText = G::LoadTranslation('ID_COLOSA_AND_CERTIFIED_PARTNERS');
|
||||
@@ -384,7 +385,7 @@ class Main extends Controller
|
||||
$template->assign( 'passwd', $newPass );
|
||||
$template->assign( 'poweredBy', G::loadTranslation( 'ID_PROCESSMAKER_SLOGAN1' ) );
|
||||
$template->assign( 'versionLabel', G::loadTranslation( 'ID_VERSION' ) );
|
||||
$template->assign( 'version', PmSystem::getVersion() );
|
||||
$template->assign( 'version', System::getVersion() );
|
||||
$template->assign( 'visit', G::loadTranslation( 'ID_VISIT' ) );
|
||||
|
||||
$template->assign( 'footer', '' );
|
||||
@@ -733,7 +734,7 @@ class Main extends Controller
|
||||
if (defined('SYSTEM_NAME')) {
|
||||
$systemName = SYSTEM_NAME;
|
||||
}
|
||||
$properties[] = array ($systemName. ' Ver.', PmSystem::getVersion() . $ee, $pmSection);
|
||||
$properties[] = array ($systemName. ' Ver.', System::getVersion() . $ee, $pmSection);
|
||||
$properties[] = array("PMUI JS Lib. Ver.", $pmuiVer, $pmSection);
|
||||
$properties[] = array("MAFE JS Lib. Ver.", $mafeVer, $pmSection);
|
||||
$properties[] = array("PM Dynaform JS Lib. Ver.", $pmdynaformVer, $pmSection);
|
||||
|
||||
Reference in New Issue
Block a user