<?php /*============================================================================================== /** * @package EmbryoCore * @author Steve Dunstan (hide@address.com) * @copyright 2010-2011 EmbryoCore * @licence GNU General Public License v3: http://www.gnu.org/licenses/ * @link http://embryocore.com * @since File available since Release 1.0 * @version SVN: $Id: info.php 3 2010-08-10 11:09:05Z stevedunstan $ /** ===============================================================================================*/ // the name of your plugin ... $plugin->name = 'My Plugin'; // author's name ... $plugin->author = 'Steve Dunstan'; // author's website ... $plugin->website = 'http://embryocore.com'; // plugin version, make sure to change this when you update your plugin ... $plugin->version = '1.0'; // plugin tags, make these as descriptive as possible as they will be used when someone is searching for a plugin ... $plugin->tags = 'build, plugin, tutorial'; // plugin information - summary ... $plugin->shortinfo = "A basic plugin template, will just render some text to screen if you go to <a href='index.php?event=myplugin'>index.php?event=myplugin</a></em>"; // plugin information - full, use this for any extra information, a changelog etc ... $plugin->longinfo = ''; // the actual file that contains the plugin code ... $plugin->file = 'myplugin.php'; // set to the name of the class if the plugin is object orientated, false if it's not ... $plugin->class = 'MyPluginClass'; ?>