You are here

function alinks_page in Alinks 7

Same name and namespace in other branches
  1. 6 alinks.module \alinks_page()

Generate the page that will render the forms for adding and editing Alinks

File

./alinks.module, line 120
this module allows users to associates defined text to links

Code

function alinks_page() {
  $output = drupal_get_form('alinks_add_form');
  $output .= drupal_get_form('alinks_edit_form');
  return $output;
}