<?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 = 'Welcome Message'; // 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 = 'welcome, message'; // plugin information - summary ... $plugin->shortinfo = "Allows you to write and display a message on your front page according to user type (admin, member, visitor). To display the message, add the template tag {WELCOMEMESSAGE} to your theme's template file"; // plugin information - full, use this for any extra information, a changelog etc ... $plugin->longinfo = ''; // the actual file that contains the plugin code ... $plugin->file = 'welcomemessage.php'; // set to the name of the class if the plugin is object orientated, false if it's not ... $plugin->class = 'Embryo_Welcomemessage'; ?>