tweak to text

This commit is contained in:
Nathan Coad
2018-07-04 18:04:20 +10:00
parent 62be5346fb
commit 202d882bd6
2 changed files with 3 additions and 2 deletions

View File

@@ -683,8 +683,8 @@ function booking_menu() {
); );
$items['admin/booking/rooms/report'] = array( $items['admin/booking/rooms/report'] = array(
'title' => 'View All Room Allocations', 'title' => 'View Room Mate Preferences and Room Allocations',
'description' => 'View All Room Allocations', 'description' => 'View Room Mate Preferences and Room Allocations',
'page callback' => 'booking_roomallocations_view_summary', 'page callback' => 'booking_roomallocations_view_summary',
'access arguments' => array("view room allocations"), 'access arguments' => array("view room allocations"),
'type' => MENU_LOCAL_ACTION, 'type' => MENU_LOCAL_ACTION,

View File

@@ -33,6 +33,7 @@ function booking_room_view_summary() {
//output everything //output everything
$output .= t("<h3>!event Room Locations</h3>", array('!event' => $event->booking_eventname)); $output .= t("<h3>!event Room Locations</h3>", array('!event' => $event->booking_eventname));
$output .= t("<p>Use the link above to view room mate preferences and room allocations.</p>");
$output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => $attributes)); $output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => $attributes));
return $output; return $output;