AliasManagerInterface::getAliasByPath

public AliasManagerInterface::getAliasByPath($path, $langcode = NULL) Given a path, return the alias. Parameters string $path: A path. string $langcode: An optional language code to look up the path in. Return value string An alias that represents the path, or path if no alias was found. Throws \InvalidArgumentException Thrown when the path does not start with a slash. File core/lib/Drupal/Core/Path/AliasManagerInterface.php, line 42 Class AliasManagerInterface Find an alias for a path

StringInterface::save

public StringInterface::save() Saves string object to storage. Return value $this Throws \Drupal\locale\StringStorageException In case of failures, an exception is thrown. File core/modules/locale/src/StringInterface.php, line 204 Class StringInterface Defines the locale string interface. Namespace Drupal\locale Code public function save();

LocalActionManager::$routeProvider

The route provider to load routes by name. Type: \Drupal\Core\Routing\RouteProviderInterface File core/lib/Drupal/Core/Menu/LocalActionManager.php, line 76 Class LocalActionManager Provides the default local action manager using YML as primary definition. Namespace Drupal\Core\Menu Code protected $routeProvider;

ThemeAccessCheck::$themeHandler

The theme handler. Type: \Drupal\Core\Extension\ThemeHandlerInterface File core/lib/Drupal/Core/Theme/ThemeAccessCheck.php, line 19 Class ThemeAccessCheck Provides access checking for themes for routing and theme negotiation. Namespace Drupal\Core\Theme Code protected $themeHandler;

FormSubmitterInterface::executeSubmitHandlers

public FormSubmitterInterface::executeSubmitHandlers(&$form, FormStateInterface &$form_state) Executes custom submission handlers for a given form. Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers. Parameters $form: An associative array containing the structure of the form. $form_state: The current state of the form. If the user submitted the form by clicking a button with custom handler functions defined, those handlers will be

Connection::$tableDropped

Whether or not a table has been dropped this request: the destructor will only try to get rid of unnecessary databases if there is potential of them being empty. This variable is set to public because Schema needs to access it. However, it should not be manually set. Type: bool File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 44 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public $tabl

Transaction::name

public Transaction::name() Retrieves the name of the transaction or savepoint. File core/lib/Drupal/Core/Database/Transaction.php, line 76 Class Transaction A wrapper class for creating and managing database transactions. Namespace Drupal\Core\Database Code public function name() { return $this->name; }

Views::$translationManager

The translation manager. Type: \Drupal\Core\StringTranslation\TranslationInterface File core/modules/views/src/Views.php, line 15 Class Views Static service container wrapper for views. Namespace Drupal\views Code protected static $translationManager;

MenuLinkResetForm::getConfirmText

public MenuLinkResetForm::getConfirmText() Returns a caption for the button that confirms the action. Return value string The form confirmation text. Overrides ConfirmFormBase::getConfirmText File core/modules/menu_ui/src/Form/MenuLinkResetForm.php, line 84 Class MenuLinkResetForm Defines a confirmation form for resetting a single modified menu link. Namespace Drupal\menu_ui\Form Code public function getConfirmText() { return $this->t('Reset'); }

ContentEntityStorageBase::doSave

protected ContentEntityStorageBase::doSave($id, EntityInterface $entity) Performs storage-specific saving of the entity. Parameters int|string $id: The original entity ID. \Drupal\Core\Entity\EntityInterface $entity: The entity to save. Return value bool|int If the record insert or update failed, returns FALSE. If it succeeded, returns SAVED_NEW or SAVED_UPDATED, depending on the operation performed. Overrides EntityStorageBase::doSave File core/lib/Drupal/Core/Entity/ContentEntityStorageBase