diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2005-11-22 07:27:44 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2005-11-22 07:27:44 +0000 |
| commit | 831fd06a3709500a46ff4a1dc90cfae456a5cb02 (patch) | |
| tree | 3cbeff30bba3617b955129b831baa026095bcf65 /modules | |
| parent | 8e3b0e69c145e5d356676988e8af397ae1157f83 (diff) | |
| download | search-831fd06a3709500a46ff4a1dc90cfae456a5cb02.tar.gz search-831fd06a3709500a46ff4a1dc90cfae456a5cb02.tar.bz2 search-831fd06a3709500a46ff4a1dc90cfae456a5cb02.zip | |
merge recent changes into HEAD
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 ); +?> |
