]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/DynamicIncludePage.php
Remove unused function _showvalue
[SourceForge/phpwiki.git] / lib / plugin / DynamicIncludePage.php
1 <?php
2
3 /*
4  * Copyright 2009 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * DynamicIncludePage - Include wikipage asynchronously. Icon to show/hide.
25  * Usage:   <<DynamicIncludePage page=OtherPage state=true ...>>
26  * Author:  Reini Urban
27  */
28
29 require_once 'lib/plugin/IncludePage.php';
30
31 class WikiPlugin_DynamicIncludePage
32     extends WikiPlugin_IncludePage
33 {
34     function getDescription()
35     {
36         return _("Dynamically include the content from another wiki page.");
37     }
38
39     function getDefaultArguments()
40     {
41         return array_merge
42         (WikiPlugin_IncludePage::getDefaultArguments(),
43             array(
44                 'state' => false, // initial state: false <=> [+], true <=> [-]
45             ));
46     }
47
48     /**
49      * @param WikiDB $dbi
50      * @param string $argstr
51      * @param WikiRequest $request
52      * @param string $basepage
53      * @return mixed
54      */
55     function run($dbi, $argstr, &$request, $basepage)
56     {
57         global $WikiTheme;
58         $args = $this->getArgs($argstr, $request, array());
59         $page =& $args['page'];
60         if (ENABLE_AJAX) {
61             if ($args['state'])
62                 $html = WikiPlugin_IncludePage::run($dbi, $argstr, $request, $basepage);
63             else
64                 $html = HTML(HTML::p(array('class' => 'transclusion-title'),
65                         fmt(" %s :", WikiLink($page))),
66                     HTML::div(array('class' => 'transclusion'), ''));
67             $ajaxuri = WikiURL($page, array('format' => 'xml'));
68         } else {
69             $html = WikiPlugin_IncludePage::run($dbi, $argstr, $request, $basepage);
70         }
71         $body = $html->_content[1];
72         $id = 'DynInc-' . MangleXmlIdentifier($page);
73         $body->setAttr('id', $id . '-body');
74         $png = $WikiTheme->_findData('images/folderArrow' .
75             ($args['state'] ? 'Open' : 'Closed') .
76             '.png');
77         $icon = HTML::img(array('id' => $id . '-img',
78             'src' => $png,
79             'onclick' => ENABLE_AJAX
80                 ? "showHideAsync('" . $ajaxuri . "','$id')"
81                 : "showHideFolder('$id')",
82             'alt' => _("Click to hide/show"),
83             'title' => _("Click to hide/show")));
84         $header = HTML::p(array('class' => 'transclusion-title',
85                 'style' => "text-decoration: none;"),
86             $icon,
87             fmt(" %s :", WikiLink($page)));
88         if ($args['state']) { // show base
89             $body->setAttr('style', 'display:block');
90             return HTML($header, $body);
91         } else { // do not show base
92             $body->setAttr('style', 'display:none');
93             if (ENABLE_AJAX)
94                 return HTML($header, $body); // async (load in background and insert)
95             else
96                 return HTML($header, $body); // sync (load but display:none)
97         }
98     }
99 }
100
101 // Local Variables:
102 // mode: php
103 // tab-width: 8
104 // c-basic-offset: 4
105 // c-hanging-comment-ender-p: nil
106 // indent-tabs-mode: nil
107 // End: