2

我正在开发一个模块,我需要从每页的主题目录中调用不同的 .tpl.php 布局。所以我目前拥有的是:

 return theme('adverts_index', array('adverts' => $advertsThemeArray));    

这就是我在其中一个页面回调函数中返回的内容。现在这完美无缺,但在模块内的另一个页面回调函数中,我尝试使用不同的主题钩子进行相同的操作,但它不会调用主题钩子指定的布局。

 $r = theme('adverts_view_advert', array(
      'advert' => array(
        'id' => $advert->aid,
        'seller' => $advertiser,
        'more_from_user' => array(),
        'year' => $advert->year,
        'condition' => $advert->condition,
        'region' => $advert->region,
        'city' => $advert->city,
        'content' => $advert->description,
        'bids' => $allBidsArray,
      ),
    )
  );
  return $r;

该页面不是完全空白的,在每个包含标题的页面上使用的 main page.tpl.php 仍然显示。只是我试图调用其内容的模板没有显示。

这是我的钩子主题:

 function adverts_theme() {
  $theme = array();
  $theme['adverts_index'] = array(
      'template' => 'adverts-index',
      'variables' => array(
          'advert' => array(
            'title' => null,
            'formatted_price' => null,
            'image' => null,
            'permalink' => null,
            'formatted_date' => null,
            'description' => null,
          ),
        ),
    );

  $theme['adverts_view_advert'] = array(
      'template' => 'adverts-single',
      'variables' => array(
          'advert' => array(
                'id' => null,
                'seller' => null,
                'more_from_user' => null,
                'year' => null,
                'condition' => null,
                'region' => null,
                'city' => null,
                'content' => null,
                'bids' => null,
            ),
          ),
        );
  return $theme;

}

任何帮助将不胜感激!

4

1 回答 1

2

argumentsvariables在 Drupal 7 中更改为,并且由于要么variables要么render element是必需的,因此注册表不会选择您的主题。

hook_theme()实现中进行两项更改,清除缓存,您应该一切顺利。

于 2013-01-06T16:50:50.480 回答