Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_karma
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9382/plugins/serendipity_event_karma
Modified Files:
Tag: branch-smarty
serendipity_event_karma.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_karma.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_karma/serendipity_event_karma.php,v
retrieving revision 1.14.2.7
retrieving revision 1.14.2.8
diff -u -d -r1.14.2.7 -r1.14.2.8
--- serendipity_event_karma.php 28 Oct 2004 20:17:24 -0000 1.14.2.7
+++ serendipity_event_karma.php 29 Oct 2004 11:02:35 -0000 1.14.2.8
@@ -106,7 +106,10 @@
$propbag->add('name', PLUGIN_KARMA_NAME);
$propbag->add('description', PLUGIN_KARMA_BLAHBLAH);
- $propbag->add('event_hooks', array('frontend_configure' => true, 'entry_display' => true, 'css' => true, 'event_additional_statistics' => true));
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Garvin Hicking');
+ $propbag->add('version', '1.0');
+ $propbag->add('event_hooks', array('frontend_configure' => true, 'entry_display' => true, 'css' => true, 'event_additional_statistics' => true));
$propbag->add('scrambles_true_content', true);
$propbag->add('configuration', array('karma_active', 'visits_active', 'max_entrytime', 'max_votetime', 'extended_only', 'max_karmatime', 'logging'));
|