_client_applications_get_all_versions

Versions
mediamosa-174
_client_applications_get_all_versions()

Return all available versions @todo This makes more sense as a define/setting 'cause of future versions

Return value

array All version numbers

▾ 6 functions call _client_applications_get_all_versions()

client_applications_form in client_applications/client_applications.module
Define the client_applications form. @global object $user User-object with roles and permission
client_applications_form in client_applications/client_applications.module
Define the client_applications form. @global object $user User-object with roles and permission
client_applications_form in client_applications/client_applications.module
Define the client_applications form. @global object $user User-object with roles and permission
madrest_init in madrest/madrest.module
Begin punt voor rest functies Init zal niet terug komen indien een rest call wordt gedaan. In elk ander geval zal drupal het verder afhandelen.
madrest_init in madrest/madrest.module
Begin punt voor rest functies Init zal niet terug komen indien een rest call wordt gedaan. In elk ander geval zal drupal het verder afhandelen.
madrest_init in madrest/madrest.module
Begin punt voor rest functies Init zal niet terug komen indien een rest call wordt gedaan. In elk ander geval zal drupal het verder afhandelen.

Code

client_applications/client_applications.module, line 752

<?php
function _client_applications_get_all_versions() {
  return array(
    '1.1.0' => '1.1.0',
    '1.2.0' => '1.2.0',
    '1.3.0' => '1.3.0',
    '1.4.0' => '1.4.0',
    '1.5.0' => '1.5.0',
    '1.6.0' => '1.6.0',
    '1.7.0' => '1.7.0',
    'LATEST' => t('Latest') // Make sure that the LATEST value is last in the array
  );
}
?>