Working example of update

Created on 6 April 2023, almost 2 years ago

I'm trying to create a hook to flag a node when it is created automatically. This is the general approach I'm following.

<?php
function  hook_node_insert($node) {
  $flag_service = \Drupal::service('flag');
  $flag_entity = $flag_service->getFlagById('flag_machine_name');
  $flag_service->flag($flag_entity, $node);
  $node->save();
}

?>

However this is not working as expected. Is there some other step that needs to happen?

πŸ’¬ Support request
Status

Active

Version

4.0

Component

Documentation

Created by

πŸ‡¨πŸ‡¦Canada paulsheldrake

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024