%PDF- %PDF-
Direktori : /proc/985914/root/www/varak.net/wiki.varak.net/extensions/Translate/utils/ |
Current File : //proc/985914/root/www/varak.net/wiki.varak.net/extensions/Translate/utils/ResourceLoader.php |
<?php /** * Stuff for handling configuration files in PHP format. * @file * @author Niklas Laxström * @copyright Copyright © 2010 Niklas Laxström * @license GPL-2.0-or-later */ /** * Stuff for handling configuration files in PHP format. */ class PHPVariableLoader { /** * Returns a global variable from PHP file by executing the file. * @param string $_filename Path to the file. * @param string $_variable Name of the variable. * @return mixed The variable contents or null. */ public static function loadVariableFromPHPFile( $_filename, $_variable ) { if ( !file_exists( $_filename ) ) { return null; } else { require $_filename; return isset( $$_variable ) ? $$_variable : null; } } }