]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/DynamicIncludePage.php
getName should not translate
[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     function run($dbi, $argstr, &$request, $basepage)
49     {
50         global $WikiTheme;
51         $args = $this->getArgs($argstr, $request, false);
52         $page =& $args['page'];
53         if (ENABLE_AJAX) {
54             if ($args['state'])
55                 $html = WikiPlugin_IncludePage::run($dbi, $argstr, $request, $basepage);
56             else
57                 $html = HTML(HTML::p(array('class' => 'transclusion-title'),
58                         fmt(" %s :", WikiLink($page))),
59                     HTML::div(array('class' => 'transclusion'), ''));
60             $ajaxuri = WikiURL($page, array('format' => 'xml'));
61         } else {
62             $html = WikiPlugin_IncludePage::run($dbi, $argstr, $request, $basepage);
63         }
64         $body = $html->_content[1];
65         $id = 'DynInc-' . MangleXmlIdentifier($page);
66         $body->setAttr('id', $id . '-body');
67         $png = $WikiTheme->_findData('images/folderArrow' .
68             ($args['state'] ? 'Open' : 'Closed') .
69             '.png');
70         $icon = HTML::img(array('id' => $id . '-img',
71             'src' => $png,
72             'onclick' => ENABLE_AJAX
73                 ? "showHideAsync('" . $ajaxuri . "','$id')"
74                 : "showHideFolder('$id')",
75             'alt' => _("Click to hide/show"),
76             'title' => _("Click to hide/show")));
77         $header = HTML::p(array('class' => 'transclusion-title',
78                 'style' => "text-decoration: none;"),
79             $icon,
80             fmt(" %s :", WikiLink($page)));
81         if ($args['state']) { // show base
82             $body->setAttr('style', 'display:block');
83             return HTML($header, $body);
84         } else { // do not show base
85             $body->setAttr('style', 'display:none');
86             if (ENABLE_AJAX)
87                 return HTML($header, $body); // async (load in background and insert)
88             else
89                 return HTML($header, $body); // sync (load but display:none)
90         }
91     }
92 }
93
94 // Local Variables:
95 // mode: php
96 // tab-width: 8
97 // c-basic-offset: 4
98 // c-hanging-comment-ender-p: nil
99 // indent-tabs-mode: nil
100 // End: