You are here

protected function xautoload_RecursiveScan::_file in X Autoload 7

1 call to xautoload_RecursiveScan::_file()
xautoload_RecursiveScan::_abc in lib/RecursiveScan.php

File

lib/RecursiveScan.php, line 94

Class

xautoload_RecursiveScan
Scan directories for wildcard files[] instructions in a module's info file.

Code

protected function _file($path) {
  if (is_file($path)) {
    $this->result[$path] = $this->value;
    $this->plus[$path] = TRUE;
  }
}