Files
Pichome/dzz/pichome/setting.php
2024-01-31 01:00:33 +08:00

16 lines
563 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if (!defined('IN_OAOOA')) {//所有的php文件必须加上此句防止被外部调用
exit('Access Denied');
}
$operation = isset($_GET['operation']) ? trim($_GET['operation']) : '';
if ($operation == 'column') {
include template('admin/pc/page/site/column');
}elseif($operation == 'home'){
include template('admin/pc/page/site/home');
}elseif($operation == 'about'){
include template('admin/pc/page/site/about');
}elseif($operation == 'casepartner'){
include template('admin/pc/page/site/casepartner');
}