Page MenuHomeWickedGov Phorge

PHPVariableLoader.php
No OneTemporary

Size
736 B
Referenced Files
None
Subscribers
None

PHPVariableLoader.php

<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\Translate\Utilities;
/**
* Stuff for handling configuration files in PHP format.
*
* @author Niklas Laxström
* @copyright Copyright © 2010 Niklas Laxström
* @license GPL-2.0-or-later
*/
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|null The variable contents or null.
*/
public static function loadVariableFromPHPFile( string $_filename, string $_variable ) {
if ( !file_exists( $_filename ) ) {
return null;
} else {
require $_filename;
return $$_variable ?? null;
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 13:38 (1 d, 22 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d3/81/ddbee4b8c14b6128703030c1c5af
Default Alt Text
PHPVariableLoader.php (736 B)

Event Timeline