You are here

function mobile_tools_context_registry in Mobile Tools 6.3

Same name and namespace in other branches
  1. 6.2 mobile_tools.module \mobile_tools_context_registry()

File

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

Code

function mobile_tools_context_registry() {
  return array(
    'conditions' => array(
      'mobile' => array(
        'title' => t('Context for mobile devices'),
        'plugin' => 'mobile_tools_context_condition_mobile',
        'description' => 'Choose for which device type or device group this context must apply',
      ),
    ),
  );
}