You are here

function heartbeat_ds_layout_info in Heartbeat 7

Implements hook_ds_layout_info().

File

./heartbeat.module, line 754
Module file for heartbeat activity. Basic hook implementations and helper functions will be found here.

Code

function heartbeat_ds_layout_info() {
  $layouts = array(
    'heartbeat_2col' => array(
      'label' => t('Template with left/right for activity'),
      'path' => drupal_get_path('module', 'heartbeat') . '/layouts/heartbeat_2col',
      'regions' => array(
        'heartbeat_left' => t('Left'),
        'heartbeat_content' => t('Content'),
        'heartbeat_footer' => t('Footer'),
      ),
      'css' => TRUE,
    ),
  );
  return $layouts;
}