12345678910111213141516171819202122232425 |
- <?php
- class setconfig_m extends Model
- {
- function __construct()
- {
- parent::Model();
- }
- function setconfig_m()
- {
- $this->__construct();
- }
- function get_list($langid="zh")
- {
- $file = ROOT_DATA."system_".$langid.".php";
- $_sys = array();
- if(file_exists($file))
- {
- include($file);
- }
- return $_sys;
- }
- }
- ?>
|