blob: 2e1422407ef71a0c4d996360c3b7d2857d4d473e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Provide a list of pigenoholes
*
* @package pigeonholes
* @subpackage functions
* @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/lookup_pigeonholes_inc.php,v 1.1 2005/08/21 16:22:44 squareing Exp $
*
* Copyright ( c ) 2005 bitweaver.org
* 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
*/
/**
* Required Files
*/
require_once( PIGEONHOLES_PKG_PATH.'/Pigeonholes.php' );
$gPigeonholes = new Pigeonholes( ( !empty( $_REQUEST['structure_id'] ) ? $_REQUEST['structure_id'] : NULL ), ( !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL ), TRUE, TRUE );
$gBitSmarty->assign( 'gPigeonholes', $gPigeonholes );
?>
|