]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/CacheTest.php
Whitespace only
[SourceForge/phpwiki.git] / lib / plugin / CacheTest.php
1 <?php
2
3 /*
4  * Copyright (C) 2002 Johannes Große
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 // | CacheTest.php                                                       |
25 // +---------------------------------------------------------------------+
26 // | simple test of the WikiPluginCached class which provides a          |
27 // | text to image conversion.                                           |
28 // | This is a usage example of WikiPluginCached.                        |
29 // |                                                                     |
30 // | You may copy this code freely under the conditions of the GPL       |
31 // +---------------------------------------------------------------------+
32
33 /*------------------------------------------------------------------------
34  | CacheTest
35  *------------------------------------------------------------------------
36  |
37  | You may call this plugin as follows:
38  |
39  |        <<CacheTest text="What a wonderful test!" >>
40  |
41
42 /*-----------------------------------------------------------------------
43  |
44  |  Source
45  |
46  *----------------------------------------------------------------------*/
47
48 /*-----------------------------------------------------------------------
49  | WikiPlugin_CacheTest
50  *----------------------------------------------------------------------*/
51
52 require_once 'lib/WikiPluginCached.php';
53
54 class WikiPlugin_CacheTest
55 extends WikiPluginCached
56 {
57     /* --------- overwrite virtual or abstract methods ---------------- */
58
59     function getPluginType() {
60         return PLUGIN_CACHED_IMG_ONDEMAND;
61     }
62
63     function getName() {
64         return "CacheTest";
65     }
66
67     function getDescription() {
68         return 'This is a simple example using WikiPluginCached.';
69     }
70
71     function getDefaultArguments() {
72         return array('text' => $this->getDescription(),
73                      'font' => '3',
74                      'type' => 'png' );
75     }
76
77     // should return image handle
78     //
79     // if an error occurs you MUST call
80     // $this->complain('aboutwhichidocomplain') you may produce an
81     // image handle to an error image if you do not,
82     // WikiPluginImageCache will do so.
83
84     function getImage($dbi, $argarray, $request) {
85         extract($argarray);
86         return $this->produceGraphics($text,$font);
87
88         // This should also work
89         // return $this->lazy_produceGraphics($text,$font);
90     } // getImage
91
92     function getImageType($dbi, $argarray, $request) {
93         extract($argarray);
94         if (in_array($type, array('png', 'gif', 'jpg'))) {
95             return $type;
96         }
97         return 'png';
98     }
99
100     function getAlt($dbi, $argarray, $request) {
101         // ALT-text for <img> tag
102         extract($argarray);
103         return $text;
104     }
105
106     function getExpire($dbi, $argarray, $request) {
107         return '+600'; // 600 seconds life time
108     }
109
110     /* -------------------- extremely simple converter -------------------- */
111
112     function produceGraphics($text, $font ) {
113         // The idea (and some code) is stolen from the text2png plugin
114         // but I did not want to use TTF. ImageString is quite ugly
115         // and quite compatible. It's only a usage example.
116
117         if ($font<1 || $font>5) {
118             $text = "Fontnr. (font=\"$font\") should be in range 1-5";
119             $this->complain($text);
120             $font = 3;
121         }
122
123         $ok = ($im = @ImageCreate(400, 40));
124         $bg_color    = ImageColorAllocate($im, 240, 240, 240);
125         $text_color1 = ImageColorAllocate($im, 120, 120, 120);
126         $text_color2 = ImageColorAllocate($im, 0, 0, 0);
127
128         ImageFilledRectangle($im, 0, 0, 149, 49, $bg_color);
129         ImageString($im, $font, 11, 12, $text, $text_color1);
130         ImageString($im, $font, 10, 10, $text, $text_color2);
131
132         if (!$ok) {
133             // simple error handling by WikiPluginImageCache
134             $this->complain("Could not create image");
135             return false;
136         }
137
138         // image creation takes really _much_ time :-)
139         // so caching is very useful!
140         sleep(4);
141
142         return $im;
143     } // produce_Graphics
144
145     /* -------------------------------------------------------------------- */
146
147     // we could have used the simple built-in text2img function
148     // instead of writing our own:
149
150     function lazy_produceGraphics( $text, $font ) {
151         if ($font<1 || $font>5) {
152             $text = "Fontnr. (font=\"$font\") should be in range 1-5";
153             $this->complain($text);
154             $font = 3;
155
156         }
157
158         return $this->text2img($text, $font, array(0, 0, 0),
159                                array(255, 255, 255));
160     } // lazy_produceGraphics
161
162 }
163
164 // Local Variables:
165 // mode: php
166 // tab-width: 8
167 // c-basic-offset: 4
168 // c-hanging-comment-ender-p: nil
169 // indent-tabs-mode: nil
170 // End: