]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/BlogJournal.php
include [all] Include and file path should be devided with single space. File path...
[SourceForge/phpwiki.git] / lib / plugin / BlogJournal.php
1 <?php // -*-php-*-
2
3 /*
4  * Copyright (C) 2005 $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 require_once 'lib/plugin/WikiBlog.php';
24
25 /**
26  * BlogJournal - Include the latest blog entries for the current users blog if signed,
27  *               or the ADMIN_USER's Blog if not.
28  * UnfoldSubpages for blogs.
29  * Rui called this plugin "JournalLast", but this was written completely independent,
30  * without having seen the src.
31  *
32  * @author: Reini Urban
33  */
34 class WikiPlugin_BlogJournal
35 extends WikiPlugin_WikiBlog
36 {
37     function getName() {
38         return _("BlogJournal");
39     }
40
41     function getDescription() {
42         return _("Include latest blog entries for the current or ADMIN user");
43     }
44
45     function getDefaultArguments() {
46         return array('count'    => 7,
47                      'user'     => '',
48                      'order'    => 'reverse',        // latest first
49                      'month'    => false,
50                      'noheader' => 0
51                      );
52     }
53
54     function run($dbi, $argstr, &$request, $basepage) {
55         if (is_array($argstr)) { // can do with array also.
56             $args =& $argstr;
57             if (!isset($args['order'])) $args['order'] = 'reverse';
58         } else {
59             $args = $this->getArgs($argstr, $request);
60         }
61         $user = $request->getUser();
62         if (empty($args['user'])) {
63             if ($user->isAuthenticated()) {
64                 $args['user'] = $user->UserName();
65             } else {
66                 $args['user'] = '';
67             }
68         }
69         if (!$args['user'] or $args['user'] == ADMIN_USER) {
70             if (BLOG_DEFAULT_EMPTY_PREFIX) {
71                 $args['user'] = '';             // "Blogs/day" pages
72             } else {
73                 $args['user'] = ADMIN_USER; // "Admin/Blogs/day" pages
74             }
75         }
76         $parent = (empty($args['user']) ? '' : $args['user'] . SUBPAGE_SEPARATOR);
77
78         $sp = HTML::Raw('&middot; ');
79         $prefix = $base = $parent . $this->_blogPrefix('wikiblog');
80         if ($args['month'])
81             $prefix .= (SUBPAGE_SEPARATOR . $args['month']);
82         $pages = $dbi->titleSearch(new TextSearchQuery("^".$prefix.SUBPAGE_SEPARATOR, true, 'posix'));
83         $html = HTML(); $i = 0;
84         while (($page = $pages->next()) and $i < $args['count']) {
85             $rev = $page->getCurrentRevision(false);
86             if ($rev->get('pagetype') != 'wikiblog') continue;
87             $i++;
88             $blog = $this->_blog($rev);
89             //$html->pushContent(HTML::h3(WikiLink($page, 'known', $rev->get('summary'))));
90             $html->pushContent($rev->getTransformedContent('wikiblog'));
91         }
92         if ($args['user'] == $user->UserName() or $args['user'] == '')
93             $html->pushContent(Button(array('action'=>'WikiBlog',
94                                             'mode'=>'add'),
95                                       _("New entry"), $base));
96         if (!$i)
97             return HTML(HTML::h3(_("No Blog Entries")), $html);
98         if (!$args['noheader'])
99             return HTML(HTML::h3(sprintf(_("Blog Entries for %s:"), $this->_monthTitle($args['month']))),
100                         $html);
101         else
102             return $html;
103     }
104 };
105
106 // Local Variables:
107 // mode: php
108 // tab-width: 8
109 // c-basic-offset: 4
110 // c-hanging-comment-ender-p: nil
111 // indent-tabs-mode: nil
112 // End: