Welches umfangreichere Portal oder welche Software kommt ohne eine Statusauswahl aus? Egal ob "Aktiv", "Erledigt", "In Arbeit" oder "Dringend", immer wieder brauchen wir entsprechende Optionen und am besten eine intuitive optische Darstellung!
Für uns Drupal Nutzer schreit es also nach einem CCK Modul bzw. entsprechendem Field, welches diese Anforderungen erfüllt. Eine sehr gute und flexible Alternative ist jedoch die Lösung über List (Text) Felder und http://drupal.org/project/custom_formatters
Um diese Lösung zu nutzen, erstellt ihr einfach ein neues Feld im Inhaltstyp vom Typ List (Text).
Den anzuzeigenden Werten solltet ihr zudem maschinenlesbare Schlüssel zuordnen, die ihr nachher als Name für eure Icons verwendet, z.B.
active|Active
waiting|Waiting
done|Done
Dieses Feld speichert ihr.
Nutzt ihr es nun, wird immer der Titel hinter dem "|" angezeigt. Dies möchten wir mit Custom Formatters um einen Icon ergänzen oder sogar durch einen Icon ersetzen.
Nachdem ihr das oben verlinkte Modul also installiert habt, importiert ihr dazu die folgenden zwei Vorlagen (oder eine davon, die ihr benötigt). Der Import erfolgt in der Admin-Oberfläche des Moduls.
// Darstellung nur als Status Icon
$formatter = new stdClass();
$formatter->disabled = FALSE; /* Edit this to true to make a default formatter disabled initially */
$formatter->api_version = 2;
$formatter->name = 'status_icon_only';
$formatter->label = 'Status Icon only';
$formatter->description = 'Displays a status icon instead of status text.';
$formatter->mode = 'php';
$formatter->field_types = 'list_text';
$formatter->code = 'if(!empty($variables[\'#items\']) && is_array($variables[\'#items\'])){
$value = $variables[\'#items\'][0][\'value\'];
$icon_state_src = base_path() . drupal_get_path( \'theme\', variable_get(\'theme_default\', \'0\')) . \'/images/icons/status/\' . urlencode($value) . \'.png\';
$value_readable = render(field_view_value($variables[\'#obj_type\'], $variables[\'#object\'], $variables[\'#field\'][\'field_name\'], $variables[\'#items\'][0], array(), $variables[\'#langcode\']));
return theme(\'html_tag\', array(
\'element\' => array(
\'#tag\' => \'img\',
\'#attributes\' => array(
\'src\' => $icon_state_src,
\'class\' => \'custom_formatter ico status_ico status_ico-\' . drupal_clean_css_identifier(check_plain($value)),
\'alt\' => $value_readable,
),
),
));
}';
$formatter->fapi = '';
?>
// Darstellung als Status Icon + Text:
$formatter = new stdClass();
$formatter->disabled = FALSE; /* Edit this to true to make a default formatter disabled initially */
$formatter->api_version = 2;
$formatter->name = 'status_icon_plus_text';
$formatter->label = 'Status Icon + Text';
$formatter->description = 'Displays a status icon PLUS status text.';
$formatter->mode = 'php';
$formatter->field_types = 'list_text';
$formatter->code = 'if(!empty($variables[\'#items\']) && is_array($variables[\'#items\'])){
$value = $variables[\'#item\\\'][0]\\\'value\'];
$value_readable = render(field_view_value($variables[\'#obj_type\'], $variables[\'#object\'], $variables[\'#field\'][\'field_name\'], $variables[\'#items\'][0], array(), $variables[\'#langcode\']));
$ico_array = field_view_value($variables[\'#obj_type\'], $variables[\'#object\'], $variables[\'#field\'][\'field_name\'], $variables[\'#items\'][0], array(\'type\' => \'custom_formatters_status_icon_only\', \'label\' => \'hidden\'), $variables[\'#langcode\']);
return $ico_array[\'markup\'][\'#markup\']
. theme(\'html_tag\', array(
\'element\' => array(
\'#tag\' => \'span\',
\'#attributes\' => array(
\'class\' => \'custom_formatter status_ico_text status_ico-\' . drupal_clean_css_identifier(check_plain($value)) . \'_text\',
),
\'#value\' => $value_readable,
),
));
}';
$formatter->fapi = '';
?>
Nach dem Import müsst ihr die entsprechende Darstellung nur noch für euer View-Feld auswählen beziehungsweise für die Node-Darstellung in den Inhaltstyp-Einstellungen (Feld anzeigen) bearbeiten. Diese erreicht ihr schnell über den Pfad:
http://www.example.com/admin/structure/types/manage/[NODE-TYPE]/display
Dort wählt ihr den neu erstellten Custom Formatter für das entsprechende Statusfeld aus.
Selbstverständlich müsst ihr außerdem noch die Icons im passenden Theme-Verzeichnis hochladen, das ihr bei Bedarf auch im Custom Formatter anpassen könnt.
Standard nach Import ist:
[DEFAULT-THEME-Verzeichnis]/images/icons/status/[STATUS-KENNUNG].png
z.B. also: "sites/all/themes/mytheme/images/icons/status/active.png"
Zahlreiche weitere Custom Formatter Vorlagen findet ihr übrigens auch auf: http://customformatters.com/formatters
Vielen Dank an stuart clark, den Entwickler dieses großartigen Modules.
PS: Ich habe ihn um die Ergänzung der oberhalb dargestellten Formatter gebeten, mal sehen ob dies für ihn interessant ist.
Viel Spaß mit der Lösung, ich freue mich über eure Vorschläge und Kommentare!