| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/enoikio/modules/webform/src/ |
Upload File : |
<?php
namespace Drupal\webform;
/**
* Defines an interface for libraries classes.
*/
interface WebformLibrariesManagerInterface {
/**
* Get third party libraries status for hook_requirements and drush.
*
* @return array
* An associative array of third party libraries keyed by library name.
*/
public function requirements();
/**
* Get library information.
*
* @param string $name
* The name of the library.
*
* @return array
* An associative array containing an library.
*/
public function getLibrary($name);
/**
* Get libraries.
*
* @param bool|null $included
* Optionally filter by include (TRUE) or excluded (FALSE)
*
* @return array
* An associative array of libraries.
*/
public function getLibraries($included = NULL);
/**
* Get excluded libraries.
*
* @return array
* A keyed array of excluded libraries.
*/
public function getExcludedLibraries();
/**
* Determine if library is excluded.
*
* @param string $name
* The name of the library.
*
* @return bool
* TRUE if library is excluded.
*/
public function isExcluded($name);
/**
* Determine if library is included.
*
* @param string $name
* The name of the library.
*
* @return bool
* TRUE if library is included.
*/
public function isIncluded($name);
}