]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RichTable.php
Merge OldTextFormattingRules into TextFormattingRules; rename underscore plugins
[SourceForge/phpwiki.git] / lib / plugin / RichTable.php
1 <?php
2
3 /*
4  * Copyright (C) 2003 Sameer D. Sahasrabuddhe
5  * Copyright (C) 2005 $ThePhpWikiProgrammingTeam
6  * Copyright (C) 2008-2009 Marc-Etienne Vargenau, Alcatel-Lucent
7  *
8  * This file is part of PhpWiki.
9  *
10  * PhpWiki is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * PhpWiki is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24
25 /**
26  * RichTablePlugin
27  * A PhpWiki plugin that allows insertion of tables using a richer syntax.
28  */
29
30 class WikiPlugin_RichTable
31     extends WikiPlugin
32 {
33     function getDescription()
34     {
35         return _("Layout tables using a very rich markup style.");
36     }
37
38     function getDefaultArguments()
39     {
40         return array();
41     }
42
43     function run($dbi, $argstr, &$request, $basepage)
44     {
45         include_once 'lib/BlockParser.php';
46
47         $lines = preg_split('/\n/', $argstr);
48         $table = HTML::table();
49
50         if ($lines[0][0] == '*') {
51             $line = substr(array_shift($lines), 1);
52             $attrs = parse_attributes($line);
53             foreach ($attrs as $key => $value) {
54                 if (in_array($key, array("id", "class", "title", "style",
55                     "bgcolor", "frame", "rules", "border",
56                     "cellspacing", "cellpadding",
57                     "summary", "align", "width"))
58                 ) {
59                     $table->setAttr($key, $value);
60                 }
61             }
62         }
63
64         foreach ($lines as $line) {
65             if (substr($line, 0, 1) == "-") {
66                 if (isset($row)) {
67                     if (isset($cell)) {
68                         if (isset($content)) {
69                             if (is_numeric(trim($content))) {
70                                 $cell->pushContent(HTML::p(array('style' => "text-align:right"), trim($content)));
71                             } else {
72                                 $cell->pushContent(TransformText($content, $basepage));
73                             }
74                             unset($content);
75                         }
76                         $row->pushContent($cell);
77                         unset($cell);
78                     }
79                     $table->pushContent($row);
80                 }
81                 $row = HTML::tr();
82                 $attrs = parse_attributes(substr($line, 1));
83                 foreach ($attrs as $key => $value) {
84                     if (in_array($key, array("id", "class", "title", "style",
85                         "bgcolor", "align", "valign"))
86                     ) {
87                         $row->setAttr($key, $value);
88                     }
89                 }
90                 continue;
91             }
92             if (substr($line, 0, 1) == "|" and isset($row)) {
93                 if (isset($cell)) {
94                     if (isset ($content)) {
95                         if (is_numeric(trim($content))) {
96                             $cell->pushContent(HTML::p(array('style' => "text-align:right"), trim($content)));
97                         } else {
98                             $cell->pushContent(TransformText($content, $basepage));
99                         }
100                         unset($content);
101                     }
102                     $row->pushContent($cell);
103                 }
104                 $cell = HTML::td();
105                 $line = substr($line, 1);
106                 if ($line[0] == "*") {
107                     $attrs = parse_attributes(substr($line, 1));
108                     foreach ($attrs as $key => $value) {
109                         if (in_array($key, array("id", "class", "title", "style",
110                             "colspan", "rowspan", "width", "height",
111                             "bgcolor", "align", "valign"))
112                         ) {
113                             $cell->setAttr($key, $value);
114                         }
115                     }
116                     continue;
117                 }
118             }
119             if (isset($row) and isset($cell)) {
120                 $line = str_replace("?\>", "?>", $line);
121                 $line = str_replace("\~", "~", $line);
122                 if (empty($content)) $content = '';
123                 $content .= $line . "\n";
124             }
125         }
126         if (isset($row)) {
127             if (isset($cell)) {
128                 if (isset($content)) {
129                     if (is_numeric(trim($content))) {
130                         $cell->pushContent(HTML::p(array('style' => "text-align:right"), trim($content)));
131                     } else {
132                         $cell->pushContent(TransformText($content, $basepage));
133                     }
134                 }
135                 $row->pushContent($cell);
136             }
137             $table->pushContent($row);
138         }
139         return $table;
140     }
141 }
142
143 // Local Variables:
144 // mode: php
145 // tab-width: 8
146 // c-basic-offset: 4
147 // c-hanging-comment-ender-p: nil
148 // indent-tabs-mode: nil
149 // End: