This commit is contained in:
Paula Quispe
2017-08-10 15:50:36 -04:00
parent 4afaa5c134
commit c2c5d0e4ba
20 changed files with 1 additions and 81 deletions

View File

@@ -91,8 +91,6 @@ class AppProxy extends HttpProxyController
);
}
//require_once ("classes/model/AppNotes.php");
$usrUid = isset( $_SESSION['USER_LOGGED'] ) ? $_SESSION['USER_LOGGED'] : "";
$appNotes = new AppNotes();
$response = $appNotes->getNotesList( $appUid, '', $httpData->start, $httpData->limit );
@@ -113,9 +111,6 @@ class AppProxy extends HttpProxyController
*/
function postNote ($httpData)
{
//require_once ("classes/model/AppNotes.php");
//extract(getExtJSParams());
if (isset( $httpData->appUid ) && trim( $httpData->appUid ) != "") {
$appUid = $httpData->appUid;
} else {

View File

@@ -180,8 +180,6 @@ class Home extends Controller
public function indexSingle ($httpData)
{
require_once 'classes/model/Step.php';
$step = new Step();
$solrEnabled = false;
@@ -377,7 +375,6 @@ class Home extends Controller
$sort = "APP_CACHE_VIEW.APP_NUMBER",
$category = null)
{
require_once ("classes/model/AppNotes.php");
$appNotes = new AppNotes();
@@ -638,7 +635,6 @@ class Home extends Controller
function getCategoryArray ()
{
require_once 'classes/model/ProcessCategory.php';
$category = array();
$category[] = array ("",G::LoadTranslation( "ID_ALL_CATEGORIES" ));

View File

@@ -122,7 +122,6 @@ class pmTables extends Controller
*/
public function data ($httpData)
{
require_once 'classes/model/AdditionalTables.php';
$additionalTables = new AdditionalTables();
$tableDef = $additionalTables->load( $httpData->id, true );