Merged in bugfix/PMCORE-3009 (pull request #7921)
PMCORE-3009 Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
@@ -239,6 +239,11 @@ class Applications
|
|||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function for get all cases
|
||||||
|
*
|
||||||
|
* @deprecated Class deprecated in Release 3.6.x
|
||||||
|
*/
|
||||||
public function getAll(
|
public function getAll(
|
||||||
$userUid,
|
$userUid,
|
||||||
$start = null,
|
$start = null,
|
||||||
|
|||||||
@@ -1,33 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* AppCacheView.php
|
* AppCacheView.php
|
||||||
* @package workflow.engine.classes.model
|
* @deprecated Class deprecated in Release 3.6.x
|
||||||
*/
|
|
||||||
|
|
||||||
//require_once ('classes/model/om/BaseAppCacheView.php');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Skeleton subclass for representing a row from the 'APP_CACHE_VIEW' table.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* You should add additional methods to this class to meet the
|
|
||||||
* application requirements. This class will only be generated as
|
|
||||||
* long as it does not already exist in the output directory.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
//require_once ('classes/model/Application.php');
|
|
||||||
//require_once ('classes/model/AppDelegation.php');
|
|
||||||
//require_once ('classes/model/AppDelay.php');
|
|
||||||
//require_once ('classes/model/Task.php');
|
|
||||||
//require_once ('classes/model/AdditionalTables.php');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @package workflow.engine.classes.model
|
|
||||||
* @access public
|
|
||||||
*/
|
*/
|
||||||
class AppCacheView extends BaseAppCacheView
|
class AppCacheView extends BaseAppCacheView
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
|
||||||
* AppCacheViewPeer.php
|
|
||||||
* @package workflow.engine.classes.model
|
|
||||||
*/
|
|
||||||
|
|
||||||
// include base peer class
|
// include base peer class
|
||||||
require_once 'classes/model/om/BaseAppCacheViewPeer.php';
|
require_once 'classes/model/om/BaseAppCacheViewPeer.php';
|
||||||
@@ -10,17 +6,9 @@
|
|||||||
// include object class
|
// include object class
|
||||||
include_once 'classes/model/AppCacheView.php';
|
include_once 'classes/model/AppCacheView.php';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skeleton subclass for performing query and update operations on the 'APP_CACHE_VIEW' table.
|
* AppCacheViewPeer.php
|
||||||
*
|
* @deprecated Class deprecated in Release 3.6.x
|
||||||
*
|
|
||||||
*
|
|
||||||
* You should add additional methods to this class to meet the
|
|
||||||
* application requirements. This class will only be generated as
|
|
||||||
* long as it does not already exist in the output directory.
|
|
||||||
*
|
|
||||||
* @package workflow.engine.classes.model
|
|
||||||
*/
|
*/
|
||||||
class AppCacheViewPeer extends BaseAppCacheViewPeer
|
class AppCacheViewPeer extends BaseAppCacheViewPeer
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Class deprecated in Release 3.6.x
|
||||||
|
*/
|
||||||
class Content extends BaseContent
|
class Content extends BaseContent
|
||||||
{
|
{
|
||||||
public $langs;
|
public $langs;
|
||||||
|
|||||||
@@ -1,46 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
|
||||||
* ContentPeer.php
|
|
||||||
* @package workflow.engine.classes.model
|
|
||||||
*
|
|
||||||
* ProcessMaker Open Source Edition
|
|
||||||
* Copyright (C) 2004 - 2011 Colosa Inc.
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Affero General Public License as
|
|
||||||
* published by the Free Software Foundation, either version 3 of the
|
|
||||||
* License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Affero General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*
|
|
||||||
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
|
|
||||||
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// include base peer class
|
|
||||||
//require_once 'classes/model/om/BaseContentPeer.php';
|
|
||||||
|
|
||||||
// include object class
|
|
||||||
//include_once 'classes/model/Content.php';
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skeleton subclass for performing query and update operations on the 'CONTENT' table.
|
* @deprecated Class deprecated in Release 3.6.x
|
||||||
*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* You should add additional methods to this class to meet the
|
|
||||||
* application requirements. This class will only be generated as
|
|
||||||
* long as it does not already exist in the output directory.
|
|
||||||
*
|
|
||||||
* @package workflow.engine.classes.model
|
|
||||||
*/
|
*/
|
||||||
class ContentPeer extends BaseContentPeer
|
class ContentPeer extends BaseContentPeer
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user