You are here

function calendar_systems_get_all_plugins in Calendar Systems 6.3

Same name and namespace in other branches
  1. 6 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' => 'Drupal\'s Default',
      'installed' => TRUE,
      'installed version' => 2,
    ),
    /*
    'gregorian' => array(
        'title' => 'Gregorian',
        'installed' => TRUE,
        'installed version' => 2,
    ),
    */
    'iranian' => array(
      'title' => 'Iranian',
      'installed' => TRUE,
      'installed version' => 2,
    ),
    'arabic' => array(
      'title' => 'Arabic',
      'installed' => TRUE,
      'installed version' => 2,
    ),
  );
  return $result;
}