11 lines
363 B
PHP
11 lines
363 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
/**
|
||
|
|
* @deprecated 데이터는 Home 컨트롤러의 gov_portal_dashboard_view_data()로 전달합니다.
|
||
|
|
* 하위 호환용: include 시 컨트롤러와 동일한 변수를 주입합니다.
|
||
|
|
*/
|
||
|
|
helper('admin');
|
||
|
|
foreach (gov_portal_dashboard_view_data($lgLabel ?? '북구', $activeVariant ?? 'base') as $k => $v) {
|
||
|
|
$$k = $v;
|
||
|
|
}
|