You are here

class PurgeQueueFake in Purge 7.2

Class definition for the Fake Queue. This will issue all requests in the current process.

Hierarchy

Expanded class hierarchy of PurgeQueueFake

File

includes/purge.class.inc, line 433
Contains all class and interface definitions for Purge.

View source
class PurgeQueueFake extends PurgeQueue {
  public $queue = array();

  /**
   * Calls the BundleQueue object.
   */
  public function process() {
    $queue_bundle = new PurgeBundleQueue($this->queue);
    $queue_bundle
      ->execute($this->queue);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Purge::$access public property
Purge::$available public property
Purge::$depend public property
Purge::$description public property
Purge::$enabled public property
Purge::$item public property
Purge::$name public property
Purge::$option public property
Purge::validate public function Does basic dependency checks for builtin dependencies. 5
Purge::__sleep public function Only serialize the static values. 1
PurgeQueueFake::$queue public property
PurgeQueueFake::process public function Calls the BundleQueue object.