- Added property UDFs to UDFLib

- UDFLib constructor initialize UDFs property as an empty array
This commit is contained in:
Paolo
2017-09-20 10:55:20 +02:00
parent 6fca6e45eb
commit a456c0838d
+3
View File
@@ -46,6 +46,7 @@ class UDFLib
const PHRASES_APP_NAME = 'core'; // Name of the app parameter used to retrive phrases
private $_ci; // Code igniter instance
private $UDFs; // Associative array containing names and values of the given UDF parameters
/**
* Loads fhc helper
@@ -55,6 +56,8 @@ class UDFLib
$this->_ci =& get_instance();
$this->_ci->load->helper('fhc');
$this->UDFs = array(); // by default is an empty array
}
// -------------------------------------------------------------------------------------------------