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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?php
namespace Bitweaver\Liberty;
use Bitweaver\KernelTools;
use Bitweaver\BitBase;
/**
* @version $Revision$
* @package liberty
* @subpackage plugins_data
*/
// +----------------------------------------------------------------------+
// | Copyright (c) 2004, 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
// |
// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Author: Christian Fowler <spiderr@users.sourceforge.net>
// +----------------------------------------------------------------------+
// $Id$
/**
* definitions
*/
global $gLibertySystem;
define( 'PLUGIN_GUID_DATATOC', 'datatoc' );
global $gLibertySystem;
$pluginParams = [
'tag' => 'toc',
'auto_activate' => true,
'requires_pair' => false,
'load_function' => '\data_toc',
'title' => 'Structure Table Of Contents',
'help_page' => 'DataPluginTOC',
'description' => KernelTools::tra("Display a Table Of Contents for Structures"),
'help_function' => '\data_toc_help',
'syntax' => '{toc structure_id= }',
'plugin_type' => DATA_PLUGIN,
'booticon' => '{booticon iname="icon-list-ol" iexplain="Structure Table of Contents"}',
'taginsert' => '{toc}',
'structure_id' => 'id of the structure to display',
];
$gLibertySystem->registerPlugin( PLUGIN_GUID_DATATOC, $pluginParams );
$gLibertySystem->registerDataTag( $pluginParams['tag'], PLUGIN_GUID_DATATOC );
/**
* Help Function
*/
function data_toc_help() {
return '<table class="data help">'
.'<tr>'
.'<th>' . KernelTools::tra( "Key" ) . '</th>'
.'<th>' . KernelTools::tra( "Type" ) . '</th>'
.'<th>' . KernelTools::tra( "Comments" ) . '</th>'
.'</tr>'
.'<tr class="odd">'
.'<td>display</td>'
.'<td>' . KernelTools::tra( "string") . '<br />' . KernelTools::tra("(optional)") . '</td>'
.'<td>' . KernelTools::tra( "Will display a Table Of Contents for Structures, such as Wiki-books. Works only if the page where the tag is used is a part of some structure. If the page belongs to several wiki-books, use structure_id attribute.") . '</td>'
.'</tr>'
.'</table>'
. KernelTools::tra("Example: ") . '{toc structure_id=8 display=full_toc}';
}
/**
* Load Function
*/
function data_toc( $pData, $pParams ) {
global $gStructure, $gContent, $gBitSmarty;
if( is_object( $gStructure ) && $gStructure->isValid() ) {
$struct = &$gStructure;
} elseif( BitBase::verifyId( $pParams['structure_id'] ) ) {
$struct = new LibertyStructure( $pParams['structure_id'] );
$struct->load();
} elseif( is_object( $gContent ) ) {
$structures = $gContent->getStructures();
// We take the first structure. not good, but works for now - spiderr
if( !empty( $structures[0] ) ) {
require_once LIBERTY_PKG_CLASS_PATH.'LibertyStructure.php';
$struct = new LibertyStructure( $structures[0]['structure_id'] );
$struct->load();
}
}
$repl = ' ';
if( !empty( $struct) && is_object( $struct ) && $struct->isValid()) {
$get_structure = BitBase::verifyId( $structure_id ) ? $structure_id : $struct->mStructureId;
$tree = $struct->getSubTree( $get_structure, !empty( $pParams['display'] ) && $pParams['display'] == 'full_toc' );
$gBitSmarty->assign( "subtree", $tree );
$repl = $gBitSmarty->fetch( "bitpackage:liberty/plugins/data_toc.tpl" );
}
return $repl;
}
|