public function EntitySaveBase::execute in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_entity/src/Plugin/Action/EntitySaveBase.php \Drupal\bibcite_entity\Plugin\Action\EntitySaveBase::execute()
Executes the plugin.
Overrides ExecutableInterface::execute
1 call to EntitySaveBase::execute()
- ReferenceRegenerateCitekey::execute in modules/
bibcite_entity/ src/ Plugin/ Action/ ReferenceRegenerateCitekey.php - Executes the plugin.
1 method overrides EntitySaveBase::execute()
- ReferenceRegenerateCitekey::execute in modules/
bibcite_entity/ src/ Plugin/ Action/ ReferenceRegenerateCitekey.php - Executes the plugin.
File
- modules/
bibcite_entity/ src/ Plugin/ Action/ EntitySaveBase.php, line 24
Class
- EntitySaveBase
- Base entity save action.
Namespace
Drupal\bibcite_entity\Plugin\ActionCode
public function execute($entity = NULL) {
/** @var \Drupal\Core\Entity\EntityInterface $entity */
$entity->changed = 0;
$entity
->save();
}