You are here

function modalframe_example_simple_page in Modal Frame API 7

Same name and namespace in other branches
  1. 6 modules/modalframe_example/modalframe_example.module \modalframe_example_simple_page()

Menu callback; Generate the child page for the example.

1 string reference to 'modalframe_example_simple_page'
modalframe_example_menu in modules/modalframe_example/modalframe_example.module
Implementation of hook_menu().

File

modules/modalframe_example/modalframe_example.module, line 112
Example for the Modal Frame module.

Code

function modalframe_example_simple_page($first = NULL, $second = NULL, $third = NULL) {

  // Build the form forwarding page arguments.
  return drupal_get_form('modalframe_example_simple_form', $first, $second, $third);
}