aggregator.install in Zircon Profile 8
Same filename and directory in other branches
Install, update and uninstall functions for the aggregator module.
File
core/modules/aggregator/aggregator.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the aggregator module.
*/
/**
* Implements hook_requirements().
*/
function aggregator_requirements($phase) {
$has_curl = function_exists('curl_init');
$requirements = array();
$requirements['curl'] = array(
'title' => t('cURL'),
'value' => $has_curl ? t('Enabled') : t('Not found'),
);
if (!$has_curl) {
$requirements['curl']['severity'] = REQUIREMENT_ERROR;
$requirements['curl']['description'] = t('The Aggregator module could not be installed because the PHP <a href=":curl_url">cURL</a> library is not available.', array(
':curl_url' => 'http://php.net/manual/curl.setup.php',
));
}
return $requirements;
}
/**
* @addtogroup updates-8.0.0-rc
* @{
*/
/**
* The simple presence of this update function clears cached field definitions.
*/
function aggregator_update_8001() {
// Feed ID base field is now required.
}
/**
* @} End of "addtogroup updates-8.0.0-rc".
*/
Functions
Name | Description |
---|---|
aggregator_requirements | Implements hook_requirements(). |
aggregator_update_8001 | The simple presence of this update function clears cached field definitions. |