양식 작성기에 매개 변수를 어떻게 전달합니까?


15

module_name.routing.yml에 다음 경로가 있습니다.

module_name.usergroup_delete:
  path: 'module_name/usergroup/delete/{arg1}'
  defaults:
    _form: '\Drupal\module_name\Form\DeleteUserGroup'
    _title: 'Delete User group'
  requirements:
    _permission: 'access admin menus'

이것은 module_name / src / Form / DeleteUserGroup.php의 코드입니다.

namespace Drupal\module_name\Form;

use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;

class DeleteUserGroup extends ConfigFormBase {

  public function getFormId() {
    return 'delete_user_group';
  }
/**
 * General form for switching all nodes from one user to another.
 */
  public function buildForm(array $form, FormStateInterface $form_state,$product_code) {
  $form['_product'] = array(
        '#type' => 'value',
        '#value' => $product_code,);
//get the user group and username to display the confirmation message 
$result = db_query('select field_p_group_name_value from {content_type_usergroup} ctu'       
        . ' where vid=%d',$product_code);      
    while ($row = $result->fetchObject()) {
      $user_group = $row->field_p_group_name_value;
    }

return confirm_form($form,t('Are you sure you want to delete "' .$user_group. '" User Group?'),
        isset($_GET['destination']) ? $_GET['destination'] : "function_name",t('This action cannot be undone.'),t('Delete'),t('Cancel'));

  }
/**
 * #submit callback for node_adoption_transfer_form().
 */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_values = $form_state->getValues();
  //if ($form_state['values']['confirm']) {
    $param = $form_state->getValue('_product');
    drupal_set_message(t('Group ' .$param.' will get deleted.'));               
    db_query('DELETE FROM {content_type_usergroup} WHERE vid = %d', $param);
    //delete the users of the usergroup too
    db_query('DELETE FROM {usergroup_user_map} WHERE group_id=%d', $param);
    drupal_set_message(t('usergroup has been deleted.'));
    drupal_goto('function_name');
  }

  protected function getEditableConfigNames() {
    return "delete_user_group";
  }

}

다음과 같은 오류가 발생합니다.

DeleteUserGroup :: buildForm ()은 Drupal \ Core \ Form \ FormInterface :: buildForm (배열 $ form, Drupal \ Core \ Form \ FormStateInterface $ form_state)과 호환되어야합니다.

왜?


WebForm 모듈을 사용할 때 이것이 어떻게 적용되는지 설명 할 수 있습니까? 모듈을 사용하여 작성한 양식에 대한 모듈이 없으므로 라우팅 .yml 파일에서 '_form'은 무엇입니까?
John Cogan

답변:


28

routing.yml 및 build 메소드에서 매개 변수의 이름이 동일해야합니다. 그리고 양식에서 매개 변수를 사용하는 경우 매개 변수 목록에서 null 값을 설정해야합니다.

public function buildForm(array $form, FormStateInterface $form_state, $arg1 = NULL) {

복구 가능한 치명적 오류 : db_query ()에 전달 된 인수 2는 다음과 같은 형식의 배열이어야합니다.
Crazyrubixfan

함수에서 arg1을 사용하려고 할 때
Crazyrubixfan

1
그러면 폼에 매개 변수가있는이 질문의 문제가 해결되었습니다. buildForm () 호출에 성공했습니다. 경로에서 문자열 매개 변수를 승인하지 않는 db_query ()에 새로운 문제점이 발생했습니다.
4k4

네 감사합니다. 문제는 db_query입니다. 지금 매개 변수를 받고
있어요

11

먼저 routing.yml 파일을 만듭니다

admin_notes.form:
  path: '/example_module/form/{arg}'
  defaults:
    _form: '\Drupal\example_module\Form\ExampleForm'
  requirements:
    _permission: 'access content'

그런 다음 폴더 구조 /src/Form/ExampleForm.php 아래에 .php 파일을 작성하고 양식을 빌드하십시오.

public function buildForm(array $form, FormStateInterface $form_state,$arg = NULL) {

             $form['example_note'] = array(
            '#type' => 'textarea',
            '#title' => t('Block contents'),
            '#description' => t('This text will appear in the example block.'),
            '#default_value' => $arg,
        );
       $form['actions'] = ['#type' => 'actions'];
        $form['actions']['delete'] = array(
            '#type' => 'submit',
            '#value' => $this->t('Delete'),
        );

return $form;
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.