Added table view of individual study group members
This commit is contained in:
@@ -303,10 +303,19 @@ function booking_menu() {
|
||||
);
|
||||
|
||||
$items['admin/config/booking/studygroups/view'] = array(
|
||||
'title' => 'View Study Groups',
|
||||
'title' => 'View All Study Groups',
|
||||
'description' => 'View Study Group memberships',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('booking_studygroups_view'),
|
||||
'page arguments' => array('booking_studygroups_view_form', false),
|
||||
'access arguments' => array('access administration pages'),
|
||||
//'type' => MENU_NORMAL_ITEM,
|
||||
);
|
||||
|
||||
$items['admin/config/booking/studygroups/%/view'] = array(
|
||||
'title' => 'View Study Group',
|
||||
'description' => 'View Study Group memberships',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('booking_studygroups_view_form', true, 4),
|
||||
'access arguments' => array('access administration pages'),
|
||||
//'type' => MENU_NORMAL_ITEM,
|
||||
);
|
||||
|
Reference in New Issue
Block a user