. * * @copyright Copyright 2009-2010 Chunsheng Wang * @author Chunsheng Wang * @package setting * @version $Id$ * @link http://www.zentao.cn */ ?> getItem('system', 'global', 'version'); if($version) return $version; return '0.3 beta'; } /* 获得某一个配置项的值。*/ public function getItem($owner, $section, $key) { return $this->dao->select('`value`')->from(TABLE_CONFIG) ->where('company')->eq(0) ->andWhere('owner')->eq($owner) ->andWhere('section')->eq($section) ->andWhere('`key`')->eq($key) ->fetch('value'); } }