'); } $page = variable_get("google_verify_page",""); $items[] = array( 'type' => MENU_CALLBACK, 'path' => $page, 'access' => TRUE, 'callback' => 'googleverify_doit', ); return $items; } function googleverify_doit() { return "Verification Active"; } function googleverify_settings() { $form = array(); $form['google_verify_meta'] = array( '#type' => 'textfield', '#title' => t('META Tag Key'), '#default_value' => variable_get('google_verify_meta',''), '#description' => t("This is the data from the content= section of the google verify meta tag"), ); $form['google_verify_page'] = array( '#type' => 'textfield', '#title' => t('Verification Page Name'), '#default_value' => variable_get('google_verify_page',''), '#description' => t("This is the filename for the verification page"), ); return $form; };