]> git.mjollnir.org Git - s9y.git/commitdiff
assign bundled plugin groups
authorgarvinhicking <garvinhicking>
Fri, 8 Jul 2005 13:29:39 +0000 (13:29 +0000)
committergarvinhicking <garvinhicking>
Fri, 8 Jul 2005 13:29:39 +0000 (13:29 +0000)
30 files changed:
plugins/serendipity_event_bbcode/serendipity_event_bbcode.php
plugins/serendipity_event_browsercompatibility/serendipity_event_browsercompatibility.php
plugins/serendipity_event_contentrewrite/serendipity_event_contentrewrite.php
plugins/serendipity_event_creativecommons/serendipity_event_creativecommons.php
plugins/serendipity_event_emoticate/serendipity_event_emoticate.php
plugins/serendipity_event_entryproperties/serendipity_event_entryproperties.php
plugins/serendipity_event_htmlvalidator/serendipity_event_htmlvalidator.php
plugins/serendipity_event_karma/serendipity_event_karma.php
plugins/serendipity_event_livesearch/serendipity_event_livesearch.php
plugins/serendipity_event_mailer/serendipity_event_mailer.php
plugins/serendipity_event_nl2br/serendipity_event_nl2br.php
plugins/serendipity_event_s9ymarkup/serendipity_event_s9ymarkup.php
plugins/serendipity_event_searchhighlight/serendipity_event_searchhighlight.php
plugins/serendipity_event_spamblock/serendipity_event_spamblock.php
plugins/serendipity_event_statistics/serendipity_event_statistics.php
plugins/serendipity_event_templatechooser/serendipity_event_templatechooser.php
plugins/serendipity_event_textile/serendipity_event_textile.php
plugins/serendipity_event_textwiki/serendipity_event_textwiki.php
plugins/serendipity_event_trackexits/serendipity_event_trackexits.php
plugins/serendipity_event_weblogping/serendipity_event_weblogping.php
plugins/serendipity_event_xhtmlcleanup/serendipity_event_xhtmlcleanup.php
plugins/serendipity_plugin_comments/serendipity_plugin_comments.php
plugins/serendipity_plugin_creativecommons/serendipity_plugin_creativecommons.php
plugins/serendipity_plugin_entrylinks/serendipity_plugin_entrylinks.php
plugins/serendipity_plugin_eventwrapper/serendipity_plugin_eventwrapper.php
plugins/serendipity_plugin_history/serendipity_plugin_history.php
plugins/serendipity_plugin_recententries/serendipity_plugin_recententries.php
plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php
plugins/serendipity_plugin_shoutbox/serendipity_plugin_shoutbox.php
plugins/serendipity_plugin_templatedropdown/serendipity_plugin_templatedropdown.php

index f909ea13f16ebd2f07aa7f4da5ddd7f77d5b5088..8143afa7c3a2c8078500886d2efb0dcdcc201298 100644 (file)
@@ -40,6 +40,7 @@ class serendipity_event_bbcode extends serendipity_event
         ));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'frontend_comment' => true, 'css' => true));
+        $propbag->add('groups', array('MARKUP'));
 
         $this->markup_elements = array(
             array(
index a58ba6d87147a9695872a4ea16f60fa594fd029b..188030b1091883caf399ca5c06752ad051e039dc 100644 (file)
@@ -43,6 +43,7 @@ class serendipity_event_browsercompatibility extends serendipity_event
             'css_backend' => true,
             'external_plugin'  => true,
         ));
+        $propbag->add('groups', array('BACKEND_TEMPLATES'));
     }
 
     function generate_content(&$title) {
index 71f34d6965129cd6435b32c8b75ec10e8018abe7..bf3faea6b80631f5dd8b06469c260b8bc757bb2d 100644 (file)
@@ -84,6 +84,8 @@ class serendipity_event_contentrewrite extends serendipity_event
             'frontend_display' => true
         ));
 
+        $propbag->add('groups', array('BACKEND_EDITOR'));
+
         if (!empty($_POST['SAVECONF'])) $this->cleanup();
         $rows = serendipity_db_query("SELECT name, value FROM {$serendipity['dbPrefix']}config WHERE name LIKE '" . $this->instance . "/%' ORDER BY name");
 
