function calendar_systems_get_all_plugins in Calendar Systems 6
Same name and namespace in other branches
- 6.3 calendar_systems.module \calendar_systems_get_all_plugins()
Gets list of all supported calendar systems
1 call to calendar_systems_get_all_plugins()
- calendar_systems_profile_overview in ./
calendar_systems.admin.inc - Display overview of setup Calendar systems Editor profiles; menu callback.
File
- ./
calendar_systems.module, line 105
Code
function calendar_systems_get_all_plugins() {
$result = array(
'default' => array(
'title' => t('Drupal\'s Default'),
'installed' => TRUE,
'installed version' => 2,
),
/*
'gregorian' => array(
'title' => t('Gregorian'),
'installed' => TRUE,
'installed version' => 2,
),
*/
'iranian' => array(
'title' => t('Iranian'),
'installed' => TRUE,
'installed version' => 2,
),
'arabic' => array(
'title' => t('Arabic'),
'installed' => TRUE,
'installed version' => 2,
),
'thai' => array(
'title' => t('Thai'),
'installed' => TRUE,
'installed version' => 3,
),
);
return $result;
}