Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_bbcode
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9382/plugins/serendipity_event_bbcode
Modified Files:
Tag: branch-smarty
serendipity_event_bbcode.php
Log Message:
Added version/authorship information to all plugins, as far as I could reconstruct them.
Added 'stackable' attribute everywhere. I decided certain plugins should not be stackable, this is left up to discussion, but I think I chose reasonable ones.
Index: serendipity_event_bbcode.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php,v
retrieving revision 1.7.2.4
retrieving revision 1.7.2.5
diff -u -d -r1.7.2.4 -r1.7.2.5
--- serendipity_event_bbcode.php 8 Oct 2004 12:05:05 -0000 1.7.2.4
+++ serendipity_event_bbcode.php 29 Oct 2004 11:02:33 -0000 1.7.2.5
@@ -24,7 +24,10 @@
$propbag->add('name', PLUGIN_EVENT_BBCODE_NAME);
$propbag->add('description', PLUGIN_EVENT_BBCODE_DESC);
- $propbag->add('event_hooks', array('frontend_display' => true, 'frontend_comment' => true, 'css' => true));
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Jez Hancock, Garvin Hicking');
+ $propbag->add('version', '1.0');
+ $propbag->add('event_hooks', array('frontend_display' => true, 'frontend_comment' => true, 'css' => true));
$this->markup_elements = array(
array(
|