You are here

CheckIncludePath.php in X Autoload 7.5

Same filename and directory in other branches
  1. 7.4 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, $logical_base_path, $relative_path) {
    $path = $logical_base_path . $relative_path;
    return $api
      ->suggestFile_checkIncludePath($path);
  }

}

Classes

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