Initial commit

This commit is contained in:
2021-09-13 17:15:33 +03:00
commit ae36a5cb0a
5 changed files with 136 additions and 0 deletions

96
Plugin.php Normal file
View File

@ -0,0 +1,96 @@
<?php namespace Wpstudio\AssetsManifest;
use Backend;
use System\Classes\PluginBase;
/**
* assetsmanifest Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'assetsmanifest',
'description' => 'No description provided yet...',
'author' => 'wpstudio',
'icon' => 'icon-leaf'
];
}
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register()
{
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
}
/**
* Registers any front-end components implemented in this plugin.
*
* @return array
*/
public function registerComponents()
{
return []; // Remove this line to activate
return [
'Wpstudio\Assetsmanifest\Components\MyComponent' => 'myComponent',
];
}
/**
* Registers any back-end permissions used by this plugin.
*
* @return array
*/
public function registerPermissions()
{
return []; // Remove this line to activate
return [
'wpstudio.assetsmanifest.some_permission' => [
'tab' => 'assetsmanifest',
'label' => 'Some permission'
],
];
}
/**
* Registers back-end navigation items for this plugin.
*
* @return array
*/
public function registerNavigation()
{
return []; // Remove this line to activate
return [
'assetsmanifest' => [
'label' => 'assetsmanifest',
'url' => Backend::url('wpstudio/assetsmanifest/mycontroller'),
'icon' => 'icon-leaf',
'permissions' => ['wpstudio.assetsmanifest.*'],
'order' => 500,
],
];
}
}