wiki
[ class tree: wiki ] [ index: wiki ] [ all elements ]

Source for file mod_breadcrumb.php

Documentation is available at mod_breadcrumb.php

  1. <?php
  2. /**
  3.  * $Header: /cvsroot/bitweaver/_bit_wiki/modules/mod_breadcrumb.php,v 1.3 2005/08/01 18:42:05 squareing Exp $
  4.  *
  5.  * Copyright (c) 2004 bitweaver.org
  6.  * Copyright (c) 2003 tikwiki.org
  7.  * Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
  8.  * All Rights Reserved. See copyright.txt for details and a complete list of authors.
  9.  * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
  10.  *
  11.  * $Id: mod_breadcrumb.php,v 1.3 2005/08/01 18:42:05 squareing Exp $
  12.  * @package wiki
  13.  * @subpackage modules
  14.  */
  15.  
  16. /**
  17.  * @param maxlen = max number of displayed characters for the page name
  18.  */
  19. if (!isset($_SESSION["breadCrumb"])) {
  20.     $_SESSION["breadCrumb"array();
  21. }
  22. $bbreadCrumb array_reverse($_SESSION["breadCrumb"]);
  23. $gBitSmarty->assign('breadCrumb'$bbreadCrumb);
  24. $gBitSmarty->assign('maxlen'isset($module_params["maxlen"]$module_params["maxlen"0);
  25. ?>

Documentation generated on Thu, 15 Feb 2007 20:45:08 +0000 by phpDocumentor 1.3.0