You are here

function mobile_tools_site_type_options in Mobile Tools 6.3

Same name and namespace in other branches
  1. 5 mobile_tools.module \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.admin.inc, line 334
Adminstrative pages for Mobile Tools

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;
}