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

Source for file mod_site_title.php

Documentation is available at mod_site_title.php

  1. <?php
  2. /**
  3.  * $Header: /cvsroot/bitweaver/_bit_search/modules/mod_global_search.php,v 1.12 2010/04/17 15:36:08 wjames5 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 below for details and a complete list of authors.
  9.  * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
  10.  *
  11.  * $Id: mod_global_search.php,v 1.12 2010/04/17 15:36:08 wjames5 Exp $
  12.  * @author  Luis Argerich (lrargerich@yahoo.com)
  13.  * @package search
  14.  * @subpackage modules
  15.  */
  16.  
  17. /**
  18.  * Initialization
  19.  */
  20. global $gLibertySystem$gBitThemes;
  21. require_once(SEARCH_PKG_PATH."search_lib.php");
  22.  
  23. ifempty$contentTypes ) ) {
  24.     $contentTypes array'' => tra'All Content' ) );
  25.     foreach$gLibertySystem->mContentTypes as $cType {
  26.         if (SearchLib::has_permission($cType["content_type_guid"])
  27.             and $gBitSystem->getConfig('search_restrict_types'||
  28.                   $gBitSystem->getConfig('search_pkg_'.$cType["content_type_guid"]) ) ) {
  29.             $contentTypes[$cType['content_type_guid']] $gLibertySystem->getContentTypeName$cType['content_type_guid');
  30.         }
  31.     }
  32. }
  33. $gBitSmarty->assign'contentTypes'$contentTypes );
  34. ?>

Documentation generated on Wed, 29 Jul 2015 13:57:12 +0000 by phpDocumentor 1.5.0-lsces