Category: Hooks

  • Drupal 7 schema & datetime

    Drupal 7 schema & datetime

    When working on db schemas in Drupal it’s good to know that syntax for datetime is somewhat changed. Before it (Drupal 6) it was: ‘type’ => ‘datetime’, now in Drupal 7 it’s: ‘mysql_type’ => ‘datetime’, // for mysql

  • Replace menu links in Drupal 7 using menu_link & menu_tree hooks

    Replace menu links in Drupal 7 using menu_link & menu_tree hooks

    Want to add span elements to menu, change ul id or add classes? Need images in menu or some custom style? You can do that by using menu_link for menu items and menu_tree hook for menus itself. To replace all menus remove __MENUNAME. // Customize menu li & links function MYTHEME_menu_link__MENUNAME($variables) { $element = $variables[‘element’];…