doubu7425 2017-01-14 04:04
浏览 65
已采纳

在Drupal的模块开发中使用块中的模板文件中的foreach显示数组值

I created a custom module to create a block programmatically and show country list. It uses custom template file. I passed the country list array to the template file.

Issue is how do I show each country using foreach inside the template file.

My code is given below.

my_web_service.module

    <?php

    /*
     * @file
     * A sample web service module
     */

    /*
     * Implements hook_menu
     */

    function my_web_service_menu() {
      $items = array();

      $items['test-web-service'] = array(
        'title' => 'Test Web Service',
        'description' => 'Test web service',    
        'access arguments' => array('access administration pages'),
        'type' => MENU_NORMAL_ITEM,
      );

      return $items;
    }

    function my_web_service_consume_data() {
      $url = 'http://services.groupkt.com/country/get/all';
      $result = drupal_http_request($url);
      $country_response = drupal_json_decode($result->data);
      $country = array();
      $i = 0;
      if (!empty($country_response)) {
        foreach($country_response['RestResponse']['result'] as $country_arr) {
          $country[$i] = $country_arr['name'];
          $i++;
        }
      }

      return $country; 
    }

    function my_web_service_block_info() {
      $blocks['my_web_service'] = array(
        'info' => t('My Web Service'),
      );

      return $blocks;
    }

    function my_web_service_block_view($delta = '') {
      switch ($delta) {
        case 'my_web_service' :
          $block['subject'] = t('My Web Service');
          if (user_access('access content')) {
            $result = my_web_service_consume_data();
            $variables = $result;
            //$block['content'] = theme('item_list', array('items' => $result)); 
            $block['content'] = theme('block__my_web_service', $variables);
            //$block['content'] = theme('item_list', $variables);
          }
      } 

      return $block;

}
function my_web_service_theme($existing, $type, $theme, $path) {
  $theme = array();
  $theme['block__my_web_service'] = array(
    'variables' => array(),
    'template' => 'block--my_web_service',    
    'path' => drupal_get_path('module', 'my_web_service') . '/templates',
  );
  return $theme;
}

template/block--my_web_service.tpl

<?php
echo '<pre>' . print_r($variables, true) . '</pre>';
?>

Any help is highly appreciated. Please find the screen shot of out put below.

Screen shot

References

Create a custom template file for a custom block in drupal

https://www.jaypan.com/tutorial/custom-drupal-blocks-right-way

  • 写回答

2条回答 默认 最新

  • drbuowqe02101 2017-01-14 16:54
    关注

    I noticed a few issues in your code:

    1. Your hook_theme implementation is incomplete. Final code:

      function my_web_service_theme($existing, $type, $theme, $path) {
         $theme = array();
         $theme['block__my_web_service'] = array(
           'variables' => array(
              'results' => array()
            ),
           'template' => 'block--my_web_service',    
           'path' => drupal_get_path('module', 'my_web_service') . '/templates',
         );
         return $theme;
       }
      
    2. Call your theme like this:

       ...
       $result = my_web_service_consume_data();
       $variables = array(
           'results' => $result
       );
       $block['content'] = theme('block__my_web_service', $variables);
      
    3. Use $results variable in your template:

       <?php
        foreach ($results as $result) {
           echo $result . '<br/>';
        }
       ?>
      

    That's pretty much it. Good luck.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?