22 lines
409 B
PHP
22 lines
409 B
PHP
<?php
|
|
|
|
namespace Silva\Adrema\Components;
|
|
|
|
class EventIndex extends EventManager
|
|
{
|
|
public function componentDetails()
|
|
{
|
|
return [
|
|
'name' => 'EventOverview Component',
|
|
'description' => 'No description provided yet...'
|
|
];
|
|
}
|
|
|
|
public function onRun()
|
|
{
|
|
$this->addAssets();
|
|
$this->loadSettings();
|
|
$this->loadSingleEvent();
|
|
}
|
|
}
|