AvocadoAmber/AvocadoEdition_Light/adm/_gnb.community.menu.php
2024-10-05 06:03:15 +09:00

30 lines
1.2 KiB
PHP

<?php
if (!defined('_GNUBOARD_'))
exit;
/**
* 메뉴 추가가 필요한 경우 파일을 직접 수정하지 않고
* 파일 추가 후 변수 호출을 통해 사용하세요
if (!defined('_GNUBOARD_'))
exit;
if (!isset($menu["community"])) {
$menu["community"] = new MenuCategory("community", "community", "커뮤니티 호환기능", "", true, 4, "", 0);
}
$menu["community"]->addChildMenu("community", "커스텀메뉴", G5_ADMIN_URL . "/{your_file_name}.php", true, 1, "{bootstrap icon css code}", 0);
$menu["community"]->getLastAddedMenu()->addSubURL("/{your_subfile_name}.php");
*/
/*
!! TODO
if (!isset($menu["community"])) {
$menu["community"] = new MenuCategory("community", "community", "커뮤니티 호환기능", "", true, 4, "", 0);
}
$menu["community"]->addChildMenu("config", "커뮤니티 설정", G5_ADMIN_URL . "/community_form.php", true, 100, "\F3B3", 0);
$menu["community"]->addChildMenu("config", "캐릭터 관리", G5_ADMIN_URL . "/character_list.php", true, 200, "\F379", 0);
$menu["community"]->getLastAddedMenu()->addSubURL("/character_list_update.php");
$menu["community"]->getLastAddedMenu()->addSubURL("/character_form.php");
$menu["community"]->getLastAddedMenu()->addSubURL("/character_form_update.php");
*/