12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\admin\model;
-
- use think\Db;
- use think\Model;
-
-
- class ModelField extends Model
- {
-
-
- public function model_field_cache()
- {
- $cache = array();
- $modelList = Db::name("Model")->select();
- foreach ($modelList as $info) {
- $data = Db::name("ModelField")->where(array("modelid" => $info['id'], "status" => 1))->order('listorder DESC, id DESC')->select();
- $fieldList = array();
- if (!empty($data) && is_array($data)) {
- foreach ($data as $rs) {
-
- if (!empty($rs['setting'])) {
- $rs = array_merge($rs, unserialize($rs['setting']));
- }
- $fieldList[$rs['name']] = $rs;
- }
- }
- $cache[$info['id']] = $fieldList;
- }
- cache('ModelField', $cache);
- return $cache;
- }
-
- }
|