]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/PluginManager
doc update
[SourceForge/phpwiki.git] / pgsrc / PluginManager
1 Date: Fri, 17 Dec 2004 09:53:18 +0200
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.11pre)
3 X-Rcs-Id: $Id: PluginManager,v 1.8 2004-12-17 09:23:42 rurban Exp $
4 Content-Type: application/x-phpwiki;
5   pagename=PluginManager;
6   pgsrc_version="2 $Revision: 1.8 $";
7   flags=PAGE_LOCKED;
8   markup=2;
9   charset=iso-8859-1
10 Content-Transfer-Encoding: binary
11
12 PhpWiki lets you extend it with new functionality via a plugin
13 mechanism. In short, you extend a PHP class we provide and customize
14 it to print out the content you want. For more information see
15 WikiPlugin, HelloWorldPlugin, and view the source of the files in
16 <tt>lib/plugin</tt>.
17
18 If there is no example page for the plugin, or you need more
19 information, the best place to go is the source of the plugin. Under
20 your wiki's root directory, the folder <tt>lib/plugin</tt> contains all the PHP
21 files for the plugins.
22
23 ! External Requirements
24 Some plugins require correctly configured PLUGIN_CACHED and external libraries 
25 not provided with PhpWiki or PHP, such as 
26 * [PHP with GD support | php-function:ref.image] for the text2png plugin, 
27 * [LaTeX2HTML | ftp://ftp.dante.de/tex-archive/support/latex2html ] for the TexToPngPlugin and TeX2pngPlugin,
28 * [graphviz | http://graphviz.org/] for the GraphVizPlugin and VisualWikiPlugin, 
29 * [ploticus | http://ploticus.sourceforge.net/] for the PloticusPlugin, 
30 * [phpweather | http://phpweather.sf.net] for the PhpWeatherPlugin,
31 * [highlight | http://www.andre-simon.de/] for the SyntaxHighlighterPlugin,
32 * a browser with [<iframe> support|http://www.cs.tut.fi/~jkorpela/html/iframe.html] for the TranscludePlugin,
33 * USE_DB_SESSION = true (default for the peardb, adodb or dba backends) for the WhoIsOnline plugin,
34 * --with-xml support (with expat or libxml2) for the ~RssFeed plugin (ProjectSummary, RecentReleases) and 
35   HtmlParser support (ImportHtml, HtmlAreaEditing),
36 * PHP Mail functionality (php.ini: SMTP + sendmail_from on Windows or sendmail_path) for email 
37   PageChangeNotifications and ModeratedPage's,
38 * a [Google license key | http://www.google.com/apis/] for the GooglePlugin, 
39 * optionally an external recommender engine (none yet, php only so far) and the wikilens theme for the RateIt plugin,
40 * optionally apache/mod_log_{my}sql for fast, external log analysis if ACCESS_LOG_SQL=1 (Referer, Abuse Prevention).
41   See <tt>lib/Request.php</tt> and http://www.outoforder.cc/projects/apache/mod_log_sql/
42
43 -----
44 <?plugin PluginManager?>
45 ----
46 PhpWikiDocumentation WikiPlugin