Source for file data.example.php
Documentation is available at data.example.php
* @subpackage plugins_data
// +----------------------------------------------------------------------+
// | Copyright (c) 2004, bitweaver.org
// +----------------------------------------------------------------------+
// | All Rights Reserved. See below for details and a complete list of authors.
// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Author: StarRider starrrider@sourceforge.net
// +----------------------------------------------------------------------+
// $id: data.example.php,v 1.4.2.9 2005/07/14 09:03:36 starrider Exp $
define( 'PLUGIN_GUID_DATAEXAMPLE', 'dataexample' );
$pluginParams = array ( 'tag' => 'EXAM',
'auto_activate' => FALSE,
'requires_pair' => FALSE,
'load_function' => 'data_example',
'help_page' => 'DataPluginExample',
'description' => tra("This Plugin is an Example that does nothing. It functions as a template for the creation of new plugins."),
'help_function' => 'data_example_help',
'syntax' => "{EXAM x1= x2= }",
'<table class="data help">'
. '<th>' . tra( "Key" ) . '</th>'
. '<th>' . tra( "Type" ) . '</th>'
. '<th>' . tra( "Comments" ) . '</th>'
. '<td>' . tra( "string") . '<br />' . tra("(optional)") . '</td>'
. '<td>' . tra( "Specifies something / probably to be displayed.")
. '<br />' . tra( "The Default = <strong>Sorry About That</strong>")
. '<td>' . tra( "number") . '<br />' . tra("(optional)") . '</td>'
. '<td>' . tra( "Specifies something / probably to be displayed.")
. '<br />' . tra( "The Default =") . ' <strong>3</strong> ' . tra( "Which means - What")
. tra("Example: ") . "{EXAM x1=' ' x2=5 }<br />"
. tra("This will display");
|