AuthenticationCollectorInterface::getSortedProviders

public AuthenticationCollectorInterface::getSortedProviders() Returns the sorted array of authentication providers. Return value \Drupal\Core\Authentication\AuthenticationProviderInterface[] An array of authentication provider objects. File core/lib/Drupal/Core/Authentication/AuthenticationCollectorInterface.php, line 55 Class AuthenticationCollectorInterface Interface for collectors of registered authentication providers. Namespace Drupal\Core\Authentication Code public function getS

Connection::sqlFunctionConcatWs

public static Connection::sqlFunctionConcatWs() SQLite compatibility implementation for the CONCAT_WS() SQL function. See also http://dev.mysql.com/doc/refman/5.6/en/string-functions.html#function_co... File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 226 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public static function sqlFunctionConcatWs() { $args = func_get_args(); $separator

views_get_view_result

views_get_view_result($name, $display_id = NULL) Get the result of a view. Parameters string $name: The name of the view to retrieve the data from. string $display_id: The display id. On the edit page for the view in question, you'll find a list of displays at the left side of the control area. "Master" will be at the top of that list. Hover your cursor over the name of the display you want to use. A URL will appear in the status bar of your browser. This is usually at the bottom of the window

ViewExecutable::$attachment_before

Attachments to place before the view. Type: array() File core/modules/views/src/ViewExecutable.php, line 115 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $attachment_before = array();

Connection::sqlFunctionIf

public static Connection::sqlFunctionIf($condition, $expr1, $expr2 = NULL) SQLite compatibility implementation for the IF() SQL function. File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 191 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public static function sqlFunctionIf($condition, $expr1, $expr2 = NULL) { return $condition ? $expr1 : $expr2; }

Connection::sqlFunctionRand

public static Connection::sqlFunctionRand($seed = NULL) SQLite compatibility implementation for the RAND() SQL function. File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 268 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public static function sqlFunctionRand($seed = NULL) { if (isset($seed)) { mt_srand($seed); } return mt_rand() / mt_getrandmax(); }

ModuleHandler::addModule

public ModuleHandler::addModule($name, $path) Adds a module to the list of currently active modules. Parameters string $name: The module name; e.g., 'node'. string $path: The module path; e.g., 'core/modules/node'. Overrides ModuleHandlerInterface::addModule File core/lib/Drupal/Core/Extension/ModuleHandler.php, line 191 Class ModuleHandler Class that manages modules in a Drupal installation. Namespace Drupal\Core\Extension Code public function addModule($name, $path) { $this->ad

IMAGE_STORAGE_DEFAULT

Image style constant for module-defined presets in code. Deprecated in Drupal 8.1.x, will be removed before Drupal 9.0.0. File core/modules/image/image.module, line 34 Exposes global functionality for creating image styles. Code const IMAGE_STORAGE_DEFAULT = 4;

SearchPageRepositoryInterface::setDefaultSearchPage

public SearchPageRepositoryInterface::setDefaultSearchPage(SearchPageInterface $search_page) Sets a given search page as the default. Parameters \Drupal\search\SearchPageInterface $search_page: The search page entity. Return value static File core/modules/search/src/SearchPageRepositoryInterface.php, line 50 Class SearchPageRepositoryInterface Provides the interface for a repository Search Page entities. Namespace Drupal\search Code public function setDefaultSearchPage(SearchPageInte

ExtensionNameLengthException

Exception thrown when the extension's name length exceeds the allowed maximum. Hierarchy class \Drupal\Core\Extension\ExtensionNameLengthException extends \Exception File core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php, line 8 Namespace Drupal\Core\Extension Members