Freitag, 12. Oktober 2012

Zeilenumbruch Title Drupal 7

Nach ewigem hin und her Googeln dann doch die einfache Lösung:


1. Modul HTML Title installieren

Dieses findet ihr hier:
http://drupal.org/project/html_title

2. Modul aktivieren

3. Im Ordner des Moduls die Datei  html_title.admin.inc raussuchen
alles löschen und folgendes einfügen:


<?php

/**
 * @file
 * Module settings and configuration administration UI.
 */

/**
 * Form definition; admin settings.
 */
function html_title_admin_settings() {
  $form['description'] = array(
    '#value' => t('Only the HTML tags below may be allowed in node titles. Any tags not enabled here will be removed. Note that all HTML will be removed in feed output and JSON output in views.'),
    '#prefix' => '<p>',
    '#suffix' => '</p>',
  );

  $form['html_title_allowed_elements'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Available tags'),
    '#default_value' => variable_get('html_title_allowed_elements', array('em', 'sub', 'sup')),
    '#options' => array(
      'em' => check_plain('<em>'),
      'sub' => check_plain('<sub>'),
      'sup' => check_plain('<sup>'),
      'i' => check_plain('<i>'),
   'br' => check_plain('<br>'),
      'b' => check_plain('<b>'),
      'strong' => check_plain('<strong>'),
    ),
  );

  return system_settings_form($form);
}

Dann speichern.

4. Dann noch in Konfiguration -> Inhaltserstellung -> HTML Title Settings kontrollieren ob der Hacken bei <br> gesetzt ist und schon sollte alles Funktionieren.