}
// see if any other modules want to add any tabs
- CRM_Utils_Hook::eventTabs($tabs, $eventID);
+ CRM_Utils_Hook::tabset('civicrm/event/manage', $tabs,
+ array('event_id' => $eventID));
return $tabs;
}
* @return null
* @access public
*/
- static function eventTabs(&$tabs, $eventID) {
- return self::singleton()->invoke(2, $tabs, $eventID,
- self::$_nullObject, self::$_nullObject, self::$_nullObject, 'civicrm_eventTabs'
+ static function tabset($tabsetName, &$tabs, $context) {
+ return self::singleton()->invoke(3, $tabsetName, $tabs,
+ $context, self::$_nullObject, self::$_nullObject, 'civicrm_tabset'
);
}