26 lines
574 B
PHP
26 lines
574 B
PHP
<?php namespace October\Drivers;
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
/**
|
|
* Drivers Plugin Information File
|
|
*/
|
|
class Plugin extends PluginBase
|
|
{
|
|
/**
|
|
* Returns information about this plugin.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function pluginDetails()
|
|
{
|
|
return [
|
|
'name' => 'Drivers',
|
|
'description' => 'Provider of third party drivers',
|
|
'author' => 'October',
|
|
'icon' => 'icon-leaf',
|
|
'homepage' => 'https://github.com/octoberrain/drivers-plugin'
|
|
];
|
|
}
|
|
}
|