2024-02-01 00:23:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Silva\Adrema\Components;
|
|
|
|
|
2024-02-03 22:51:26 +01:00
|
|
|
class EventIndex extends EventManager
|
2024-02-01 00:23:58 +01:00
|
|
|
{
|
|
|
|
public function componentDetails()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'EventOverview Component',
|
|
|
|
'description' => 'No description provided yet...'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onRun()
|
|
|
|
{
|
2024-02-03 22:51:26 +01:00
|
|
|
$this->addAssets();
|
|
|
|
$this->loadSettings();
|
|
|
|
$this->loadSingleEvent();
|
2024-02-01 00:23:58 +01:00
|
|
|
}
|
|
|
|
}
|