n_oct/plugins/rainlab/builder/models/pluginbasemodel/templates/plugin.php.tpl

38 lines
619 B
Smarty
Raw Normal View History

2023-06-17 20:52:33 +00:00
<?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()
{
}
}