index c7d91213da8581ddd61319cd4f1c52c0c41a9c44..64ad85baa137ef05d18edb5e7b3454c4fbe6ef10 100644 (file)
@@ -66,6 +66,7 @@ class serendipity_event_creativecommons extends serendipity_event {
                             'frontend_display:rss-2.0:namespace' => true,
                             'frontend_display:html:per_entry'    => true,
                             'frontend_display:html_layout'       => true));
+        $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES'));
     }
 
     function introspect_config_item($name, &$propbag)
index 8c860af9aaf5e08cf340378437932f692cae80b8..63d660608a9d53dd28b4600e7d71af101975c3ac 100644 (file)
@@ -39,6 +39,7 @@ class serendipity_event_emoticate extends serendipity_event
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('MARKUP'));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'frontend_comment' => true));
 
index e0a7aab8fa62d344f8d294d30010ecf010e33763..f6ec04b449b4b3f935ad7474e6a5b9f1ca68b42e 100644 (file)
@@ -93,7 +93,7 @@ class serendipity_event_entryproperties extends serendipity_event
             'backend_plugins_new_instance'                      => true,
             'frontend_entryproperties_query'                    => true
         ));
-
+        $propbag->add('groups', array('BACKEND_EDITOR'));
         $propbag->add('configuration', array('cache', 'use_groups', 'default_read'));
     }
 
index 7dc53235f4010ae37cd29da3b08e1fd6c3414541..361799fc08d4434d27f6349361bd18ca681a592d 100644 (file)
@@ -56,7 +56,7 @@ class serendipity_event_htmlvalidator extends serendipity_event
         ));
 
         $propbag->add('configuration', array('charset', 'doctype', 'default_validate'));
-
+        $propbag->add('groups', array('BACKEND_EDITOR'));
     }
 
     function introspect_config_item($name, &$propbag)
index b64a88f811540961b39e640daac1aa0ebfe15de8..7e8ae461bf789060648081f09c5307c7318ba264 100644 (file)
@@ -123,7 +123,7 @@ class serendipity_event_karma extends serendipity_event
         ));
         $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('groups', array('STATISTICS'));
         $propbag->add('configuration', array('karma_active', 'visits_active', 'max_entrytime', 'max_votetime', 'extended_only', 'max_karmatime', 'logging'));
     }
 
index d33a11cf231a59b89be285f0a6907ae5a4406901..ba31f9dd663ca8dd7e1771025145499d8f6a2955 100644 (file)
@@ -47,6 +47,7 @@ class serendipity_event_livesearch extends serendipity_event
             'css'                => true,
             'quicksearch_plugin' => true
         ));
+        $propbag->add('groups', array('FRONTEND_ENTRY_RELATED'));
     }
 
     function generate_content(&$title) {
index d353e733da40901962a6bc6a41cd45d7a3d9c4ee..fab2feab00a68886b141534089be8e927f3aa9a8 100644 (file)
@@ -53,6 +53,7 @@ class serendipity_event_mailer extends serendipity_event
         $propbag->add('event_hooks',    array(
             'backend_publish' => true
         ));
+        $propbag->add('groups', array('FRONTEND_ENTRY_RELATED'));
 
         $propbag->add('configuration', array('mailto', 'includelink', 'striptags'));
     }
index dd3fe2793f14fa6ec13c58dbdde11bac81038297..c59c3c953fc9a7f940f067064b13e020ffe988a3 100644 (file)
@@ -39,6 +39,7 @@ class serendipity_event_nl2br extends serendipity_event
         ));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true));
+        $propbag->add('groups', array('MARKUP'));
 
         $this->markup_elements = array(
             array(
index 31669814050f0de5a6573d3dce3d959af4c54fc5..d6c9c449be59fb51740b46563b86af82943f4a7a 100644 (file)
@@ -41,6 +41,7 @@ class serendipity_event_s9ymarkup extends serendipity_event
         ));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'frontend_comment' => true));
+        $propbag->add('groups', array('MARKUP'));
 
         $this->markup_elements = array(
             array(
index b5dcdacd1520cc90f3d98903ea3d259bf2882ba1..94878291b2e50d4d3b095d2aae8fdaf6f4d89148 100644 (file)
@@ -41,6 +41,7 @@ class serendipity_event_searchhighlight extends serendipity_event
             'php'         => '4.1.0'
         ));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'css' => true));
