模块中的模块视图和操作

时间:2013-06-09 16:17:18

标签: php tabs symfony-1.4

我正在使用Symfony 1.4.20开发一个网站,但设计师想要这样的图像

每个都是管理模块生成槽任务doctrine:generate-admin

我是如何完成这项任务的?我的意思是与标签制作的每个界面一起使用?

修改

根据@antony的建议,我这样做: 在/frontend/modules/emisores/actions/components.class.php中创建components.class.php,在类中添加此代码:

class emisoresComponents extends sfComponents {

    public function executeIndex(sfWebRequest $request) {
        $this->sdriving_emisors = Doctrine_Core::getTable('SdrivingEmisor')->createQuery('a')->execute();
    }
}

在视图中包含创建标签的组件

<?php include_component('emisores'); ?>

但是我收到了这个错误

  

sfComponents初始化失败。

怎么了?

EDIT2 我遇到了一些分页问题,​​因为我被重定向到模块而不是在选项卡中获取分页。我将组件更改为:

public function executeIndex(sfWebRequest $request) {
        $this->pager = new sfDoctrinePager('SdrivingEmisor', 10);
        $this->pager->setQuery(Doctrine_Core::getTable('SdrivingEmisor')->createQuery('a'));
        $this->pager->setPage($request->getParameter('page', 1));
        $this->pager->init();
}

然后在视图(_index.php)中我写了这个:

<?php if (count($pager) > 0): ?>
    <table class="table table-condensed table-striped table-bordered table-hover marginBottom">
        <thead>
            <tr>
                <th><?php echo __('Número') ?></th>
                <th>&nbsp;</th>
            </tr>
        </thead>
        <tbody>
            <?php foreach ($pager->getResults() as $sdriving_emisor): ?>
                <tr>
                    <td><?php echo $sdriving_emisor->getNumero() ?></td>
                    <td>
                        <a href="<?php echo url_for('emisores/edit?idemisor=' . $sdriving_emisor->getIdemisor() . '&idempresa=' . $sdriving_emisor->getIdempresa()) ?>" class="btn btn-success btn-mini">Editar</a>
                        <a href="<?php echo url_for('emisores/delete?idemisor=' . $sdriving_emisor->getIdemisor() . '&idempresa=' . $sdriving_emisor->getIdempresa()) ?>" class="btn btn-danger btn-mini">Eliminar</a>
                    </td>
                </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
<?php else: ?>
    <div class="alert alert-block">
        <h4><?php echo __('Información!') ?></h4>
        <?php echo __('No se ha creado ningún emisor aún. Haga clic en el botón "Crear Nuevo" para crear uno.') ?>
    </div>
<?php endif; ?>

<div class="pagination">
    <strong><?php echo count($pager) ?></strong> <?php echo __('emisores encontrados') ?>
    <?php if ($pager->haveToPaginate()): ?>
        <div class="clearfix"></div>
        <ul>
            <li><?php echo link_to(__('Anterior'), 'emisores/index?page=' . $pager->getPreviousPage()) ?></li>
            <?php $links = $pager->getLinks(); ?>
            <?php foreach ($links as $page): ?>
                <li>
                    <?php echo ($page == $pager->getPage()) ? $page : link_to($page, 'emisores/index?page=' . $page); ?>
                    <?php if ($page != $pager->getCurrentMaxLink()): ?> 
                    <?php endif ?>
                </li>
            <?php endforeach; ?>
            <li><?php echo link_to(__('Siguiente'), 'emisores/index?page=' . $pager->getNextPage()) ?></li>
        </ul>
    <?php endif; ?>
</div>

但正如我所说,我被重定向到emisor模块而不是活动标签内的分页,有什么建议吗?

1 个答案:

答案 0 :(得分:2)

您使用标签的事实不应该有太大变化。我仍然会创建一个单独的模块来处理每个选项卡的CRUD任务。您可能需要使用partials并将它们嵌入到usario模块的模板中。 例如,您可以将每个标签存储在_form.php部分中,您的结构可能是这样的:

   \app
     \admin
         \modules
            \usario
               \actions
               \templates
                  editSuccess.php
                  _form.php
            \emisore
               \actions
               \templates
                  _form.php
            \maquina
               \actions
               \templates
                  _form.php

您可以通过几种不同的方式将每个表单部分包含在用户editSuccess.php模板中。您可以在用户编辑操作中创建表单,也可以使用组件。

// app\admin\modules\usario\actions\actions.class.php
public function executeEdit(sfWebRequest $request)
{
    $usario = // Code to usario;
    $this->usario = new UsarioForm($usario);

    $emisore = // Code to get emisore;
    $this->emisore = new EmisoreForm($emisore);

    //...
}

public function executeUpdate(sfWebRequest $request)
{
    // ... Do update here

    // Keep track of the tab being edited
    $this->getUser()->setFlash('activeTab', 'usario');
}

或者为每个其他模块创建一个组件类

// app\admin\modules\maquina\actions\components.class.php
public function executeNew(sfWebRequest $request)
{
   $maquina = // Code to get Maquina;
   $this->form = new MaquinaForm($maquina);
}

在模板中嵌入这样的内容。还要跟踪刚刚在会话flash对象中编辑的选项卡

<!-- app\admin\modules\usario\templates\editSuccess.php -->

<div class="tab-content<?php echo $sf_user->getFlash('activeTab') == 'usario' ? ' active' : '' ?>">
    <?php include_partial('usario/form', array('form' => $usarioForm))); ?>
</div>

<div class="tab-content<?php echo $sf_user->getFlash('activeTab') == 'emisore' ? ' active' : '' ?>">
    <?php include_partial('emisore/form', array('form' => $emisoreForm))); ?>
</div>

<div class="tab-content<?php echo $sf_user->getFlash('activeTab') == 'maquina' ? ' active' : '' ?>">
    <?php include_component('maquina', 'form'); ?>
</div>