You are here

function views_table_rowspan_help in Views Table Rowspan 7

Same name and namespace in other branches
  1. 8 views_table_rowspan.module \views_table_rowspan_help()

Implements hook_help().

File

./views_table_rowspan.module, line 11
Merge duplicate rows in group to one row.

Code

function views_table_rowspan_help($path, $arg) {
  switch ($path) {

    // Help for module views_table_rowspan.
    case 'admin/help#views_table_rowspan':
      $help = '<p>' . t('Views Table Rowspan defines new views display format name "Table Rowspan". This display will group rows in table and merge row has same value to one row use property !url.', array(
        '!url' => '<a href="http://www.w3schools.com/tags/att_td_rowspan.asp">rowspan</a>',
      )) . '</p>';
      $help .= '<ul>';
      $help .= '<li>' . t('Create a !link (for example, a list of node).', array(
        '!link' => l(t('new view'), 'admin/structure/views/add'),
      )) . '</li>';
      $help .= '<li>' . t('Set format Table Rowspan for this view.') . '</li>';
      $help .= '<li>' . t('Add some field to this view.') . '</li>';
      $help .= '<li>' . t('Group field that has same value.') . '</li>';
      $help .= '<li>' . t('Check option "Merge rows in group".') . '</li>';
      $help .= '</ul>';
      return $help;
  }
}