+        $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES'));
 
         $this->markup_elements = array(
             array(
index b237ccc655ff5d972eb43cbacc680d9659bc49fd..7b03a76379ed1c9f6d1cafd6894e86bbda88b077 100644 (file)
@@ -180,6 +180,7 @@ var $filter_defaults;
             'fetchcomments'        => true
         ));
         $propbag->add('configuration', array('killswitch', 'bodyclone', 'ipflood', 'captchas', 'captchas_ttl', 'captcha_color', 'forcemoderation', 'disable_api_comments', 'links_moderate', 'links_reject', 'contentfilter_activate', 'contentfilter_urls', 'contentfilter_authors', 'hide_email', 'logtype', 'logfile'));
+        $propbag->add('groups', array('ANTISPAM'));
 
         $this->filter_defaults = array(
                                    'authors' => 'casino;phentermine;credit;loans;poker',
index f9ad7445c0415726fd1f6b794a07acbf1a0815cf..f4f60d1e3af33145e7f2544d3acc7e5202beedb4 100644 (file)
@@ -135,6 +135,7 @@ class serendipity_event_statistics extends serendipity_event
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('STATISTICS'));
         $propbag->add('event_hooks',    array(
             'backend_sidebar_entries' => true,
             'backend_sidebar_entries_event_display_statistics' => true
index 15c96a20c63bb6875ae883a9377669deb180ef6f..7a864527e983300df5a838af6ccc7ea25c51539b 100644 (file)
@@ -37,6 +37,7 @@ class serendipity_event_templatechooser extends serendipity_event
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('BACKEND_TEMPLATES'));
         $propbag->add('event_hooks', array('frontend_configure' => true));
 
         // Register (multiple) dependencies. KEY is the name of the depending plugin. VALUE is a mode of either 'remove' or 'keep'.
index 8cb88be8aad04cd83607b90b1d7701c6fea920c6..d5a71346ae5aa343c3e68d3a33361bdb2d69c668 100644 (file)
@@ -43,6 +43,7 @@ class serendipity_event_textile extends serendipity_event
         ));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'frontend_comment' => true));
+        $propbag->add('groups', array('MARKUP'));
 
         $propbag->add('preserve_tags',
           array(
index 3ed700a39e70fa241ae9dacd38658743ad3c08d4..1ad70ea2b540edc92df341b583c7b5c89b8810f5 100644 (file)
@@ -483,6 +483,7 @@ class serendipity_event_textwiki extends serendipity_event
         ));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true, 'frontend_comment' => true));
+        $propbag->add('groups', array('MARKUP'));
 
         $this->markup_elements = array(
             array(
index 6f3ad7af198634084bb7129e6a4b94e23b8a1ecc..04905b4dff950f403a7da82ab54ab515a6b89553 100644 (file)
@@ -51,6 +51,7 @@ class serendipity_event_trackexits extends serendipity_event
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true));
         $propbag->add('scrambles_true_content', true);
+        $propbag->add('groups', array('STATISTICS'));
 
         $this->markup_elements = array(
             array(
index 363422ea0454694042a97da04a8784481b02c894..81a4f346f967dc13daed8b4cdacd7098c35aa6a0 100644 (file)
@@ -60,6 +60,7 @@ class serendipity_event_weblogping extends serendipity_event
             'backend_publish' => true,
             'backend_draft' => true
         ));
+        $propbag->add('groups', array('BACKEND_EDITOR'));
 
         $servicesdb = array();
         $servicesdb_file = dirname(__FILE__) . '/servicesdb_' . $serendipity['lang'] . '.inc.php';
index 93dfc8a3e4f9ec72130870731e5177a05b2b4ce4..d66bb96f0d2e5a322d1d50a0058c35fc7fb64c6c 100644 (file)
@@ -49,6 +49,7 @@ class serendipity_event_xhtmlcleanup extends serendipity_event
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('BACKEND_TEMPLATES'));
         $propbag->add('cachable_events', array('frontend_display' => true));
         $propbag->add('event_hooks',   array('frontend_display' => true));
 
