public function PublishAction::execute in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Action/Plugin/Action/PublishAction.php \Drupal\Core\Action\Plugin\Action\PublishAction::execute()
Executes the plugin.
Overrides ExecutableInterface::execute
File
- core/
lib/ Drupal/ Core/ Action/ Plugin/ Action/ PublishAction.php, line 21
Class
- PublishAction
- Publishes an entity.
Namespace
Drupal\Core\Action\Plugin\ActionCode
public function execute($entity = NULL) {
$entity
->setPublished()
->save();
}