menu_item_link d7-en

mattil képe

A következő részlet egy drupal6-os zen alsmink template.php fájljából való:

  1. function tuti_theme_menu_item_link($link) {
  2. // Allows for images as menu items. Just supply the path to the image as the title
  3. if (strpos($link['title'], '.png') !== false || strpos($link['title'], '.jpg') !== false || strpos($link['title'], '.gif') !== false) {
  4. $link['title'] = '<img alt="'. $link['description'] .'" title="'. $link['description'] .'" src="'. url($link['title']) .'" />';
  5. $link['localized_options']['html'] = TRUE;
  6. }
  7. return zen_menu_item_link($link); // Let Zen take over from here.
  8. }

Annyit csinál, hogy a menük nevei helyett egy képfájl jelenik meg a megfelelő helyen úgy, hogy a menunevekhez a képfájl címét kell megadni.

Ugyanezt szeretném elérni D7 alatt! Hogyan írjam írjam át ezt?

Taxonomy upgrade extras: 
Drupal verzió: 
Fórum: 
csakiistvan képe

es a modul nem lenne jo?

0
0

Drupal full-stack developer at Wunderman Thompson Budapest