index 1cc85481f6dd482e2c80d06d1f49fd7499a22789..5086cf24eccbc6e59e36af2ad982fbb14e1ad6b9 100644 (file)
@@ -52,6 +52,7 @@ class serendipity_plugin_comments extends serendipity_plugin
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('FRONTEND_VIEWS'));
         $propbag->add('configuration', array(
                                              'title',
                                              'wordwrap',
index e94cfae4d93f81f49db95e811a225484f2aacbbf..dd658fabd612150d840f1e45bce103404e43cc4a 100644 (file)
@@ -39,6 +39,7 @@ class serendipity_plugin_creativecommons extends serendipity_plugin {
             'php'         => '4.1.0'
         ));
         $propbag->add('configuration', array('title'));
+        $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES'));
 
         $this->dependencies = array('serendipity_event_creativecommons' => 'remove');
     }
index 45e3fec18fd3171fbe89b849e473341b758fd075..4bceb84c25406cb8b1f36ad008856340b5bd0120 100644 (file)
@@ -62,6 +62,7 @@ class serendipity_plugin_entrylinks extends serendipity_plugin
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('FRONTEND_ENTRY_RELATED'));
         $propbag->add('configuration', array('title', 'newwin', 'markup', 'wordwrap', 'show_exits', 'show_referers', 'maxref', 'orderby'));
     }
 
index 75bcc82d9dee329b4ed3e86ca2e840401717a2ed..552916fa8ecbb221a3d4318098c5118150269e44 100644 (file)
@@ -45,6 +45,7 @@ var $rewrite_from, $rewrite_to;
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('FRONTEND_FEATURES'));
         $propbag->add('configuration', array('event_plugin', 'title'));
 
     }
index 77ba1e29d085b6b819125835e69dd02dd1f3c6ad..804b7b95247eca3aaa74e066225b64d47a89fded 100644 (file)
@@ -81,6 +81,7 @@ class serendipity_plugin_history extends serendipity_plugin
             'smarty'      => '2.6.7',
             'php'         => '4.1.0'
         ));
+        $propbag->add('groups', array('FRONTEND_VIEWS'));
         $propbag->add('configuration', array('title',
                                              'intro',
                                              'outro',
index 265f3ca33ac1d3a455f8013cb9bf4ad250ce7325..9af108f49a6d9860bc2eba3a0aa62eb593a50d59 100644 (file)
@@ -51,6 +51,7 @@ class serendipity_plugin_recententries extends serendipity_plugin {
             'php'         => '4.1.0'
         ));
         $propbag->add('configuration', array('title', 'number', 'number_from', 'dateformat', 'category'));
+        $propbag->add('groups', array('FRONTEND_VIEWS'));
     }
 
     function introspect_config_item($name, &$propbag) {
index 3fcd0287679beb5999ddd648b038f60f4492297e..9717678be6dbc03e1080856344c528af03a81f11 100644 (file)
@@ -299,6 +299,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin {
             'php'         => '4.1.0'
         ));
         $propbag->add('configuration', array('number', 'displaydate', 'dateformat', 'sidebartitle', 'rssuri', 'charset', 'target', 'cachetime', 'feedtype', 'bulletimg', 'markup'));
+        $propbag->add('groups', array('FRONTEND_EXTERNAL_SERVICES'));
     }
 
     function introspect_config_item($name, &$propbag) {
index d5d0d33d0146f8fa5922d7ce9ded398e539cdb7e..b7f911a62ce25a947ac8cea391ae831ab6f94787 100644 (file)
@@ -62,6 +62,7 @@ class serendipity_plugin_shoutbox extends serendipity_plugin
                                              'max_chars',
                                              'max_entries',
                                              'dateformat'));
+        $propbag->add('groups', array('FRONTEND_FEATURES'));
     }
 
     function introspect_config_item($name, &$propbag)
index aff77a656889a8163c7ccf9d006757ae831aa9d9..bf79e4b4c6a70bd547dcb4943f1dda2248c575a1 100644 (file)
@@ -41,6 +41,7 @@ class serendipity_plugin_templatedropdown extends serendipity_plugin {
             'php'         => '4.1.0'
         ));
         $propbag->add('configuration', array('title', 'show_submit'));
+        $propbag->add('groups', array('FRONTEND_VIEWS'));
 
         // Register (multiple) dependencies. KEY is the name of the depending plugin. VALUE is a mode of either 'remove' or 'keep'.
         // If the mode 'remove' is set, removing the plugin results in a removal of the depending plugin. 'Keep' meens to