function mobile_tools_content_build_modes in Mobile Tools 6
Same name and namespace in other branches
- 6.3 mobile_tools.module \mobile_tools_content_build_modes()
- 6.2 mobile_tools.module \mobile_tools_content_build_modes()
Implementation of hook_content_build_modes
File
- ./
mobile_tools.module, line 691 - Mobile Tools provides a range of functionality assisting in creating a mobile Drupal site . this functionality contains:
Code
function mobile_tools_content_build_modes() {
return array(
'mobile_tools' => array(
'title' => t('Mobile theme'),
'build modes' => array(
'mobile_tools' => array(
'title' => t('Mobile theme'),
'views style' => TRUE,
),
),
),
);
}