ActionAddForm::buildForm

public ActionAddForm::buildForm(array $form, FormStateInterface $form_state, $action_id = NULL) Parameters string $action_id: The hashed version of the action ID. Overrides ActionFormBase::buildForm File core/modules/action/src/ActionAddForm.php, line 53 Class ActionAddForm Provides a form for action add forms. Namespace Drupal\action Code public function buildForm(array $form, FormStateInterface $form_state, $action_id = NULL) { // In \Drupal\action\Form\ActionAdminManageForm::buil

Connection::$attachedDatabases

All databases attached to the current database. This is used to allow prefixes to be safely handled without locking the table Type: array File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 32 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code protected $attachedDatabases = array();

BlockContent::delete

public BlockContent::delete() Deletes an entity permanently. Throws \Drupal\Core\Entity\EntityStorageException In case of failures an exception is thrown. Overrides Entity::delete File core/modules/block_content/src/Entity/BlockContent.php, line 143 Class BlockContent Defines the custom block entity class. Namespace Drupal\block_content\Entity Code public function delete() { foreach ($this->getInstances() as $instance) { $instance->delete(); } parent::delete(); }

NodeRevisionAccessCheck

Provides an access checker for node revisions. Hierarchy class \Drupal\node\Access\NodeRevisionAccessCheck implements AccessInterface Related topics Node access rights The node access system determines who can do what to which nodes. File core/modules/node/src/Access/NodeRevisionAccessCheck.php, line 17 Namespace Drupal\node\Access Members Name Modifiers Type Description NodeRevisionAccessCheck::$access protected property A static cache of access checks. NodeRevision

ViewExecutable::setCurrentPage

public ViewExecutable::setCurrentPage($page) Sets the current page for the pager. Parameters int $page: The current page. File core/modules/views/src/ViewExecutable.php, line 509 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function setCurrentPage($page) { $this->current_page = $page; // Calls like ::unserialize() might call this method without a proper $page. // Also check whether the element is pre rendered. At that point, the cache

CheckProvider

Loads access checkers from the container. Hierarchy class \Drupal\Core\Access\CheckProvider implements CheckProviderInterface, ContainerAwareInterface uses ContainerAwareTrait File core/lib/Drupal/Core/Access/CheckProvider.php, line 14 Namespace Drupal\Core\Access Members Name Modifiers Type Description CheckProvider::$checkIds protected property Array of registered access check service ids. CheckProvider::$checkMethods protected property Array of access check me

Image::desaturate

public Image::desaturate() Converts an image to grayscale. Return value bool TRUE on success, FALSE on failure. Overrides ImageInterface::desaturate File core/lib/Drupal/Core/Image/Image.php, line 170 Class Image Defines an image object to represent an image file. Namespace Drupal\Core\Image Code public function desaturate() { return $this->apply('desaturate', array()); }

BreakpointManager::$breakpointsByGroup

Static cache of breakpoints keyed by group. Type: array File core/modules/breakpoint/src/BreakpointManager.php, line 82 Class BreakpointManager Defines a breakpoint plugin manager to deal with breakpoints. Namespace Drupal\breakpoint Code protected $breakpointsByGroup;

EntityTypeBundleInfoInterface::clearCachedBundles

public EntityTypeBundleInfoInterface::clearCachedBundles() Clears static and persistent bundles. File core/lib/Drupal/Core/Entity/EntityTypeBundleInfoInterface.php, line 38 Class EntityTypeBundleInfoInterface Provides an interface for an entity type bundle info. Namespace Drupal\Core\Entity Code public function clearCachedBundles();

MessageInterface::isPersonal

public MessageInterface::isPersonal() Returns TRUE if this is the personal contact form. Return value bool TRUE if the message bundle is personal. File core/modules/contact/src/MessageInterface.php, line 106 Class MessageInterface Provides an interface defining a contact message entity. Namespace Drupal\contact Code public function isPersonal();