$row['link_title'], 'path' => $row['link_path'], 'weight' => $row['weight'], ); // Add in description field $options = unserialize($row['options']); if (!empty($options['attributes']['title'])) { $link['description'] = $options['attributes']['title']; } $code[] = " \$items[] = ". features_var_export($link, ' ') .";"; break; } } $code[] = ''; $code[] = ' return $items;'; $code = implode("\n", $code); return array('menu_default_items' => $code); }