123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace addons\address\controller;
- use think\addons\Controller;
- use think\Config;
- use think\Hook;
- class Index extends Controller
- {
- public function index()
- {
- // 语言检测
- $lang = strip_tags($this->request->langset());
- $site = Config::get("site");
- // 配置信息
- $config = [
- 'site' => array_intersect_key($site, array_flip(['name', 'cdnurl', 'version', 'timezone', 'languages'])),
- 'upload' => null,
- 'modulename' => 'addons',
- 'controllername' => 'index',
- 'actionname' => 'index',
- 'jsname' => 'addons/address',
- 'moduleurl' => '',
- 'language' => $lang
- ];
- $config = array_merge($config, Config::get("view_replace_str"));
- // 配置信息后
- Hook::listen("config_init", $config);
- // 加载当前控制器语言包
- $this->view->assign('site', $site);
- $this->view->assign('config', $config);
- return $this->view->fetch();
- }
- /**
- * 选择地址
- * @return string
- * @throws \think\Exception
- */
- public function select()
- {
- $config = get_addon_config('address');
- $lat = $this->request->get('lat', $config['lat']);
- $lng = $this->request->get('lng', $config['lng']);
- $this->view->assign('lat', $lat);
- $this->view->assign('lng', $lng);
- $this->view->assign('location', $config['location']);
- return $this->view->fetch('index/' . $config['maptype']);
- }
- }
|