You are here

function mobile_tools_site_type_options in Mobile Tools 5

Same name and namespace in other branches
  1. 6.3 mobile_tools.admin.inc \mobile_tools_site_type_options()
  2. 6 mobile_tools.admin.inc \mobile_tools_site_type_options()
  3. 7.2 mobile_tools.admin.inc \mobile_tools_site_type_options()

Helper function to return the options for definition of the Drupal usage

File

./mobile_tools.module, line 627
Mobile Tools provides a range of functionality assisting in creating a mobile drupal site . this functionality contains:

Code

function mobile_tools_site_type_options() {
  $options = array(
    'mobile' => t('Only the mobile site'),
    'desktop' => t('only the deskop site'),
    'mobile-desktop' => t('for both mobile and desktop site'),
  );
  return $options;
}