You are here

function alinks_page in Alinks 6

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

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

File

./alinks.module, line 105

Code

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