86 lines
2.6 KiB
PHP
86 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\cms;
|
|
|
|
use addons\cms\library\Service;
|
|
use app\common\controller\Backend;
|
|
use think\Db;
|
|
use think\Exception;
|
|
|
|
/**
|
|
* 内容模型表
|
|
*
|
|
* @icon fa fa-th
|
|
*/
|
|
class Modelx extends Backend
|
|
{
|
|
|
|
/**
|
|
* Model模型对象
|
|
*/
|
|
protected $model = null;
|
|
protected $searchFields = 'id,name,table,channeltpl,listtpl,showtpl';
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\cms\Modelx;
|
|
}
|
|
|
|
/**
|
|
* 复制模型
|
|
*/
|
|
public function duplicate($ids = "")
|
|
{
|
|
$row = $this->model->get($ids);
|
|
if (!$row) {
|
|
$this->error(__('No Results were found'));
|
|
}
|
|
$adminIds = $this->getDataLimitAdminIds();
|
|
if (is_array($adminIds)) {
|
|
if (!in_array($row[$this->dataLimitField], $adminIds)) {
|
|
$this->error(__('You have no permission'));
|
|
}
|
|
}
|
|
if ($this->request->isPost()) {
|
|
$table = $this->request->request("table");
|
|
$tableInfo = null;
|
|
try {
|
|
$tableInfo = \think\Db::name($table)->getTableInfo();
|
|
} catch (\Exception $e) {
|
|
}
|
|
if ($tableInfo) {
|
|
$this->error("模型表名已经存在");
|
|
}
|
|
Db::startTrans();
|
|
try {
|
|
$data = [
|
|
'name' => $row->getData('name') . '_copy',
|
|
'table' => $table,
|
|
'fields' => $row->fields,
|
|
'channeltpl' => $row->channeltpl,
|
|
'listtpl' => $row->listtpl,
|
|
'showtpl' => $row->showtpl,
|
|
'setting' => $row->setting,
|
|
];
|
|
$modelx = \app\admin\model\cms\Modelx::create($data, true);
|
|
$fieldsList = \app\admin\model\cms\Fields::where('source', 'model')->where('source_id', $row['id'])->select();
|
|
foreach ($fieldsList as $index => $item) {
|
|
$data = $item->toArray();
|
|
$data['source_id'] = $modelx->id;
|
|
unset($data['id'], $data['createtime'], $data['updatetime']);
|
|
\app\admin\model\cms\Fields::create($data, true);
|
|
}
|
|
Db::commit();
|
|
} catch (\Exception $e) {
|
|
Db::rollback();
|
|
$this->error("复制失败,错误:" . $e->getMessage());
|
|
}
|
|
$this->success();
|
|
}
|
|
$this->view->assign("row", $row);
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
}
|