This commit is contained in:
2025-06-18 14:50:18 +03:00
parent a64ed080bb
commit 4c716a8a8c
160 changed files with 6786 additions and 23 deletions

View File

@ -0,0 +1,8 @@
<?php
namespace app\modules\event;
class EventModule extends \kernel\app_modules\event\EventModule
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace app\modules\event\controllers;
class EventController extends \kernel\app_modules\event\controllers\EventController
{
}

View File

@ -0,0 +1,12 @@
{
"name": "Мероприятия",
"version": "0.1",
"author": "ITGuild",
"slug": "event",
"type": "entity",
"description": "Мероприятия module",
"module_class": "app\\modules\\event\\EventModule",
"module_class_file": "{APP}/modules/event/EventModule.php",
"routs": "routs/event.php",
"migration_path": "migrations"
}

View File

@ -0,0 +1,2 @@
<?php
include KERNEL_APP_MODULES_DIR . "/event/routs/event.php";