1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php
/**
* $Header
*
* @author xing <xing@synapse.plus.com>
* @version $Revision: 1.1 $
* @package pigeonholes
* @subpackage functions
*/
/**
* required setup
*/
require_once("../bit_setup_inc.php");
$gBitSystem->verifyPackage( 'pigeonholes' );
$gBitSystem->verifyPermission( 'bit_p_view_pigeonholes' );
include_once( PIGEONHOLES_PKG_PATH.'lookup_pigeonholes_inc.php' );
// some specific offsets and pagination settings
if( !empty( $_REQUEST['sort_mode'] ) ) {
$gBitSmarty->assign( 'sort_mode', $_REQUEST['sort_mode'] );
}
$gBitSmarty->assign( 'curPage', $page = !empty( $_REQUEST['page'] ) ? $_REQUEST['page'] : 1 );
$listHash = array(
'sort_mode' => !empty( $_REQUEST['sort_mode'] ) ? $_REQUEST['sort_mode'] : 'title_asc',
'max_rows' => $gBitSystem->mPrefs['maxRecords'],
'offset' => ( $page - 1 ) * $gBitSystem->mPrefs['maxRecords'],
'find' => !empty( $_REQUEST['find'] ) ? $_REQUEST['find'] : NULL,
);
$gBitSmarty->assign( 'pigeonList', $pigeonList = $gPigeonholes->getList( $listHash, TRUE, FALSE ) );
$gBitSmarty->assign( 'numPages', ceil( $pigeonList['cant'] / $gBitSystem->mPrefs['maxRecords'] ) );
// set up structure related stuff
foreach( $pigeonList['data'] as $key => $pigeonhole ) {
$gStructure = new LibertyStructure( $pigeonhole['root_structure_id'] );
$gStructure->load();
$pigeonList['data'][$key]['subtree'] = $gStructure->getSubTree( $gStructure->mStructureId );
}
//$gBitSmarty->assign_by_ref('offset', $offset);
$gBitSmarty->assign( 'pigeonList', $pigeonList['data'] );
$gBitSmarty->assign( 'pigeonCount', $pigeonList['cant'] );
$gBitSystem->display( 'bitpackage:pigeonholes/list.tpl', tra( 'List Pigeonholes' ) );
?>
|