You are here

class BotchaModelLogger in BOTCHA Spam Prevention 6.3

Same name and namespace in other branches
  1. 7.3 model/application/decorator/logger/botcha.application.model.logger.inc \BotchaModelLogger

@file Contains BotchaModelLogger class.

Decorator implementation for Botcha application model.

Hierarchy

Expanded class hierarchy of BotchaModelLogger

File

model/application/decorator/logger/botcha.application.model.logger.inc, line 10
Contains BotchaModelLogger class.

View source
class BotchaModelLogger extends ModelLogger implements IBotchaModel {
  protected $app_name = 'Botcha';
  public function getFormsRecipebooks($parameters = array()) {
    return $this
      ->logCall('getFormsRecipebooks', $parameters);
  }
  public function getRecipebooksForms($parameters = array()) {
    return $this
      ->logCall('getRecipebooksForms', $parameters);
  }
  public function getRecipesRecipebooks($parameters = array()) {
    return $this
      ->logCall('getRecipesRecipebooks', $parameters);
  }
  public function getRecipebooksRecipes($parameters = array()) {
    return $this
      ->logCall('getRecipebooksRecipes', $parameters);
  }

}

Members