You are here

function hds_content_build_modes in Heartbeat 6.4

Implementation of hook_content_build_modes().

1 call to hds_content_build_modes()
hds_form_alter in modules/hds/hds.module
Implementation of hook_form_alter().

File

modules/hds/hds.module, line 208
Heartbeat displays module.

Code

function hds_content_build_modes() {
  $build_modes = array(
    'hds' => array(
      'title' => t('Heartbeat displays'),
      'build modes' => array(
        'full' => array(
          'title' => t('Full message'),
          'module' => 'hds',
          'weight' => -1,
        ),
        'message' => array(
          'title' => t('Message'),
          'module' => 'hds',
          'weight' => -1,
        ),
      ),
    ),
  );
  return $build_modes;
}