35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* app/plugins/subscribe/plugin.php
|
|
*
|
|
* This houses all of the main plugin info and functionality.
|
|
*
|
|
* @package TP Subscribe
|
|
* @version 3.0
|
|
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
* @link https://TheTempusProject.com
|
|
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
*/
|
|
namespace TheTempusProject\Plugins;
|
|
|
|
use ReflectionClass;
|
|
use TheTempusProject\Classes\Installer;
|
|
use TheTempusProject\Houdini\Classes\Navigation;
|
|
use TheTempusProject\Classes\Plugin;
|
|
use TheTempusProject\TheTempusProject as App;
|
|
|
|
class Subscribe extends Plugin {
|
|
public $pluginName = 'TP Subscribe';
|
|
public $pluginAuthor = 'JoeyK';
|
|
public $pluginWebsite = 'https://TheTempusProject.com';
|
|
public $modelVersion = '1.0';
|
|
public $pluginVersion = '3.0';
|
|
public $pluginDescription = 'A simple plugin to add a method for users to share their email.';
|
|
public $admin_links = [
|
|
[
|
|
'text' => '<i class="fa fa-fw fa-address-book"></i> Subscriptions',
|
|
'url' => '{ROOT_URL}admin/subscriptions',
|
|
],
|
|
];
|
|
}
|