function RealisticDummyContentDummyEnvironment::_file_get_contents_ in Realistic Dummy Content 7
Internal function used to get the contents of a file.
Wrapper around PHP's file_get_contents() (or a simulation thereof). This function will not return an exception. Please use RealisticDummyContentEnvironment:: file_get_contents(), instead.
Parameters
$filename: A valid filename, for example /drupal/root/sites/all/modules/your_module/realistic_dummy_content/fields/node/blog/body/03.txt
Return value
Undefined in case the filename is invalid; otherwise returns the contents of the file.
Overrides RealisticDummyContentEnvironment::_file_get_contents_
File
- api/
includes/ RealisticDummyContentDummyEnvironment.inc, line 28 - Define RealisticDummyContentLiveEnvironment autoload class.
Class
- RealisticDummyContentDummyEnvironment
- The dummy environment.
Code
function _file_get_contents_($filename) {
if (isset($this->files[$filename])) {
return $this->files[$filename];
}
trigger_error('file_get_contents(): failed to open stream');
return NULL;
}