You are here

interface ExpireInterface in Cache Expiration 7.2

@file Interface that should implements class to be added in Expiration group.

Hierarchy

Expanded class hierarchy of ExpireInterface

All classes that implement ExpireInterface

File

includes/expire.interface.inc, line 8
Interface that should implements class to be added in Expiration group.

View source
interface ExpireInterface {

  /**
   * Expires urls for the object.
   *
   * @param $object
   *   Some object (user, node, comment, etc).
   *
   * @param $action
   *   Action that was executed for the object.
   *
   * @param $skip_action_check
   *   Shows whether should we check executed action or just expire node.
   */
  function expire($object, $action, $skip_action_check = FALSE);

}

Members

Namesort descending Modifiers Type Description Overrides
ExpireInterface::expire function Expires urls for the object. 8