root/trunk/PluginManager/plugins/PluginManager/PluginManager.pl @ 1

Revision 1, 0.7 kB (checked in by breese, 4 years ago)

added PluginManager?

Line 
1#!/usr/bin/perl -w
2#
3# Copyright 2006 Byrne Reese
4#
5# $Id: $
6
7package MT::Plugin::PluginManager;
8
9use strict;
10use MT;
11
12use vars qw( $VERSION $plugin %cfg $DEBUG );
13$VERSION = '1.0';
14$DEBUG = 1;
15
16eval {
17    $plugin = new MT::Plugin({
18        name            => 'Plugin Manager',
19        version         => $VERSION,
20        author_name     => "Byrne Reese",
21        author_link     => "http://www.majordojo.com/",
22        plugin_link     => "http://www.majordojo.com/projects/PluginManager/",
23        description     => "Plugin Manager provides an easy-to-use interface to users that allows them to install and upgrade Movable Type buttons with the click of a button.",
24        config_link     => "plugins.cgi",
25    });
26    MT->add_plugin($plugin);
27};
28
291;
Note: See TracBrowser for help on using the browser.