26 lines
516 B
PHP
26 lines
516 B
PHP
<?php
|
|
|
|
namespace Vivespos\Site;
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
class Plugin extends PluginBase
|
|
{
|
|
public function pluginDetails()
|
|
{
|
|
return [
|
|
'name' => 'VivesPOS Site',
|
|
'description' => 'Componentes del sitio VivesPOS',
|
|
'author' => 'VivesPOS',
|
|
'icon' => 'icon-shopping-cart',
|
|
];
|
|
}
|
|
|
|
public function registerComponents()
|
|
{
|
|
return [
|
|
\Vivespos\Site\Components\ContactForm::class => 'contactForm',
|
|
];
|
|
}
|
|
}
|