Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_emoticate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9382/plugins/serendipity_event_emoticate
Modified Files:
Tag: branch-smarty
serendipity_event_emoticate.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_emoticate.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_emoticate/serendipity_event_emoticate.php,v
retrieving revision 1.10.2.6
retrieving revision 1.10.2.7
diff -u -d -r1.10.2.6 -r1.10.2.7
--- serendipity_event_emoticate.php 9 Oct 2004 19:04:41 -0000 1.10.2.6
+++ serendipity_event_emoticate.php 29 Oct 2004 11:02:34 -0000 1.10.2.7
@@ -24,7 +24,10 @@
$propbag->add('name', PLUGIN_EVENT_EMOTICATE_NAME);
$propbag->add('description', PLUGIN_EVENT_EMOTICATE_DESC);
- $propbag->add('event_hooks', array('frontend_display' => true, 'frontend_comment' => true));
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Serendipity Team');
+ $propbag->add('version', '1.0');
+ $propbag->add('event_hooks', array('frontend_display' => true, 'frontend_comment' => true));
$this->markup_elements = array(
array(
@@ -174,4 +177,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
+?>
\ No newline at end of file
|