mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 08:34:29 +00:00
Removed load->helper->('message') from libs
This commit is contained in:
@@ -17,9 +17,6 @@ class DmsLib
|
|||||||
$this->ci->load->model('content/Dms_model', 'DmsModel');
|
$this->ci->load->model('content/Dms_model', 'DmsModel');
|
||||||
$this->ci->load->model('content/DmsVersion_model', 'DmsVersionModel');
|
$this->ci->load->model('content/DmsVersion_model', 'DmsVersionModel');
|
||||||
$this->ci->load->model('content/DmsFS_model', 'DmsFSModel');
|
$this->ci->load->model('content/DmsFS_model', 'DmsFSModel');
|
||||||
|
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->ci->load->helper('message');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -80,8 +80,6 @@ class FiltersLib
|
|||||||
{
|
{
|
||||||
$this->_ci =& get_instance(); // get code igniter instance
|
$this->_ci =& get_instance(); // get code igniter instance
|
||||||
|
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->_ci->load->helper('message');
|
|
||||||
// Loads helper session to manage the php session
|
// Loads helper session to manage the php session
|
||||||
$this->_ci->load->helper('session');
|
$this->_ci->load->helper('session');
|
||||||
|
|
||||||
|
|||||||
@@ -37,8 +37,6 @@ class MessageLib
|
|||||||
|
|
||||||
// Loads fhc helper
|
// Loads fhc helper
|
||||||
$this->ci->load->helper('fhc');
|
$this->ci->load->helper('fhc');
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->ci->load->helper('message');
|
|
||||||
|
|
||||||
// Loads phrases
|
// Loads phrases
|
||||||
$this->ci->lang->load('message');
|
$this->ci->lang->load('message');
|
||||||
|
|||||||
@@ -32,8 +32,6 @@ class NavigationLib
|
|||||||
// Loads navigation configs
|
// Loads navigation configs
|
||||||
$this->_ci->config->load('navigation');
|
$this->_ci->config->load('navigation');
|
||||||
|
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->_ci->load->helper('message');
|
|
||||||
// Loads helper session to manage the php session
|
// Loads helper session to manage the php session
|
||||||
$this->_ci->load->helper('session');
|
$this->_ci->load->helper('session');
|
||||||
|
|
||||||
|
|||||||
@@ -22,9 +22,6 @@ class PhrasesLib
|
|||||||
$this->_ci->load->model('system/Phrase_model', 'PhraseModel');
|
$this->_ci->load->model('system/Phrase_model', 'PhraseModel');
|
||||||
$this->_ci->load->model('system/Phrasentext_model', 'PhrasentextModel');
|
$this->_ci->load->model('system/Phrasentext_model', 'PhrasentextModel');
|
||||||
|
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->_ci->load->helper('message');
|
|
||||||
|
|
||||||
// Workaround to use more parameters in the construct since PHP doesn't support many constructors
|
// Workaround to use more parameters in the construct since PHP doesn't support many constructors
|
||||||
$this->_extend_construct(func_get_args());
|
$this->_extend_construct(func_get_args());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,9 +22,6 @@ class VorlageLib
|
|||||||
$this->ci->load->model('system/Vorlagestudiengang_model', 'VorlageStudiengangModel');
|
$this->ci->load->model('system/Vorlagestudiengang_model', 'VorlageStudiengangModel');
|
||||||
|
|
||||||
$this->ci->load->helper('language');
|
$this->ci->load->helper('language');
|
||||||
// Loads helper message to manage returning messages
|
|
||||||
$this->ci->load->helper('message');
|
|
||||||
//$this->ci->lang->load('fhcomplete');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user