コード例 #1
0
ファイル: sitemap.php プロジェクト: bitweaver/wiki
 * Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
 * 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
 *
 * @package wiki
 * @subpackage functions
 */
/**
 * required setup
 */
require_once '../kernel/setup_inc.php';
require_once WIKI_PKG_PATH . 'BitBook.php';
$book = new BitBook();
$gSiteMapHash = array();
$listHash = array();
if ($bookList = $book->getList($listHash)) {
    foreach ($bookList['data'] as $bookHash) {
        $bookStructure = new LibertyStructure($bookHash['structure_id']);
        $listBook = $bookStructure->buildTreeToc($bookHash['structure_id']);
        process_book_list($listBook);
    }
}
function process_book_list($pList, $pDepth = 1)
{
    global $gSiteMapHash;
    foreach (array_keys($pList) as $key) {
        if (!empty($pList[$key]['display_url'])) {
            $hash = array();
            $hash['loc'] = BIT_BASE_URI . $pList[$key]['display_url'];
            $hash['lastmod'] = date('Y-m-d', $pList[$key]['last_modified']);
            if (time() - $pList[$key]['last_modified'] < 86400) {
コード例 #2
0
ファイル: books.php プロジェクト: bitweaver/wiki
 *
 * @package wiki
 * @subpackage functions
 */
/**
 * required setup
 */
require_once '../kernel/setup_inc.php';
include_once WIKI_PKG_PATH . 'BitBook.php';
// verify stuff
$gBitSystem->verifyPackage('wiki');
$gBitSystem->verifyPermission('p_wiki_list_pages');
$book = new BitBook();
$listHash = array();
$listHash['content_type_guid'] = BITBOOK_CONTENT_TYPE_GUID;
$channels = $book->getList($listHash);
$cant_pages = ceil($channels["cant"] / $listHash['max_records']);
$gBitSmarty->assignByRef('cant_pages', $cant_pages);
$gBitSmarty->assign('actual_page', 1 + $listHash['offset'] / $listHash['max_records']);
if ($channels["cant"] > $listHash['offset'] + $listHash['max_records']) {
    $gBitSmarty->assign('next_offset', $listHash['offset'] + $listHash['max_records']);
} else {
    $gBitSmarty->assign('next_offset', -1);
}
// If offset is > 0 then prev_offset
if ($listHash['offset'] > 0) {
    $gBitSmarty->assign('prev_offset', $listHash['offset'] - $listHash['max_records']);
} else {
    $gBitSmarty->assign('prev_offset', -1);
}
$gBitSmarty->assignByRef('channels', $channels["data"]);