summaryrefslogtreecommitdiff
path: root/plugins/data.split.php
diff options
context:
space:
mode:
authorLee L Bell <starrrider@users.sourceforge.net>2006-04-06 05:06:11 +0000
committerLee L Bell <starrrider@users.sourceforge.net>2006-04-06 05:06:11 +0000
commite146835758a16f59257081430d5d541afaa07c2f (patch)
tree0fbb4b02c181e85d5fc67f869788977d19cd774c /plugins/data.split.php
parent339af8756f1feb4cea6b69a6314bf6ebfb8f6e97 (diff)
downloadliberty-e146835758a16f59257081430d5d541afaa07c2f.tar.gz
liberty-e146835758a16f59257081430d5d541afaa07c2f.tar.bz2
liberty-e146835758a16f59257081430d5d541afaa07c2f.zip
Added path & security parameters to plugins
Diffstat (limited to 'plugins/data.split.php')
-rw-r--r--plugins/data.split.php33
1 files changed, 18 insertions, 15 deletions
diff --git a/plugins/data.split.php b/plugins/data.split.php
index 66cb3d5..7036ec2 100644
--- a/plugins/data.split.php
+++ b/plugins/data.split.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Revision: 1.5 $
+ * @version $Revision: 1.6 $
* @package liberty
* @subpackage plugins_data
*/
@@ -14,29 +14,32 @@
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Author (TikiWiki): Luis Argerich <lrargerich@users.sourceforge.net>
-// | Reworked for Bitweaver (& Undoubtedly Screwed-Up)
+// | Reworked for Bitweaver (& Undoubtedly Screwed-Up)
// | by: StarRider <starrrider@users.sourceforge.net>
// | Reworked from: wikiplugin_split.php - see deprecated code below
// +----------------------------------------------------------------------+
-// $Id: data.split.php,v 1.5 2005/11/22 07:27:18 squareing Exp $
+// $Id: data.split.php,v 1.6 2006/04/06 05:06:11 starrrider Exp $
/**
* definitions
*/
define( 'PLUGIN_GUID_DATASPLIT', 'datasplit' );
global $gLibertySystem;
-$pluginParams = array ( 'tag' => 'SPLIT',
- 'auto_activate' => FALSE,
- 'requires_pair' => TRUE,
- 'load_function' => 'data_split',
- 'title' => 'Split<strong> - This plugin is not yet functional.</strong>', // Remove this line when the plugin becomes operational
-// 'title' => 'Split', // and Remove the comment from the start of this line
- 'help_page' => 'DataPluginSplit',
- 'description' => tra("This plugin is used to split a page in two or more columns using __-~045~-__ as a seperator."),
- 'help_function' => 'data_split_help',
- 'syntax' => "{SPLIT joincols= fixedsize= }{SPLIT}",
- 'plugin_type' => DATA_PLUGIN
- );
+$pluginParams = array (
+ 'tag' => 'SPLIT',
+ 'auto_activate' => FALSE,
+ 'requires_pair' => TRUE,
+ 'load_function' => 'data_split',
+ 'title' => 'Split - This plugin is not yet functional.', // Remove this line when the plugin becomes operational
+// 'title' => 'Split', // and Remove the comment from the start of this line
+ 'help_page' => 'DataPluginSplit',
+ 'description' => tra("This plugin is used to split a page in two or more columns using __-~045~-__ as a seperator."),
+ 'help_function' => 'data_split_help',
+ 'syntax' => "{SPLIT joincols= fixedsize= }{SPLIT}",
+ 'path' => LIBERTY_PKG_PATH.'plugins/data.split.php',
+ 'security' => 'registered',
+ 'plugin_type' => DATA_PLUGIN
+);
$gLibertySystem->registerPlugin( PLUGIN_GUID_DATASPLIT, $pluginParams );
$gLibertySystem->registerDataTag( $pluginParams['tag'], PLUGIN_GUID_DATASPLIT );