inputs as $input) { if ($input instanceof Form_Group) { $input->recaptcha("recaptcha")->label("")->id("g-recaptcha"); return; } } // If we haven't returned yet, then add the captcha at the end of the form $form->recaptcha("recaptcha")->label("")->id("g-recaptcha"); } } static function admin_menu($menu, $theme) { $menu->get("settings_menu") ->append(Menu::factory("link") ->id("recaptcha") ->label(t("reCAPTCHA")) ->url(url::site("admin/recaptcha"))); } }