diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/includes/common.inc b/includes/common.inc index f4cbac594..f8ee497ca 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4,7 +4,7 @@ /** * @defgroup common Core functions */ - + /** * @name Page title * @ingroup common @@ -93,31 +93,6 @@ function drupal_get_breadcrumb() { /* @} */ /** - * @name Page tabs - * @ingroup common - * - * Functions to get and set the tabs of the current page. - * @{ - */ - -/** - * @param $tab Array of links to use for tabs - */ -function drupal_set_tab($tab = NULL) { - static $stored_tab = array(); - - if (!is_null($tab)) { - $stored_tab[] = $tab; - } - return $stored_tab; -} - -function drupal_get_tab() { - return drupal_set_tab(); -} -/* @} */ - -/** * @name HTML head contents * @ingroup common * |