4

我正在研究 yii 框架。我有tbl_setting表和设置模型。其中有许多键和值。管理员可以从管理面板更改所有值。表结构如下图所示:

 define           Value     
 COMPANY_NAME     Google    
 META_TITLE       .::My Site::.
 ........  
 ........

在核心 php 中,我使用 define() 定义所有键值,在 yii 中我如何在全局范围内使用它?

我试图在 main.php 文件中设置参数,但我不能在那里使用设置模型。


我找到了答案。我已经使用以下方法完成了。我不确定这是否是好的做法,如果有人知道其他好的方法,请发布。

创建新组件:WebSetting.php

class WebSetting extends CApplicationComponent
{
    function getValue($key)
    {
        $model = Setting::model()->findByAttributes(array('define'=>$key));
        return $model->value;
    }
}

主文件

'setting'=>array('class'=>'WebSetting'),

现在我可以使用以下方式访问任何地方的所有值:

 echo Yii::app()->setting->getValue('META_TITLE'); 
 echo Yii::app()->setting->getValue('COMPANY_ADDRESS');
4

2 回答 2

1

您可以添加新的应用程序组件

    class EConfig extends CApplicationComponent
{
    public $cache = 0;
    public $dependency = null;

    protected $data = array();

    public function init()
    {

        $items=Config::model()->findAll();


        foreach ($items as $item)
        {
            if ($item['param'])
                $this->data[$item['param']] = $item['value'] === '' ?  $item['default'] : $item['value'];
        }
        parent::init();
    }

    public function get($key)
    {
        if (array_key_exists($key, $this->data))
            return $this->data[$key];
        else
            //throw new CException('Undefined parameter ' . $key);
            return '';
    }

    public function set($key, $value)
    {
        $model = Config::model()->findByAttributes(array('param'=>$key));
        if (!$model)
            throw new CException('Undefined parameter ' . $key);

        $model->value = $value;

        if ($model->save())
            $this->data[$key] = $value;

    }

    public function add($params)
    {
        if (isset($params[0]) && is_array($params[0]))
        {
            foreach ($params as $item)
                $this->createParameter($item);
        }
        elseif ($params)
            $this->createParameter($params);
    }

    public function delete($key)
    {
        if (is_array($key))
        {
            foreach ($key as $item)
                $this->removeParameter($item);
        }
        elseif ($key)
            $this->removeParameter($key);
    }

    protected function getDbConnection()
    {
        if ($this->cache)
            $db = Yii::app()->db->cache($this->cache, $this->dependency);
        else
            $db = Yii::app()->db;

        return $db;
    }

    protected function createParameter($param)
    {
        if (!empty($param['param']))
        {
            $model = Config::model()->findByAttributes(array('param' => $param['param']));
            if ($model === null)
                $model = new Config();

            $model->param = $param['param'];
            $model->label = isset($param['label']) ? $param['label'] : $param['param'];
            $model->value = isset($param['value']) ? $param['value'] : '';
            $model->default = isset($param['default']) ? $param['default'] : '';
            $model->type = isset($param['type']) ? $param['type'] : 'string';

            $model->save();
        }
    }

    protected function removeParameter($key)
    {
        if (!empty($key))
        {
            $model = Config::model()->findByAttributes(array('param'=>$key));
            if ($model)
                $model->delete();
        }
    }
}

之后,您可以使用它来将参数添加到数据库(如果还没有这样的参数)

  Yii::app()->config->add(array(
                'param'   => 'PARAMNAME',
                'label'   => 'yourlabel',
                'value'   => 4534,
                'type'    => 'integer',
                'default' => 4534,
            ));

获取参数值 -

Yii::app()->config->get('PARAMNAME');

设置参数值(如果参数存在)

Yii::app()->config->set('PARAMNAME',100500);

当然你需要为它创建表和类和控制器

    CREATE TABLE `Config` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `param` varchar(128) NOT NULL,
  `value` text NOT NULL,
  `default` text NOT NULL,
  `label` varchar(255) NOT NULL,
  `type` varchar(128) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `param` (`param`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=290 ;

并对配置添加一些更改

 components=>array(
 ...
  'config' => array(
          'class' => 'application.extensions.components.EConfig',
         //   'cache'=>3600,
       ),

并将配置添加到配置中的预加载部分

 'preload' => array(..,'config'),
于 2014-09-22T07:08:32.387 回答
0

我正在使用,

<?php
class SitesettingWidget extends CWidget {

    public function run() {
        $siteData = SiteSetting::model()->findAll(); 

        $this->render('setting', array(
            'siteData'=>$siteData,   
        ));
    }
}

但认为 CApplicationComponent 是更好的方法......

于 2012-06-21T12:28:02.627 回答