Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_searchhighlight
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15613/plugins/serendipity_event_searchhighlight
Modified Files:
Tag: branch-smarty
serendipity_event_searchhighlight.php
Log Message:
- New plugin manager
- Give some of the plugin longer descriptions
- Allow plugins to set 'stackable' directive to false which will prevent it from being installed more than once - Still 'beta'
- MFH plugin config redirection fix
Index: serendipity_event_searchhighlight.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_searchhighlight/serendipity_event_searchhighlight.php,v
retrieving revision 1.4.2.2
retrieving revision 1.4.2.3
diff -u -d -r1.4.2.2 -r1.4.2.3
--- serendipity_event_searchhighlight.php 22 Sep 2004 11:00:07 -0000 1.4.2.2
+++ serendipity_event_searchhighlight.php 28 Oct 2004 20:17:25 -0000 1.4.2.3
@@ -12,7 +12,7 @@
case 'en':
default:
@define('PLUGIN_EVENT_SEARCHHIGHLIGHT_NAME', 'Highlight search queries');
- @define('PLUGIN_EVENT_SEARCHHIGHLIGHT_DESC', 'Highlights queries used to locate your page in a search engine');
+ @define('PLUGIN_EVENT_SEARCHHIGHLIGHT_DESC', 'Highlights queries used in the referring search engine to locate your page');
break;
}
@@ -24,6 +24,9 @@
$propbag->add('name', PLUGIN_EVENT_SEARCHHIGHLIGHT_NAME);
$propbag->add('description', PLUGIN_EVENT_SEARCHHIGHLIGHT_DESC);
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Tom Sommer');
+ $propbag->add('version', '1.0');
$propbag->add('event_hooks', array('frontend_display' => true, 'css' => true));
$this->markup_elements = array(
|