Remove unused "read_config_file" function

This commit is contained in:
Dmitriy Simushev 2014-07-02 09:28:06 +00:00
parent ef958483bb
commit feff032c31

View File

@ -15,22 +15,6 @@
* limitations under the License. * limitations under the License.
*/ */
/**
* Read and parse configuration ini file
*
* @param string $file Path to Configuration file
* @return boolean|array Array of configurations or boolean false if file can
* not be read.
*/
function read_config_file($file)
{
if (!is_readable($file)) {
return false;
}
return parse_ini_file($file, true);
}
/** /**
* Loads system configurations. * Loads system configurations.
* *