You are here

function _popups_test_namechange in Popups API (Ajax Dialogs) 6.2

Same name and namespace in other branches
  1. 5 popups.module \_popups_test_namechange()
  2. 6 popups_test.module \_popups_test_namechange()
1 string reference to '_popups_test_namechange'
popups_test_menu in ./popups_test.module
Implementation of hook_menu().

File

./popups_test.module, line 216
Page for testing the Popups API.

Code

function _popups_test_namechange() {
  drupal_set_title("New Name for Test Page");
  $form = array();
  $form['popups_popup_final_message'] = array(
    '#type' => 'submit',
    '#value' => t('Test Name Change'),
  );
  return $form;
}