- 사이트 업무 페이지: 공통 셸 bag/layout/portal(헤더+대메뉴 클릭+좌측 사이드바 소메뉴) - 관리자 페이지: admin/layout 을 동일 포털 셸로 재작성(관리자 메뉴 트리, 폴백) - 메인(/): gov-portal 대시보드, 종량제 실데이터만(재고/주문/승인/활동로그) - 로그인/회원가입/2차인증/TOTP: 공통 auth/_shell 로 통일, 사이트 공통 로고 - 버튼색 통일: btn-search 등 주요 버튼을 #243a5e(메뉴바 네이비보다 살짝 밝게), 밝은 파랑 채움 버튼(#2b4c8c/#1e548a)도 동일 색으로 - gov_portal_nav_context() 임의 메뉴 트리 수용, 업무 셸은 실제 bag/* 링크 유지 - Admin\Menu 권한거부 리다이렉트 admin/dashboard(404) → admin 수정 - E2E redesign.spec.js 추가, 기능 무변경 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
77 lines
2.5 KiB
PHP
77 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use CodeIgniter\Controller;
|
|
use CodeIgniter\HTTP\RequestInterface;
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* BaseController provides a convenient place for loading components
|
|
* and performing functions that are needed by all your controllers.
|
|
*
|
|
* Extend this class in any new controllers:
|
|
* ```
|
|
* class Home extends BaseController
|
|
* ```
|
|
*
|
|
* For security, be sure to declare any new methods as protected or private.
|
|
*/
|
|
abstract class BaseController extends Controller
|
|
{
|
|
/**
|
|
* Be sure to declare properties for any property fetch you initialized.
|
|
* The creation of dynamic property is deprecated in PHP 8.2.
|
|
*/
|
|
|
|
// protected $session;
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
|
{
|
|
// Load here all helpers you want to be available in your controllers that extend BaseController.
|
|
// Caution: Do not put the this below the parent::initController() call below.
|
|
// $this->helpers = ['form', 'url'];
|
|
|
|
// Caution: Do not edit this line.
|
|
parent::initController($request, $response, $logger);
|
|
|
|
// Preload any models, libraries, etc, here.
|
|
// $this->session = service('session');
|
|
}
|
|
|
|
/**
|
|
* /admin/* 또는 /bag/* 업무 화면 공통: 요청이 bag 이면 메인 사이트 레이아웃, 아니면 관리자 레이아웃.
|
|
*
|
|
* @param array<string, mixed> $contentData
|
|
*/
|
|
protected function renderWorkPage(string $title, string $contentView, array $contentData = []): string
|
|
{
|
|
$content = view($contentView, $contentData);
|
|
helper('admin');
|
|
$path = function_exists('current_nav_request_path') ? current_nav_request_path() : '';
|
|
if ($path === '') {
|
|
$uri = service('request')->getUri();
|
|
$path = trim((string) $uri->getPath(), '/');
|
|
}
|
|
while (str_starts_with($path, 'index.php/')) {
|
|
$path = substr($path, strlen('index.php/'));
|
|
}
|
|
if ($path === 'bag' || str_starts_with($path, 'bag/')) {
|
|
// 사이트 업무 페이지: gov-portal 디자인 셸 적용
|
|
return view('bag/layout/portal', [
|
|
'title' => $title,
|
|
'content' => $content,
|
|
]);
|
|
}
|
|
|
|
return view('admin/layout', [
|
|
'title' => $title,
|
|
'content' => $content,
|
|
]);
|
|
}
|
|
}
|