You are here

CheckIncludePath.php in X Autoload 7.4

Same filename and directory in other branches
  1. 7.5 legacy/lib/FinderPlugin/CheckIncludePath.php

File

legacy/lib/FinderPlugin/CheckIncludePath.php
View source
<?php

/**
 * This class is not used anywhere in xautoload, but could be used by other
 * modules.
 */
class xautoload_FinderPlugin_CheckIncludePath implements xautoload_FinderPlugin_Interface {

  /**
   * {@inheritdoc}
   */
  function findFile($api, $path_fragment, $path_suffix) {
    $path = $path_fragment . $path_suffix;
    if ($api
      ->suggestFile_checkIncludePath($path)) {
      return TRUE;
    }
  }

}

Classes

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