You are here

botcha.application.model.logger.inc in BOTCHA Spam Prevention 7.3

Contains BotchaModelLogger class.

Decorator implementation for Botcha application model.

File

model/application/decorator/logger/botcha.application.model.logger.inc
View source
<?php

/**
 * @file
 * Contains BotchaModelLogger class.
 *
 * Decorator implementation for Botcha application model.
 */
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);
  }

}

Classes

Namesort descending Description
BotchaModelLogger @file Contains BotchaModelLogger class.