使用Zend_Config INI或XML与动态数据

时间:2010-09-28 22:05:35

标签: php zend-framework zend-config

我有这样一个数组用于渲染 TableGear

array(
            "database" => array(
                'username' => $this->config->resources->db->params->username,
                'password' => $this->config->resources->db->params->password,
                'name' => $this->config->resources->db->params->dbname,
                'table'    => "projetos",
                'fields' => array(
                    'pro_cliente',
                    'pro_area',
                    'pro_evento',
                    'estado',
                    'cidade',
                    'pro_mes',
                    'pro_montagem_inicio',
                    'pro_montagem_fim',
                    'pro_evento_inicio',
                    'pro_evento_fim',
                    'pro_desmontagem_inicio',
                    'pro_desmontagem_fim',
                    'pro_atendimento',
                    'pro_projeto',
                    'pro_situacao'
                )
                //"noAutoQuery" => true
            ),
            "selects" => array(
                'pro_situacao' => array('Aberto', 'Em Andamento', 'Fechado', 'Cancelado'),
                'estado' => $this->estados->getEstados()
            ),
            "formatting" => array(
                'pro_valor' => 'currency[prefix=R$ ,pad]',
                'pro_montagem_inicio' => 'date[d/m]',
                'pro_montagem_fim' => 'date[d/m]',
                'pro_evento_inicio' => 'date[d/m]',
                'pro_evento_fim' => 'date[d/m]',
                'pro_desmontagem_inicio' => 'date[d/m]',
                'pro_desmontagem_fim' => 'date[d/m]'
            ),
            'headers' => array(
                'pro_id' => 'ID',
                'pro_cliente' => 'Cliente',
                'pro_area' => 'Area',
                'pro_evento' => 'Evento',
                'estado' => 'UF',
                'cidade' => 'Cidade',
                'pro_mes' => 'Mes',
                'pro_montagem_inicio' => 'Inicio Montagem',
                'pro_montagem_fim' => 'Fim Montagem',
                'pro_evento_inicio' => 'Inicio Evento',
                'pro_evento_fim' => 'Fim Evento',
                'pro_desmontagem_inicio' => 'Inicio Desmontagem',
                'pro_desmontagem_fim' => 'Fim Desmontagem',
                'pro_atendimento' => 'Atendimento',
                'pro_projeto' => 'Projeto',
                'pro_situacao' => 'Situacao',
                'pro_valor' => 'Valor',
                'DELETE' => 'Deletar'
            ),
            'columns' => array(
                'pro_montagem_inicio' => 'date-picker',
                'pro_montagem_fim' => 'date-picker',
                'pro_evento_inicio' => 'date-picker',
                'pro_evento_fim' => 'date-picker',
                'pro_desmontagem_inicio' => 'date-picker',
                'pro_desmontagem_fim' => 'date-picker'
            ),
            'allowDelete' => false,
            'editable' => 'none'
        ); // End of Tablegear

如你所见。我使用动态数据$this->config->resources->db->params->username$this->estados->getEstados()(来自我的数据库的数据),我只能在数组表单数据中进入控制器。

我发现这些选项太大而且不必在控制器中。我想将Zend_Config与INI或XML文件一起使用。但是如何检索我使用的这些数据(即$this->estados->getEstados())?

2 个答案:

答案 0 :(得分:0)

嗯,你可以简单地合并一些东西...例如,假设您在模块或应用程序配置中的大多数配置,您可以创建一个名为configureTableGearRendering的方法:

protected function configureTableGearRendering(array $selects, $database = array(), $formatting = array(), $headers = array(), $allowDelete = null, $editable = null)
{
   $config = $this->config->tableGear;
   $config['selects'] = array_merge($config, $selects);
   $config['database'] = array_merge($config, $database);
   $config['fromatting'] = array_merge($config, $formatting);

   if(null !== $allowDelete)
   {
     $config['allowDelete'] = $allowDelete;
   }

   if(null !== $editable)
   {
     $config['editable'] = $editable;
   }

   return $config;
}

当然,如果您不需要选择所有这些东西,oyu可以根据您的需要进行调整。但是,这允许您传入一个数组来添加或覆盖所有顶级键的选项。您可以编写递归合并函数,以允许您在任何级别为键提供选项,但结构必须相同。或者,如果您只需要覆盖selects键,则只能执行该操作。

