You are here

function RealisticDummyContentLiveEnvironment::_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/RealisticDummyContentLiveEnvironment.inc, line 20
Define RealisticDummyContentLiveEnvironment autoload class.

Class

RealisticDummyContentLiveEnvironment
The live environment.

Code

function _file_get_contents_($filename) {
  return file_get_contents($filename);
}