EntityInterface::uuid

public EntityInterface::uuid() Gets the entity UUID (Universally Unique Identifier). The UUID is guaranteed to be unique and can be used to identify an entity across multiple systems. Return value string|null The UUID of the entity, or NULL if the entity does not have one. File core/lib/Drupal/Core/Entity/EntityInterface.php, line 25 Class EntityInterface Defines a common interface for all entity objects. Namespace Drupal\Core\Entity Code public function uuid();

hook_tour_tips_info_alter

hook_tour_tips_info_alter(&$info) Allow modules to alter tip plugin definitions. Parameters array $info: The array of tip plugin definitions, keyed by plugin ID. See also \Drupal\tour\Annotation\Tip Related topics Hooks Define functions that alter the behavior of Drupal core. File core/modules/tour/tour.api.php, line 37 Describes API functions for tour module. Code function hook_tour_tips_info_alter(&$info) { // Swap out the class used for this tip plugin. if (isset($info['tex

Tables::$entityManager

The entity manager. Type: \Drupal\Core\Entity\EntityManager File core/lib/Drupal/Core/Entity/Query/Sql/Tables.php, line 44 Class Tables Adds tables and fields to the SQL entity query. Namespace Drupal\Core\Entity\Query\Sql Code protected $entityManager;

FormState::$process_input

TRUE signifies correct form submission. This is always TRUE for programmed forms coming from \Drupal\Core\Form\FormBuilderInterface::submitForm() (see 'programmed' key), or if the form_id coming from the \Drupal::request()->request data is set and matches the current form_id. Type: bool File core/lib/Drupal/Core/Form/FormState.php, line 304 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code protected $process_input;

DeleteForm::logDeletionMessage

public DeleteForm::logDeletionMessage() Overrides ContentEntityDeleteForm::logDeletionMessage File core/modules/comment/src/Form/DeleteForm.php, line 44 Class DeleteForm Provides the comment delete confirmation form. Namespace Drupal\comment\Form Code public function logDeletionMessage() { $this->logger('content')->notice('Deleted comment @cid and its replies.', array('@cid' => $this->entity->id())); }

hook_update_last_removed

hook_update_last_removed() Return a number which is no longer available as hook_update_N(). If you remove some update functions from your mymodule.install file, you should notify Drupal of those missing functions. This way, Drupal can ensure that no update is accidentally skipped. Implementations of this hook should be placed in a mymodule.install file in the same directory as mymodule.module. Return value An integer, corresponding to hook_update_N() which has been removed from mymodule.instal

FeedStorageInterface::getFeedIdsToRefresh

public FeedStorageInterface::getFeedIdsToRefresh() Returns the fids of feeds that need to be refreshed. Return value array A list of feed ids to be refreshed. File core/modules/aggregator/src/FeedStorageInterface.php, line 18 Class FeedStorageInterface Defines an interface for aggregator feed entity storage classes. Namespace Drupal\aggregator Code public function getFeedIdsToRefresh();

Truncate

PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Truncateclass \Drupal\Core\Database\Driver\pgsql\Truncate File core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php, line 10 Namespace Drupal\Core\Database\Driver\pgsql Members Name Modifiers Type Description Query::$comments protected property An array of comments that can be prepended

ImageStyle::id

public ImageStyle::id() Gets the identifier. Return value string|int|null The entity identifier, or NULL if the object does not yet have an identifier. Overrides Entity::id File core/modules/image/src/Entity/ImageStyle.php, line 88 Class ImageStyle Defines an image style configuration entity. Namespace Drupal\image\Entity Code public function id() { return $this->name; }

PhpStreamWrapperInterface::stream_flush

public PhpStreamWrapperInterface::stream_flush() Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 79 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_flush();