2014-05-14 23:24:20 +10:00
|
|
|
<?php namespace October\Demo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The plugin.php file (called the plugin initialization script) defines the plugin information class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
|
|
|
|
class Plugin extends PluginBase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function pluginDetails()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'October Demo',
|
|
|
|
'description' => 'Provides features used by the provided demonstration theme.',
|
|
|
|
'author' => 'Alexey Bobkov, Samuel Georges',
|
|
|
|
'icon' => 'icon-leaf'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function registerComponents()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'\October\Demo\Components\Todo' => 'demoTodo'
|
|
|
|
];
|
|
|
|
}
|
2014-10-18 12:49:29 +02:00
|
|
|
}
|