diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/includes/common.inc b/includes/common.inc index 1cf0b3c61..04026a81e 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -2,10 +2,11 @@ // $Id$ /** - * @name drupal_title - * Functions to get and set the title of the current page. - * @{ - */ + @name drupal_title + + Functions to get and set the title of the current page. + @{ +**/ function drupal_set_title($title = NULL) { static $stored_title; @@ -27,12 +28,14 @@ function drupal_get_title() { // @} /** - * @name drupal_breadcrumb - * Functions to get and set the breadcrumb trail of the current page. The - * breadcrumb trail is represented as an array of links, starting with - * "home" and proceeding up to but not including the current page. - * @{ - */ + @name drupal_breadcrumb + + Functions to get and set the breadcrumb trail of the current page. + + @param $breadcrumb array of links, starting with "home" and proceeding + up to but not including the current page. + @{ +**/ function drupal_set_breadcrumb($breadcrumb = NULL) { static $stored_breadcrumb; @@ -55,8 +58,8 @@ function drupal_get_breadcrumb() { // @} /** - * Build the alias/path array - */ + Build the alias/path array +**/ function drupal_get_path_map($action = "") { static $cache; |