some
This commit is contained in:
8
app/modules/tag/TagModule.php
Normal file
8
app/modules/tag/TagModule.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace app\modules\tag;
|
||||
|
||||
class TagModule extends \kernel\app_modules\tag\TagModule
|
||||
{
|
||||
|
||||
}
|
8
app/modules/tag/controllers/TagController.php
Normal file
8
app/modules/tag/controllers/TagController.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace app\modules\tag\controllers;
|
||||
|
||||
class TagController extends \kernel\app_modules\tag\controllers\TagController
|
||||
{
|
||||
|
||||
}
|
13
app/modules/tag/manifest.json
Normal file
13
app/modules/tag/manifest.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "Tags",
|
||||
"version": "0.1.1",
|
||||
"author": "ITGuild",
|
||||
"slug": "tag",
|
||||
"type": "additional_property",
|
||||
"description": "Tags module",
|
||||
"app_module_path": "{APP}/modules/{slug}",
|
||||
"module_class": "app\\modules\\tag\\TagModule",
|
||||
"module_class_file": "{APP}/modules/tag/TagModule.php",
|
||||
"routs": "routs/tag.php",
|
||||
"dependence": "menu"
|
||||
}
|
2
app/modules/tag/routs/tag.php
Normal file
2
app/modules/tag/routs/tag.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
include KERNEL_APP_MODULES_DIR . "/tag/routs/tag.php";
|
Reference in New Issue
Block a user