0

这是在后端为模型“coche”生成的索引操作和模板。

public function executeIndex(sfWebRequest $request)
   {
     // sorting
     if ($request->getParameter('sort') &&
$this->isValidSortColumn($request->getParameter('sort')))
     {
       $this->setSort(array($request->getParameter('sort'),
$request->getParameter('sort_type')));
     }

     // pager
     if ($request->getParameter('page'))
     {
       $this->setPage($request->getParameter('page'));
     }

     $this->pager = $this->getPager();
     $this->sort = $this->getSort();
   }

这是索引模板:

<?php use_helper('I18N', 'Date') ?>
<?php include_partial('coche/assets') ?>

<div id="sf_admin_container">
<h1><?php echo __('Coche List', array(), 'messages') ?></h1>

<?php include_partial('coche/flashes') ?>

<div id="sf_admin_header">
<?php include_partial('coche/list_header', array('pager' => $pager)) ?>
</div>

<div id="sf_admin_bar">
<?php include_partial('coche/filters', array('form' => $filters,
'configuration' => $configuration)) ?>
</div>

<div id="sf_admin_content">
<form action="<?php echo url_for('coche_coche_collection',
array('action' => 'batch')) ?>" method="post">
<?php include_partial('coche/list', array('pager' => $pager, 'sort' =>
$sort, 'helper' => $helper)) ?>
<ul class="sf_admin_actions">
<?php include_partial('coche/list_batch_actions', array('helper' =>
$helper)) ?>
<?php include_partial('coche/list_actions', array('helper' => $helper)) ?>
</ul>
</form>
</div>

<div id="sf_admin_footer">
<?php include_partial('coche/list_footer', array('pager' => $pager)) ?>
</div>
</div>

在模板中有这一行:

include_partial('coche/filters', array('form' => $filters,
'configuration' => $configuration)) ?>

但我在索引操作中找不到变量 $this->filters 和 $this->configuration。

这怎么可能?

哈维

4

2 回答 2

0

索引操作是否扩展了一个类?如果是的话,就是这样!

于 2010-03-18T14:34:35.530 回答
0

它看起来像一个由管理员生成器生成的模块。如果是这样,那么这些变量设置在autoCocheActions驻留在项目缓存中并动态生成的类中。

于 2010-03-18T15:00:16.733 回答