54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
use think\facade\View;
|
|
use think\facade\Lang;
|
|
use think\facade\Db;
|
|
/**
|
|
* ============================================================================
|
|
* 联课教育商城系统
|
|
* ============================================================================
|
|
* 版权所有 2022 刻羽互动科技有限公司,并保留所有权利。
|
|
* 网站地址: http://www.o1h.cn
|
|
* ----------------------------------------------------------------------------
|
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
|
|
* 不允许对程序代码以任何形式任何目的的再发布。
|
|
* ============================================================================
|
|
* 控制器
|
|
*/
|
|
class Seo extends AdminControl {
|
|
|
|
public function initialize() {
|
|
parent::initialize();
|
|
Lang::load(base_path() . 'admin/lang/'.config('lang.default_lang').'/seo.lang.php');
|
|
}
|
|
|
|
function index() {
|
|
if (!request()->isPost()) {
|
|
//读取SEO信息
|
|
$list = Db::name('seo')->select()->toArray();
|
|
|
|
// dump($list);die;
|
|
$seo = array();
|
|
foreach ((array) $list as $value) {
|
|
$seo[$value['seo_type']] = $value;
|
|
}
|
|
|
|
View::assign('seo', $seo);
|
|
return View::fetch('index');
|
|
} else {
|
|
$seo = input('post.SEO/a');#获取数组
|
|
if (is_array($seo)) {
|
|
foreach ($seo as $key => $value) {
|
|
Db::name('seo')->where(array('seo_type' => $key))->update($value);
|
|
}
|
|
dkcache('seo');
|
|
ds_json_encode(10000, lang('ds_common_save_succ'));
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|