You are here

abstract function hackedFileHasher::fetch_lines in Hacked! 7.2

Compute and return the lines of the given file.

Parameters

$filename: A fully-qualified filename to return.

Return value

array|bool The lines of the given filename or FALSE on failure.

2 methods override hackedFileHasher::fetch_lines()
hackedFileIgnoreEndingsHasher::fetch_lines in includes/hackedFileIgnoreEndingsHasher.inc
Compute and return the lines of the given file.
hackedFileIncludeEndingsHasher::fetch_lines in includes/hackedFileIncludeEndingsHasher.inc
Compute and return the lines of the given file.

File

includes/hackedFileHasher.inc, line 65

Class

hackedFileHasher
Base class for the different ways that files can be hashed.

Code

abstract function fetch_lines($filename);