interface NodeStorageInterface
Same name and namespace in other branches
- 11.x core/modules/node/src/NodeStorageInterface.php \Drupal\node\NodeStorageInterface
- 10 core/modules/node/src/NodeStorageInterface.php \Drupal\node\NodeStorageInterface
- 8.9.x core/modules/node/src/NodeStorageInterface.php \Drupal\node\NodeStorageInterface
Defines an interface for node entity storage classes.
Hierarchy
- interface \Drupal\Core\Entity\EntityStorageInterface; interface \Drupal\Core\Entity\TranslatableRevisionableStorageInterface extends \Drupal\Core\Entity\TranslatableStorageInterface, \Drupal\Core\Entity\RevisionableStorageInterface
- interface \Drupal\Core\Entity\ContentEntityStorageInterface extends \Drupal\Core\Entity\EntityStorageInterface, \Drupal\Core\Entity\TranslatableRevisionableStorageInterface
- interface \Drupal\node\NodeStorageInterface extends \Drupal\Core\Entity\ContentEntityStorageInterface
- interface \Drupal\Core\Entity\ContentEntityStorageInterface extends \Drupal\Core\Entity\EntityStorageInterface, \Drupal\Core\Entity\TranslatableRevisionableStorageInterface
Expanded class hierarchy of NodeStorageInterface
All classes that implement NodeStorageInterface
5 files declare their use of NodeStorageInterface
- Nid.php in core/
modules/ node/ src/ Plugin/ views/ argument/ Nid.php - NodeController.php in core/
modules/ node/ src/ Controller/ NodeController.php - NodeOperationAccessTest.php in core/
modules/ node/ tests/ src/ Unit/ NodeOperationAccessTest.php - TopLevelBook.php in core/
modules/ book/ src/ Plugin/ views/ argument_default/ TopLevelBook.php - Vid.php in core/
modules/ node/ src/ Plugin/ views/ argument/ Vid.php
File
-
core/
modules/ node/ src/ NodeStorageInterface.php, line 12
Namespace
Drupal\nodeView source
interface NodeStorageInterface extends ContentEntityStorageInterface {
/**
* Gets a list of node revision IDs for a specific node.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return int[]
* Node revision IDs (in ascending order).
*/
public function revisionIds(NodeInterface $node);
/**
* Gets a list of revision IDs having a given user as node author.
*
* @param \Drupal\Core\Session\AccountInterface $account
* The user entity.
*
* @return int[]
* Node revision IDs (in ascending order).
*/
public function userRevisionIds(AccountInterface $account);
/**
* Counts the number of revisions in the default language.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return int
* The number of revisions in the default language.
*/
public function countDefaultLanguageRevisions(NodeInterface $node);
/**
* Updates all nodes of one type to be of another type.
*
* @param string $old_type
* The current node type of the nodes.
* @param string $new_type
* The new node type of the nodes.
*
* @return int
* The number of nodes whose node type field was modified.
*/
public function updateType($old_type, $new_type);
/**
* Unsets the language for all nodes with the given language.
*
* @param \Drupal\Core\Language\LanguageInterface $language
* The language object.
*/
public function clearRevisionsLanguage(LanguageInterface $language);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.