_client_applications_get_all_versions()Return all available versions @todo This makes more sense as a define/setting 'cause of future versions
array All version numbers
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
);
}
?>