Files
dev.ttsby.com/modules/market/action/@a.layout_aply.php
2023-04-17 11:06:08 +09:00

16 lines
491 B
PHP

<?php
if(!defined('__KIMS__')) exit;
checkAdmin(0);
if ($type == 'pc')
{
getDbUpdate($table['s_site'],"layout='".$layout."/main.php'",'uid='.$s);
getWindow(RW(0),'PC모드 대표 레이아웃으로 적용되었습니다.','','','');
exit;
}
else {
getDbUpdate($table['s_site'],"m_layout='".$layout."/main.php'",'uid='.$s);
getLink('','','모바일웹 대표레이아웃으로 적용되었습니다. \n\n모바일기기나 에뮬레이터로 확인하세요.','');
}
?>