You are here

function mobile_tools_content_build_modes in Mobile Tools 6.2

Same name and namespace in other branches
  1. 6.3 mobile_tools.module \mobile_tools_content_build_modes()
  2. 6 mobile_tools.module \mobile_tools_content_build_modes()

Implementation of hook_content_build_modes().

File

./mobile_tools.module, line 656
Primarily Drupal hooks.

Code

function mobile_tools_content_build_modes() {
  $build_modes = array();
  $build_modes['mobile_tools_types'] = array(
    'title' => 'Mobile Device',
    'build modes' => array(
      'mobile' => array(
        'title' => 'Mobile',
        'views style' => TRUE,
      ),
    ),
  );
  return $build_modes;
}