PhpTransliteration

Implements transliteration without using the PECL extensions. Transliterations are done character-by-character, by looking up non-US-ASCII characters in a transliteration database. The database comes from two types of files, both of which are searched for in the PhpTransliteration::$dataDirectory directory. First, language-specific overrides are searched (see PhpTransliteration::readLanguageOverrides()). If there is no language-specific override for a character, the generic transliteration char

drupal_set_message

drupal_set_message($message = NULL, $type = 'status', $repeat = FALSE) Sets a message to display to the user. Messages are stored in a session variable and displayed in the page template via the $messages theme variable. Example usage: drupal_set_message(t('An error occurred and processing did not complete.'), 'error'); Parameters string|\Drupal\Component\Render\MarkupInterface $message: (optional) The translated message to be displayed to the user. For consistency with other messages, it sho

DeleteForm::$pathAlias

The path alias being deleted. Type: array $pathAlias File core/modules/path/src/Form/DeleteForm.php, line 28 Class DeleteForm Builds the form to delete a path alias. Namespace Drupal\path\Form Code protected $pathAlias;

AdvancedSettingsForm

Form builder for the advanced admin settings page. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTraitclass \Drupal\views_ui\Form\AdvancedSettingsForm File core/modules/views_ui/src/Form/AdvancedSettingsForm.php, line 12 Namespace Drupal\v

CommentInterface::setHostname

public CommentInterface::setHostname($hostname) Sets the hostname of the author of the comment. Parameters string $hostname: The hostname of the author of the comment. Return value $this The class instance that this method is called on. File core/modules/comment/src/CommentInterface.php, line 173 Class CommentInterface Provides an interface defining a comment entity. Namespace Drupal\comment Code public function setHostname($hostname);

ModulesListForm::$moduleInstaller

The module installer. Type: \Drupal\Core\Extension\ModuleInstallerInterface File core/modules/system/src/Form/ModulesListForm.php, line 57 Class ModulesListForm Provides module installation interface. Namespace Drupal\system\Form Code protected $moduleInstaller;

ForumManager::checkNodeType

public ForumManager::checkNodeType(NodeInterface $node) Checks whether a node can be used in a forum, based on its content type. Parameters \Drupal\node\NodeInterface $node: A node entity. Return value bool Boolean indicating if the node can be assigned to a forum. Overrides ForumManagerInterface::checkNodeType File core/modules/forum/src/ForumManager.php, line 467 Class ForumManager Provides forum manager service. Namespace Drupal\forum Code public function checkNodeType(NodeInterfa

FieldConfigStorage::loadByProperties

public FieldConfigStorage::loadByProperties(array $conditions = array()) Load entities by their property values. Parameters array $values: An associative array where the keys are the property names and the values are the values those properties must have. Return value \Drupal\Core\Entity\EntityInterface[] An array of entity objects indexed by their ids. Overrides EntityStorageBase::loadByProperties File core/modules/field/src/FieldConfigStorage.php, line 98 Class FieldConfigStorage Contr

ViewExecutable::$result

Where the results of a query will go. The array must use a numeric index starting at 0. Type: \Drupal\views\ResultRow[] File core/modules/views/src/ViewExecutable.php, line 78 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $result = array();

FieldableEntityStorageInterface

A storage that supports entity types with field definitions. Hierarchy interface \Drupal\Core\Entity\EntityStorageInterfaceinterface \Drupal\Core\Entity\FieldableEntityStorageInterface File core/lib/Drupal/Core/Entity/FieldableEntityStorageInterface.php, line 8 Namespace Drupal\Core\Entity Members Name Modifiers Type Description EntityStorageInterface::create public function Constructs a new entity object, without permanently saving it. EntityStorageInterface::delete