You are here

function botcha_recipes_form in BOTCHA Spam Prevention 6.2

Same name and namespace in other branches
  1. 7.2 botcha.admin.inc \botcha_recipes_form()
1 string reference to 'botcha_recipes_form'
botcha_menu in ./botcha.module
Implements hook_menu().

File

./botcha.admin.inc, line 360
Implementation of botcha administration forms.

Code

function botcha_recipes_form() {

  // @todo Implement Recipe UI.
  // @see https://drupal.org/node/1815080
  $form = array();
  $form['stub'] = array(
    '#value' => t('This functionality is currently in development. See <a href="@issue_link">related issue</a>. Please consider participating in <a href="@patchranger_link">patch crowd funding of this issue</a>. Read more about patch crowd funding on <a href="@botcha_project_link">the BOTCHA project page</a>.', array(
      '@issue_link' => url('http://drupal.org/node/1815080'),
      '@patchranger_link' => url('http://www.patchranger.com/?do_nid=1815080'),
      '@botcha_project_link' => url('http://drupal.org/project/botcha#how-much-does-it-cost'),
    )),
  );
  return $form;
}