PMC-840
This commit is contained in:
@@ -6976,7 +6976,7 @@ class Cases
|
||||
return isset($row['DEL_INDEX']) ? $row['DEL_INDEX'] : 0;
|
||||
}
|
||||
|
||||
public function clearCaseSessionData()
|
||||
public static function clearCaseSessionData()
|
||||
{
|
||||
if (isset($_SESSION['APPLICATION'])) {
|
||||
unset($_SESSION['APPLICATION']);
|
||||
|
||||
@@ -22,7 +22,7 @@ class EnterpriseClass extends PMPlugin
|
||||
{
|
||||
}
|
||||
|
||||
public function enterpriseSystemUpdate($data) //$data = $oData
|
||||
public static function enterpriseSystemUpdate($data) //$data = $oData
|
||||
{
|
||||
if (count(glob(PATH_DATA_SITE . 'license/*.dat')) == 0) {
|
||||
return;
|
||||
|
||||
@@ -101,7 +101,7 @@ class AppDelay extends BaseAppDelay
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function isPaused($appUid, $delIndex)
|
||||
public static function isPaused($appUid, $delIndex)
|
||||
{
|
||||
$criteria = new Criteria('workflow');
|
||||
$criteria->add(AppDelayPeer::APP_UID, $appUid);
|
||||
|
||||
@@ -797,7 +797,7 @@ class AppDelegation extends BaseAppDelegation
|
||||
* @param integer $index, Index to review
|
||||
* @return array
|
||||
*/
|
||||
public function getCurrentUsers($appUid, $index)
|
||||
public static function getCurrentUsers($appUid, $index)
|
||||
{
|
||||
$oCriteria = new Criteria();
|
||||
$oCriteria->addSelectColumn(AppDelegationPeer::USR_UID);
|
||||
|
||||
@@ -1023,7 +1023,7 @@ class System
|
||||
*
|
||||
* @return array $skinListArray
|
||||
*/
|
||||
public function getSkingList()
|
||||
public static function getSkingList()
|
||||
{
|
||||
//Create Skins custom folder if it doesn't exists
|
||||
if (!is_dir(PATH_CUSTOM_SKINS)) {
|
||||
|
||||
@@ -409,7 +409,7 @@ class Server implements iAuthenticate
|
||||
return $this->server;
|
||||
}
|
||||
|
||||
public function getUserId()
|
||||
public static function getUserId()
|
||||
{
|
||||
return self::$userId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user