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

26 lines
1.2 KiB
PHP

<?php
if (!defined('_GNUBOARD_'))
exit;
/**
* 메뉴 추가가 필요한 경우 파일을 직접 수정하지 않고
* 파일 추가 후 변수 호출을 통해 사용하세요
if (!defined('_GNUBOARD_'))
exit;
if (!isset($menu["other"])) {
$menu["other"] = new MenuCategory("other", "other", "기타관리", "/config_form.php", true, 99, "", 0);
}
$menu["other"]->addChildMenu("other", "커스텀메뉴", G5_ADMIN_URL . "/{your_file_name}.php", true, 1, "{bootstrap icon css code}", 0);
$menu["other"]->getLastAddedMenu()->addSubURL("/{your_subfile_name}.php");
*/
if (!isset($menu["other"])) {
$menu["other"] = new MenuCategory("other", "other", "기타관리", "/config_form.php", true, 99, "", 0);
}
$menu["other"]->addChildMenu("other", "홈페이지 상세관리", G5_ADMIN_URL . "/config_form.php", true, 100, "\F3E3", 0);
$menu["other"]->getLastAddedMenu()->addSubURL("/config_form_update.php");
$menu["other"]->addChildMenu("other", "세션파일 일괄삭제", G5_ADMIN_URL . "/session_file_delete.php", true, 200, "\F8C3", 0);
$menu["other"]->addChildMenu("other", "캐시파일 일괄삭제", G5_ADMIN_URL . "/cache_file_delete.php", true, 300, "\F8C3", 0);