* @link https://TheTempusProject.com * @license https://opensource.org/licenses/MIT [MIT LICENSE] */ namespace TheTempusProject\Plugins; use TheTempusProject\Classes\Plugin; class Blog extends Plugin { public $pluginName = 'TP Blog'; public $pluginAuthor = 'JoeyK'; public $pluginWebsite = 'https://TheTempusProject.com'; public $modelVersion = '1.0'; public $pluginVersion = '3.0'; public $pluginDescription = 'A simple plugin to add a blog to your installation.'; public $admin_links = [ [ 'text' => ' Blog', 'url' => '{ROOT_URL}admin/blog', ], ]; public $info_footer_links = [ [ 'text' => 'Blog', 'url' => '{ROOT_URL}blog/index', ], ]; public $resourceMatrix = [ 'posts' => [ [ 'title' => 'Welcome', 'content' => '

This is just a simple message to say thank you for installing The Tempus Project. If you have any questions you can find everything through our website here.

', 'author' => 1, 'created' => '{time}', 'edited' => '{time}', 'draft' => 0, ], ], ]; }