You are here

function auto_entitylabel_operations_update in Automatic Entity Label 7

Callback function for updating node titles.

1 string reference to 'auto_entitylabel_operations_update'
auto_entitylabel_node_operations in ./auto_entitylabel.module
Implements hook_node_operations().

File

./auto_entitylabel.module, line 394
Allows hiding of entity label fields and automatic label creation.

Code

function auto_entitylabel_operations_update($nodes) {
  foreach (entity_load('node', $nodes) as $node) {
    $context = array(
      'entity_type' => 'node',
    );
    auto_entitylabel_entity_update_action($node, $context);
  }
}