mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-07-09 15:46:24 +02:00
83 lines
1.4 KiB
PHP
83 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Sandbox plugin
|
|
*
|
|
* @package Monstra
|
|
* @subpackage Plugins
|
|
* @author Romanenko Sergey / Awilum
|
|
* @copyright 2012-2014 Romanenko Sergey / Awilum
|
|
* @version 1.0.0
|
|
*
|
|
*/
|
|
|
|
// Register plugin
|
|
Plugin::register( __FILE__,
|
|
__('Sandbox', 'sandbox'),
|
|
__('Sandbox plugin for Monstra', 'sandbox'),
|
|
'1.0.0',
|
|
'Awilum',
|
|
'http://monstra.org/',
|
|
'sandbox');
|
|
|
|
// Load Sandbox Admin for Editor and Admin
|
|
if (Session::exists('user_role') && in_array(Session::get('user_role'), array('admin', 'editor'))) {
|
|
|
|
Plugin::admin('sandbox');
|
|
|
|
}
|
|
|
|
/**
|
|
* Sandbox class
|
|
*/
|
|
class Sandbox extends Frontend
|
|
{
|
|
/**
|
|
* Sandbox main function
|
|
*/
|
|
public static function main()
|
|
{
|
|
// Do something...
|
|
}
|
|
|
|
/**
|
|
* Set Sandbox title
|
|
*/
|
|
public static function title()
|
|
{
|
|
return 'Sandbox title';
|
|
}
|
|
|
|
/**
|
|
* Set Sandbox keywords
|
|
*/
|
|
public static function keywords()
|
|
{
|
|
return 'Sandbox keywords';
|
|
}
|
|
|
|
/**
|
|
* Set Sandbox description
|
|
*/
|
|
public static function description()
|
|
{
|
|
return 'Sandbox description';
|
|
}
|
|
|
|
/**
|
|
* Set Sandbox content
|
|
*/
|
|
public static function content()
|
|
{
|
|
return 'Sandbox content';
|
|
}
|
|
|
|
/**
|
|
* Set Sandbox template
|
|
*/
|
|
public static function template()
|
|
{
|
|
return 'index';
|
|
}
|
|
}
|