Parametreleri form oluşturucuya nasıl iletirim?


15

Ben module_name.routing.yml aşağıdaki yolları var.

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'

Bu, modül_adı / src / Form / DeleteUserGroup.php içindeki koddur.

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";
  }

}

Aşağıdaki hatayı alıyorum:

DeleteUserGroup :: buildForm (), Drupal \ Core \ Form \ FormInterface :: buildForm (dizi $ formu, Drupal \ Core \ Form \ FormStateInterface $ form_state) ile uyumlu olmalıdır

Neden?


Herkes WebForm modülünü kullanırken bunun nasıl denk olduğunu açıklayabilir mi? Ben modülü kullanarak inşa formu için özel olarak hiçbir modül var, bu yüzden routing.yml dosya içinde '_form' noktası ne olurdu?
John Cogan

Yanıtlar:


28

Parametrenin, routing.yml ve build yönteminde aynı ada sahip olması gerekir. Ve formlardaki parametreleri kullanırken, parametre listesinde boş bir değer ayarlamanız gerekir:

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

Kurtarılabilir ölümcül hata: db_query () öğesine iletilen Argüman 2, verilen dizgi türünde olmalıdır
Crazyrubixfan

arg1 işlevinde kullanmaya çalıştığımda
Crazyrubixfan

1
Tamam, o zaman bu sorunun formlardaki parametrelerle sorunu çözüldü. BuildForm () çağrısı başarılı oldu. Db_query () ile, rotadan string parametresini kabul etmeyen yeni bir sorunla karşılaşıyorsunuz.
4k4

Evet teşekkürler . Sorun db_query ile. Şimdi param alıyorum
Crazyrubixfan

11

Önce bir routing.yml dosyası oluşturun

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

Sonra /src/Form/ExampleForm.php klasör yapısı altında bir .php dosyası oluşturun. Daha sonra bir form oluşturun

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;
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.