You are here

class xautoload_Plugin_checkNothing in X Autoload 7.2

This class is not used anywhere in xautoload, but could be used by other modules.

Hierarchy

Expanded class hierarchy of xautoload_Plugin_checkNothing

File

lib/Plugin/checkNothing.php, line 8

View source
class xautoload_Plugin_checkNothing implements xautoload_Plugin_Interface {

  /**
   * Expect a class Aaa_Bbb_Ccc_Ddd to be in Aaa/Bbb/Ccc/Ddd.php,
   * but consider the PHP include_path setting.
   *
   * @param object $api
   *   The InjectedAPI object.
   * @param string $path_prefix_symbolic
   *   First part of the path, for instance "Aaa/Bbb/".
   * @param string $path_suffix
   *   Second part of the path, for instance "Ccc/Ddd.php".
   */
  function findFile($api, $path_prefix_symbolic, $path_suffix) {
    $path = $path_prefix_symbolic . $path_suffix;
    if ($api
      ->suggestFile_checkNothing($path)) {
      return TRUE;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
xautoload_Plugin_checkNothing::findFile function Expect a class Aaa_Bbb_Ccc_Ddd to be in Aaa/Bbb/Ccc/Ddd.php, but consider the PHP include_path setting. Overrides xautoload_Plugin_Interface::findFile