blob: 18fe4d1b5e58df5a34ec6bc80fb3aac8de8a51d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Provide a list of pigenoholes
*
* @package pigeonholes
* @subpackage functions
* @version $Header$
*
* Copyright ( c ) 2005 bitweaver.org
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*/
/**
* Required Files
*/
// include service functions
use Bitweaver\Pigeonholes;
$gContent = new Pigeonholes( ( !empty( $_REQUEST['structure_id'] ) ? $_REQUEST['structure_id'] : NULL ), ( !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL ) );
$gContent->load( TRUE );
$gBitSmarty->assign( 'gContent', $gContent );
|