You are here

function BotchaRecipebookAbstract::setDescription in BOTCHA Spam Prevention 7.2

Same name and namespace in other branches
  1. 6.2 controller/botcha_recipebook.controller.inc \BotchaRecipebookAbstract::setDescription()

File

controller/botcha_recipebook.controller.inc, line 137
Controller layer of the BotchaRecipebook objects.

Class

BotchaRecipebookAbstract
@file Controller layer of the BotchaRecipebook objects.

Code

function setDescription($description) {
  $this->description = $description;

  // Save changed state.
  Botcha::setRecipebook($this);
  return $this;
}