|
@@ -123,4 +123,28 @@ function ouatt_admin_inline_entity_form_reference_form_alter(&$reference_form, &
|
|
*/
|
|
*/
|
|
function ouatt_admin_inline_entity_form_table_fields_alter($fields, $context) {
|
|
function ouatt_admin_inline_entity_form_table_fields_alter($fields, $context) {
|
|
$t="t";
|
|
$t="t";
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 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 ouatt_admin_auto_entitylabel_label_alter(&$label, $entity) {
|
|
|
|
+ if (strlen($label) > 50) {
|
|
|
|
+ // if ($html) {
|
|
|
|
+ // // Grabs the original and escapes any quotes
|
|
|
|
+ // $original = str_replace('"', '\"', $label);
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // Truncates the string
|
|
|
|
+ $label = substr(strip_tags($label), 0, 50);
|
|
|
|
+
|
|
|
|
+ $label .= '...';
|
|
|
|
+ }
|
|
}
|
|
}
|