在 Drupal 8 中创建修改页面
Posted
技术标签:
【中文标题】在 Drupal 8 中创建修改页面【英文标题】:Create Modify Page in Drupal 8 【发布时间】:2017-03-15 11:21:28 【问题描述】:我有一个关于使用Drupal 8
添加inline troc
管理的项目。
当我想修改一些数据时,我会遇到一些问题。
我想转义默认页面,因为我无法到达此页面中的列表选择。
有没有办法摆脱默认模式?
【问题讨论】:
欢迎来到 SO。请提供有关您面临的问题的更多信息,例如堆栈跟踪/日志以及您迄今为止尝试过的内容。 我创建了一个名为“ajout-troc”的自定义模块,它创建了一个名为“troc”的新节点,作为控制器,我创建了这个 php 文件,它运行良好(我不知道如何上传它)。现在我想让用户编辑已经创建的节点,但我不知道该怎么做。我有一个由 drupal 提供的编辑页面,但我想自定义它。 【参考方案1】:这是我的插入代码:
namespace Drupal\ajout_troc\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Component\Utility\UrlHelper;
use Drupal\node\Entity\Node;
use \Drupal\file\Entity\File;
class ContributeForm extends FormBase
public function getFormId()
return 'ajout_troc_contribute_form';
public function extractRubriqueOptions()
$terms = \Drupal::service('entity_type.manager')
->getStorage("taxonomy_term")
->loadTree('rubrique', $parent = 0, $max_depth = NULL, $load_entities = FALSE);
$options = array();
foreach($terms as $term)
$options[$term->tid] = $term->name;
return $options;
public function buildForm(array $form, FormStateInterface $form_state)
$form['rubrique'] = array(
'#type' => 'select',
'#title' => t('Rubrique'),
'#options' => $this->extractRubriqueOptions(),
'#required' => TRUE,
);
$form['titre'] = array(
'#type' => 'textfield',
'#title' => t('Titre du bien'),
'#required' => TRUE,
);
$form['description'] = array(
'#type' => 'textarea',
'#title' => t('Description détaillée'),
'#required' => TRUE,
);
$form['telephone'] = array(
'#type' => 'tel',
'#title' => t('Téléphone'),
'#required' => TRUE,
);
$form['valeur'] = array(
'#type' => 'number',
'#title' => t('Valeur à la vente'),
);
$form['annee'] = array(
'#type' => 'number',
'#title' => t('Année de fabrication'),
);
$form['photo'] = array(
'#type' => 'managed_file',
'#title' => t('Photo'),
'#upload_location' => 'public://images/',
'#required' => TRUE,
);
$form['label'] = array(
'#type' => 'label',
'#title' => t('Ce que vous souhaitez en échange'),
);
$form['echange'] = array(
'#type' => 'select',
'#title' => t('Sélectionnez les rubriques qui vous intéressent : '),
'#multiple' => true,
'#options' => $this->extractRubriqueOptions(),
'#required' => TRUE,
);
$form['descriptionechange'] = array(
'#type' => 'textarea',
'#title' => t('Décrivez ici ce que vous souhaitez en échange :'),
);
$form['actions'] = array('#type' => 'actions');
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Enregistrer mon annonce'),
'#attributes' => array('class' => array('button', 'button--primary', 'js-form-submit', 'form-submit'))
);
return $form;
public function validateForm(array &$form, FormStateInterface $form_state)
if (strlen($form_state->getValue('telephone'))!=8)
$form_state->setErrorByName('telephone', $this->t("Le numéro de téléphone doit contenir 8 chiffres."));
public function submitForm(array &$form, FormStateInterface $form_state)
$user = \Drupal::currentUser();
$fields = array(
'type' => 'troc',
'title' => 'Annonce',
'status' => 0,
'created' => REQUEST_TIME,
'changed' => REQUEST_TIME,
'uid' => $user->id(),
'field_rubrique' => array(
'target_id' => $form_state->getValue('rubrique')
),
'field_titre' => array(
'value' => $form_state->getValue('titre')
),
'field_description' => array(
'value' => $form_state->getValue('description')
),
'field_telephone' => array(
'value' => $form_state->getValue('telephone')
),
'field_valeur' => array(
'value' => $form_state->getValue('valeur')
),
'field_annee' => array(
'value' => $form_state->getValue('annee')
),
'field_descriptionechange' => array(
'value' => $form_state->getValue('descriptionechange')
),
);
$echanges = $form_state->getValue('echange');
foreach ($echanges as $echange)
$fields['field_echange'][] =array(
'target_id' => $echange
);
$photoFid = $form_state->getValue('photo');
if(!empty($photoFid[0]))
$photoFid = $photoFid[0];
$photo = \Drupal\file\Entity\File::load($photoFid);
$photo->setPermanent();
$photo->save();
$fields['field_photo'] = array(
'target_id' => $photoFid,
);
$node = Node::create($fields);
$node->save();
更多信息,这里是界面截图。我希望"Rubrique"
字段成为列表选择,因为我有一些选项,我希望user
可以随意选择他的最佳选项。下面的链接是截图。
Image link
【讨论】:
你为什么要把问题和代码分开?研究如何在 *** 中写出更好的问题。 对不起,这是我第一次使用***。 我编辑了你问题的代码,所以你现在可以删除这个答案。以上是关于在 Drupal 8 中创建修改页面的主要内容,如果未能解决你的问题,请参考以下文章