function vkxp_requirements in VK CrossPoster 7
Same name and namespace in other branches
- 6.3 vkxp.install \vkxp_requirements()
- 6 vkxp.install \vkxp_requirements()
- 6.2 vkxp.install \vkxp_requirements()
- 7.2 vkxp.install \vkxp_requirements()
Implements hook_requirements().
File
- ./
vkxp.install, line 11 - Requirements and uninstall functions for the vkxp module.
Code
function vkxp_requirements($phase) {
$requirements = array();
// Ensure translations don't break at install time.
$t = get_t();
if ($phase == 'runtime') {
// Check for presence of curl support.
if (!function_exists('curl_init')) {
$requirements['vkxp_curl'] = array(
'title' => $t('cURL Support for VKontakte CrossPoster'),
'value' => $t('VKontakte CrossPoster requires <a href="http://php.net/manual/en/book.curl.php">cURL support in PHP</a> to function fully. Without this, contents will not be posted to vkontakte.'),
'severity' => REQUIREMENT_ERROR,
);
}
else {
$requirements['vkxp_curl'] = array(
'title' => $t('cURL Support for VKontakte CrossPoster'),
'value' => $t('cURL enabled'),
'severity' => REQUIREMENT_OK,
);
}
}
return $requirements;
}