You are here

interface PhpFileLoaderInterface in Libraries API 8.3

Provides an interface for PHP file loaders.

Hierarchy

Expanded class hierarchy of PhpFileLoaderInterface

All classes that implement PhpFileLoaderInterface

See also

\Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLibraryInterface

1 file declares its use of PhpFileLoaderInterface
PhpFileLibraryType.php in src/Plugin/libraries/Type/PhpFileLibraryType.php

File

src/ExternalLibrary/PhpFile/PhpFileLoaderInterface.php, line 10

Namespace

Drupal\libraries\ExternalLibrary\PhpFile
View source
interface PhpFileLoaderInterface {

  /**
   * Loads a PHP file.
   *
   * @param string $file
   *   The absolute file path to the PHP file.
   */
  public function load($file);

}

Members