मेरे पास mod_name.rout.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'
यह mod_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 (सरणी $ फ़ॉर्म, Drupal \ Core \ Form \ FormStateInterface $ form_state) के साथ संगत होना चाहिए
क्यों?
क्या कोई समझा सकता है कि WebForm मॉड्यूल का उपयोग करते समय यह कैसे समान है? मेरे पास उस मॉड्यूल के लिए विशेष रूप से कोई मॉड्यूल नहीं है जिसे मैंने मॉड्यूल का उपयोग करके बनाया है, इसलिए रूटिंग के भीतर '_form' बिंदु क्या होगा। हाइपर फ़ाइल?
—
जॉन कोगन