You are here

botcha.recipe.model.inc in BOTCHA Spam Prevention 6.3

Same filename and directory in other branches
  1. 7.3 model/recipe/botcha.recipe.model.inc

Contains BotchaRecipeModel class.

Model layer of the BotchaRecipe objects.

File

model/recipe/botcha.recipe.model.inc
View source
<?php

/**
 * @file
 * Contains BotchaRecipeModel class.
 *
 * Model layer of the BotchaRecipe objects.
 */
interface IBotchaRecipeModel {
  public function getRecipe($id);
  public function getRecipes($parameters = array());
  public function save($recipe);

}
class BotchaRecipeModel extends Model implements IBotchaRecipeModel {
  protected $rtlns = array(
    BotchaModel::RELATION_RECIPE_RECIPEBOOK,
  );
  public function getRecipes($parameters = array()) {
    $recipes = db_select('botcha_recipe', 'br')
      ->fields('br');
    if (!empty($parameters['recipes'])) {
      foreach ((array) $parameters['recipes'] as $recipe_id) {
        $recipes
          ->condition('id', $recipe_id, 'IN');
      }
    }

    // Catching of PDOException helps to avoid WSOD during update use case. The
    // reason is in that form_alter is called before performing an update.
    // @see http://drupal.org/node/1828710
    try {
      $result = $recipes
        ->execute()
        ->fetchAllAssoc('id');
    } catch (Exception $e) {
      if ($e instanceof PDOException) {
        watchdog_exception('BOTCHA', $e, 'Please perform an update via update.php or reinstall the BOTCHA module to fix the reason of this warning! %type: !message in %function (line %line of %file).', array(), WATCHDOG_WARNING);
        $result = array();
      }
    }
    return $result;
  }
  public function getRecipe($id) {
    $recipes = $this
      ->getRecipes();
    return !empty($recipes[$id]) ? $recipes[$id] : NULL;
  }
  public function save($recipe) {

    // Catching of PDOException helps to avoid WSOD during update use case. The
    // reason is in that form_alter is called before performing an update.
    // @see http://drupal.org/node/1828710
    try {

      // Save recipe to DB.
      db_merge('botcha_recipe')
        ->fields(array(
        'id',
        'classname',
        'title',
        'description',
      ))
        ->values(array(
        'id' => $recipe->id,
        'classname' => $recipe->classname,
        'title' => $recipe->title,
        'description' => $recipe->description,
      ))
        ->execute();
    } catch (Exception $e) {
      if ($e instanceof PDOException) {
        watchdog_exception('BOTCHA', $e, 'Please perform an update via update.php or reinstall the BOTCHA module to fix the reason of this warning! %type: !message in %function (line %line of %file).', array(), WATCHDOG_WARNING);
      }
    }
  }

}

Classes

Namesort descending Description
BotchaRecipeModel

Interfaces

Namesort descending Description
IBotchaRecipeModel @file Contains BotchaRecipeModel class.