diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mod_global_search.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/mod_global_search.php b/modules/mod_global_search.php new file mode 100644 index 0000000..47c8ca3 --- /dev/null +++ b/modules/mod_global_search.php @@ -0,0 +1,21 @@ +<?php +/** + * $Header: /cvsroot/bitweaver/_bit_search/modules/mod_global_search.php,v 1.2 2005/11/22 07:27:44 squareing Exp $ + * + * Copyright (c) 2004 bitweaver.org + * Copyright (c) 2003 tikwiki.org + * Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. + * All Rights Reserved. See copyright.txt for details and a complete list of authors. + * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details + * + * $Id: mod_global_search.php,v 1.2 2005/11/22 07:27:44 squareing Exp $ + * @author Luis Argerich (lrargerich@yahoo.com) + * @package search + * @subpackage modules + */ +vd($gLibertySystem->mContentTypes); +foreach( $gLibertySystem->mContentTypes as $cType ) { + $contentTypes[$cType['content_type_guid']] = $cType['content_description']; +} +$gBitSmarty->assign( 'contentTypes', $contentTypes ); +?> |
