You are here

abstract function Environment::_file_get_contents_ in Realistic Dummy Content 8

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 Environment:: 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.

1 call to Environment::_file_get_contents_()
Environment::file_get_contents in api/src/environments/Environment.php
Get the contents of a file.
2 methods override Environment::_file_get_contents_()
DummyEnvironment::_file_get_contents_ in api/src/environments/DummyEnvironment.php
Internal function used to get the contents of a file.
LiveEnvironment::_file_get_contents_ in api/src/environments/LiveEnvironment.php
Internal function used to get the contents of a file.

File

api/src/environments/Environment.php, line 94
Define autoload class.

Class

Environment
The abstract base environment.

Namespace

Drupal\realistic_dummy_content_api\environments

Code

abstract function _file_get_contents_($filename);