38 lines
619 B
Smarty
38 lines
619 B
Smarty
|
|
<?php namespace {authorNamespace}\{pluginNamespace};
|
||
|
|
|
||
|
|
use System\Classes\PluginBase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Plugin class
|
||
|
|
*/
|
||
|
|
class Plugin extends PluginBase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* register method, called when the plugin is first registered.
|
||
|
|
*/
|
||
|
|
public function register()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* boot method, called right before the request route.
|
||
|
|
*/
|
||
|
|
public function boot()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* registerComponents used by the frontend.
|
||
|
|
*/
|
||
|
|
public function registerComponents()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* registerSettings used by the backend.
|
||
|
|
*/
|
||
|
|
public function registerSettings()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|