7

如何在与表单本身相同的页面上打印表单提交的结果?

相关钩子菜单:

    $items['admin/content/ncbi_subsites/paths'] = array(
        'title' => 'Paths',
        'description' => 'Paths for a particular subsite',
        'page callback' => 'ncbi_subsites_show_path_page',
        'access arguments' => array( 'administer site configuration' ),
        'type' => MENU_LOCAL_TASK,
    );

页面回调:

function ncbi_subsites_show_path_page() {
  $f = drupal_get_form('_ncbi_subsites_show_paths_form');
  return $f;
}

表单构建功能:

   function _ncbi_subsites_show_paths_form() {
      // bunch of code here

      $form['subsite'] = array(
        '#title' => t('Subsites'),
        '#type' => 'select',
        '#description' => 'Choose a subsite to get its paths',
        '#default_value' => 'Choose a subsite',
        '#options'=> $tmp,
      );

      $form['showthem'] = array(
        '#type' => 'submit',
        '#value' => 'Show paths',
        '#submit' => array( 'ncbi_subsites_show_paths_submit'),    
      );

      return $form;
    }

提交功能(为简洁起见跳过了验证功能)

function ncbi_subsites_show_paths_submit( &$form, &$form_state ) {
  //dpm ( $form_state );
  $subsite_name = $form_state['values']['subsite'];
  $subsite = new Subsite( $subsite_name ); //y own class that I use internally in this module
  $paths = $subsite->normalized_paths;

  // build list
  $list = theme_item_list( $paths );
}

如果我打印该 $list 变量,这正是我想要的,但我不确定如何将它放入具有从“ncbi_subsites_show_path_page”构建的原始表单页面的页面中。任何帮助深表感谢!

4

5 回答 5

7

Nikit 发布的链接中的关键信息是 $form_state['rebuild']。以下是 Drupal 7 文档中的一些信息,我认为这些信息同样适用于 Drupal 6...

$form_state['rebuild']:通常,在整个表单处理完成并提交处理程序运行后,一个表单被认为是完成的,drupal_redirect_form() 将使用 GET 请求将用户重定向到新页面(因此浏览器刷新不重新提交表格)。然而,如果'rebuild'被设置为TRUE,那么一个新的表单副本会立即被构建并发送到浏览器;而不是重定向。这用于多步骤表单,例如向导和确认表单。此外,如果表单验证处理程序已将 'rebuild' 设置为 TRUE 并且发生验证错误,则在返回之前重新构建表单,使表单元素能够根据特定的验证错误进行更改。

于 2010-04-29T02:36:57.023 回答
1

这是同一页面上的页面和列表的完整工作示例

<?php


/*
* Implements hook_mennu()
*/
function test_menu() {
  $items['test'] = array(
    'title'             => t('Test'),
    'page callback'     => 'test_search_page',
    'access callback'   => True,
  );

  return $items;
}


function test_search_page(){
    $form = drupal_get_form('test_search_form');

    return $form;
}


function test_search_form($form, &$form_state){
  $header = array(t('id'), t('name'), t('firstname'));
  $rows = Null;
  $form['name'] = array(
    '#type'             => 'textfield',
    '#title'            => t('Name'),
    '#required'         => True,
    '#default_value'    => isset($_GET['name']) ? $_GET['name'] : Null
  );

  $form['submit'] = array(
    '#type'           => 'submit',
    '#value'          => t('submit'),
  );



  if (isset($_GET['name'])){
    $rows = get_data();
  }
  $form['table'] = array(
    '#theme' => 'table',
    '#header' => $header,
    '#rows' => $rows,
    '#empty' => t('Aucun résultat.')
  );
  $form['pager'] = array('#markup' => theme('pager'));

  /*
  if (isset($form_state['table'])) {
    $form['table']  = $form_state['table'];
  }
  $form['pager'] = array('#markup' => theme('pager'));
  */
  return $form;
}

function test_search_form_submit($form, &$form_state){
   $form_state['redirect'] = array(
    // $path
    'test',
    // $options
    array('query' => array('name' => $form_state['values']['name'])),
    // $http_response_code
    302,
  );
}

//$header = array(t('id'), t('name'), t('firstname'));

function get_data(){
    $data =  array(
        0   => array(
            'id' => '0',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        1   => array(
            'id' => '1',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        2   => array(
            'id' => '2',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        3   => array(
            'id' => '3',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        4   => array(
            'id' => '4',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        5   => array(
            'id' => '5',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        6   => array(
            'id' => '6',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        7   => array(
            'id' => '7',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        8   => array(
            'id' => '8',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        9   => array(
            'id' => '9',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        10   => array(
            'id' => '10',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        ),
        11   => array(
            'id' => '11',
            'name'  => 'pokpokpok',
            'firstname' => 'pokpokpok',
        )
    );
    $paging = pager_array_splice($data, 2);

    return $paging;
}
/*
    $header = array(t('id'), t('name'), t('firstname'));

    $form_state['table'] = array(
      '#theme' => 'table',
      '#header' => $header,
      '#rows' => $paging,
      '#empty' => t('Aucun r?sultat.')
    );

    $form_state['rebuild'] = True;*/


function pager_array_splice($data, $limit = 9, $element = 0) {
  global $pager_page_array, $pager_total, $pager_total_items;
  $page = isset($_GET['page']) ? $_GET['page'] : '';

  // Convert comma-separated $page to an array, used by other functions.
  $pager_page_array = explode(',', $page);

  // We calculate the total of pages as ceil(items / limit).
  $pager_total_items[$element] = count($data);
  $pager_total[$element] = ceil($pager_total_items[$element] / $limit);
  $pager_page_array[$element] = max(0, min((int)$pager_page_array[$element], ((int)$pager_total[$element]) - 1));
  return array_slice($data, $pager_page_array[$element] * $limit, $limit, TRUE);
}
于 2015-02-25T10:10:33.903 回答
0

Drupal6 node.module 和 dblog.module 通过提供一个页面回调来为 admin/content/node 和 admin/reports/dblog 执行此操作,该回调在其输出中包含呈现的表单。

modules/dblog/dblog.admin.inc
dblog_overview()

modules/node/node.admin.inc
node_admin_nodes()

在表单提交中,更新的过滤器设置存储在 $_SESSION 中。

在页面回调中,它根据存储在 $_SESSION 中的过滤器设置呈现结果。

$_SESSION 在这里只是另一个全局变量(尽管是一个持久变量)。

于 2010-12-29T21:47:41.460 回答
0

对于 Drupal7,我发现如果您使用$form_state['rebuild'],那么最好从 PHP 超级全局变量$_POST(或$_REQUEST)访问表单变量。但是,如果您使用$form_state['redirect'],则解决方案$_SESSION更好(而不是使用$_GETor $_REQUEST)。

即使对于专家,我也觉得这个问题非常棘手。也许 Drupal 有一些我们不知道的更简单和直观的方式。

于 2011-10-27T07:06:05.040 回答
0

对于 Drupal 8,如果您有一个表单实现FormBase,我发现我需要设置要重建的表单以允许在表单提交成功后在呈现表单期间使用表单状态:

  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_state->setRebuild(TRUE);
  }

默认情况下,表单将提交并处理表单,然后重定向,然后再次构建表单,此时您没有表单状态(除非您已将表单状态作为重定向中查询参数的一部分传递)。

于 2020-06-03T10:14:41.887 回答