You are here

auto_entitylabel.api.php in Automatic Entity Label 8.3

Same filename and directory in other branches
  1. 8.2 auto_entitylabel.api.php
  2. 7 auto_entitylabel.api.php

API documentation for Automatic Entity Label module.

File

auto_entitylabel.api.php
View source
<?php

/**
 * @file
 * API documentation for Automatic Entity Label module.
 */

/**
 * Provide post-processing of auto generated titles (labels).
 *
 * @param string $label
 *   The auto-generated label to be altered.
 * @param object $entity
 *   The entity that the label is from.
 *
 * @see \Drupal\auto_entitylabel\AutoEntityLabelManager::generateLabel()
 */
function hook_auto_entitylabel_label_alter(&$label, $entity) {

  // Trim the label.
  $label = trim($label);
}

Functions

Namesort descending Description
hook_auto_entitylabel_label_alter Provide post-processing of auto generated titles (labels).