You are here

function recipe_name_index_page in Recipe 6

@file recipe_name_index.inc - This is an include file containing most all of the recipe name index page functionality.

1 string reference to 'recipe_name_index_page'
recipe_menu in ./recipe.module
Implementation of hook_menu().

File

./recipe_name_index.inc, line 8
recipe_name_index.inc - This is an include file containing most all of the recipe name index page functionality.

Code

function recipe_name_index_page() {
  drupal_add_css(drupal_get_path('module', 'recipe') . '/recipe_name_index.css', 'module');
  $node_list = recipe_get_alpha_nodes();
  $alpha_list = recipe_get_node_alpha_list($node_list);
  return theme('recipe_name_index_page', $alpha_list, $node_list);
}