You are here

abstract class xautoload_MissingDirPlugin_DrupalExtensionAbstract in X Autoload 7.3

Hierarchy

Expanded class hierarchy of xautoload_MissingDirPlugin_DrupalExtensionAbstract

File

lib/MissingDirPlugin/DrupalExtensionAbstract.php, line 3

View source
abstract class xautoload_MissingDirPlugin_DrupalExtensionAbstract implements xautoload_MissingDirPlugin_Interface {

  /**
   * @var string string
   */
  protected $type;

  /**
   * @var bool
   */
  protected $shallow;

  /**
   * @param string $type
   *   The extension type, e.g. "module" or "theme".
   * @param bool $shallow
   *   Whether to use a "shallow" variation of PSR0 or PEAR.
   */
  function __construct($type, $shallow = FALSE) {
    $this->type = $type;
    $this->shallow = $shallow;
  }

}

Members