你可以做的另一件事就是简单地将配置定义为回调,并假设config中的键是附加到控制器的变量名,并且回调值是方法名,例如:

<selects>
  <estados>
    <callback>getEstados</callback>
  </estados>
</select>

然后在您的控制器中,您可以扫描阵列中的回调键,并使用call_user_funccall_user_func_array ...或直接动态方法应用回调。

然而:为什么你不创造桌上课程??

答案 1 :(得分:0)

我设法创建了Tablegear模型来处理这个问题

<?php

class Application_Model_Tablegear
{
protected $_name = null;
protected $_username = null;
protected $_password = null;
protected $_estados = null;
protected $_allowDelete = false;
protected $_editable = 'all';

public function allowDelete() {
    $this->_allowDelete = true;
    return $this;
}

public function setEditable($fields) {
    $this->_editable = $fields;
    return $this;
}

public function setEstados($estados) {
    $this->_estados = $estados;
    return $this;
}

public function setDatabase($params) {
    $this->_username = $params->username;
    $this->_password = $params->password;
    $this->_name = $params->dbname;
    return $this;
}

public function getOptions() {
    return array(
            "database" => array(
                'username' => $this->_username,
                'password' => $this->_password,
                'name' => $this->_name,
                'table'    => "projetos",
                'fields' => array(
                    'pro_cliente',
                    'pro_area',
                    'pro_evento',
                    'estado',
                    'cidade',
                    'pro_mes',
                    'pro_montagem_inicio',
                    'pro_montagem_fim',
                    'pro_evento_inicio',
                    'pro_evento_fim',
                    'pro_desmontagem_inicio',
                    'pro_desmontagem_fim',
                    'pro_atendimento',
                    'pro_projeto',
                    'pro_situacao'
                )
                //"noAutoQuery" => true
            ),
                "selects" => array(
                    'pro_situacao' => array('Aberto', 'Em Andamento', 'Fechado', 'Cancelado'),
                    'estado' => $this->_estados
                ),
                "formatting" => array(
                    'pro_valor' => 'currency[prefix=R$ ,pad]',
                    'pro_montagem_inicio' => 'date[d/m]',
                    'pro_montagem_fim' => 'date[d/m]',
                    'pro_evento_inicio' => 'date[d/m]',
                    'pro_evento_fim' => 'date[d/m]',
                    'pro_desmontagem_inicio' => 'date[d/m]',
                    'pro_desmontagem_fim' => 'date[d/m]'
                ),
                'headers' => array(
                    'pro_id' => 'ID',
                    'pro_cliente' => 'Cliente',
                    'pro_area' => 'Area',
                    'pro_evento' => 'Evento',
                    'estado' => 'UF',
                    'cidade' => 'Cidade',
                    'pro_mes' => 'Mes',
                    'pro_montagem_inicio' => 'Inicio Montagem',
                    'pro_montagem_fim' => 'Fim Montagem',
                    'pro_evento_inicio' => 'Inicio Evento',
                    'pro_evento_fim' => 'Fim Evento',
                    'pro_desmontagem_inicio' => 'Inicio Desmontagem',
                    'pro_desmontagem_fim' => 'Fim Desmontagem',
                    'pro_atendimento' => 'Atendimento',
                    'pro_projeto' => 'Projeto',
                    'pro_situacao' => 'Situacao',
                    'pro_valor' => 'Valor',
                    'DELETE' => 'Deletar'
                ),
                'columns' => array(
                    'pro_montagem_inicio' => 'date-picker',
                    'pro_montagem_fim' => 'date-picker',
                    'pro_evento_inicio' => 'date-picker',
                    'pro_evento_fim' => 'date-picker',
                    'pro_desmontagem_inicio' => 'date-picker',
                    'pro_desmontagem_fim' => 'date-picker'
                ),
                'allowDelete' => $this->_allowDelete,
                'editable' => $this->_editable
            );
    }
}

然后我在控制器中设置方法

$this->tgOptions = new Application_Model_Tablegear();
$this->tgOptions->setDatabase($this->config->resources->db->params)
            ->setEstados($this->estados->getEstados());