<?php
/**
* This class extends the MainPlugin class and must be extended by all Plugin Controllers
*
* @author Macdonald Terrence Robinson
* @package Core
*
*/
require_once dirname(__FILE__).'/../core/MainPlugin.php';
class BasePlugin extends MainPlugin
{
protected function __construct(MainController $controller)
{
parent::__construct($controller);
}
}
?>