You are here

function BotchaRecipe::getFields in BOTCHA Spam Prevention 6.2

Same name and namespace in other branches
  1. 6.3 controller/recipe/botcha.recipe.controller.inc \BotchaRecipe::getFields()
  2. 7.2 controller/botcha_recipe.controller.inc \BotchaRecipe::getFields()
  3. 7.3 controller/recipe/botcha.recipe.controller.inc \BotchaRecipe::getFields()
2 calls to BotchaRecipe::getFields()
BotchaRecipe::getDefaultSettings in controller/botcha_recipe.controller.inc
Used to get default recipe data structure.
BotchaRecipeUsingJsAbstract::generateFormElements in controller/botcha_recipe.controller.inc
Used to get information about the recipe. Must be overridden with calling to parent::generateFormElements. @todo Switch from indexed array to associative.

File

controller/botcha_recipe.controller.inc, line 237
Controller layer of the BotchaRecipe objects.

Class

BotchaRecipe
Abstract class to describe recipe data structure.

Code

function getFields() {
  $fields_count = $this
    ->getFieldCount();
  $fields = array();
  for ($i = 0; $i < $fields_count; $i++) {
    $fields[$i] = $this
      ->getField($i);
  }
  return $fields;
}