You are here

opening_hours.api.php in Opening hours 7

Documenting Opening hours hooks.

File

opening_hours.api.php
View source
<?php

/**
 * @file
 * Documenting Opening hours hooks.
 */

/**
 * Allows modules to alter Opening hours instances before saving them.
 *
 * @param $updated_instance
 *   The updated Opening hours instance as an object.
 *
 * @param $instance
 *   The old Opening hours instance as an object. If this object is NULL,
 *   then it is a new instance that is getting saved.
 */
function hook_opening_hours_presave($updated_instance, $instance) {

  // No example.
}

/**
 * Allows modules to act before an Opening hours instance is deleted.
 *
 * @param $instance
 *   The Opening hours instance as an object.
 */
function hook_opening_hours_delete($instance) {

  // No example.
}

Functions

Namesort descending Description
hook_opening_hours_delete Allows modules to act before an Opening hours instance is deleted.
hook_opening_hours_presave Allows modules to alter Opening hours instances before saving them.