Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
HRINFO-620 - view more link
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumev committed Jun 28, 2017
1 parent afb859d commit f362b33
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ function ar_assessments_key_assessments_render($subtype, $conf, $panel_args, $co
'href' => $value['url'],
);
}
$block->content = theme('links', array('links' => $links));
$read_more = '<div class="more-link read-more">';
$read_more .= l(t('View more'), 'node/1');
$read_more .= '</div>';

$block->content = $read_more . theme('links', array('links' => $links));
}

return $block;
Expand Down

0 comments on commit f362b33

Please # to comment.