public function PurgePurgerBundle::get_data in Purge 7.2
Function to select data from the dataset.
Return value
array $data
3 calls to PurgePurgerBundle::get_data()
- PurgePurgerBundleAPI::__construct in includes/
purge.class.inc - Constructs the full bundle.
- PurgePurgerBundleProcess::__construct in includes/
purge.class.inc - Constructor for the Configuration bundle.
- PurgePurgerBundleQueue::__construct in includes/
purge.class.inc - Constructs the bundle from queue items and executes the purges.
File
- includes/
purge.class.inc, line 802 - Contains all class and interface definitions for Purge.
Class
- PurgePurgerBundle
- Class definition for basic bundles.
Code
public function get_data() {
// Get the data from the given dataset.
$data = array();
$data = variable_get('purge_config', NULL);
return $data;
}