Tôi sẽ xây dựng một màn hình xác nhận. Vì vậy, tôi đã khởi tạo đường dẫn theo đúng hook_menu
như vậy nhưng vì một số lý do, đối số $node
không được gửi với hàm ... Tôi đang làm gì sai?
Đây là của tôi hook_menu
:
$items['node/%/revisions/%/offline'] = array(
'title' => 'Offline,
'description' => 'Confirm the action "Fiche offline".',
'page callback' => 'drupal_get_form',
'page arguments' => array('_mymodule_confirm_offline'),
'type' => MENU_LOCAL_TASK,
'weight' => -4,
);
return $items;
Và đây là chức năng của tôi:
function _redactie_omgeving_confirm_offline($form, $form_state, $node) {
$question = t('Take fiche offline. ');
return confirm_form($form,
$question,
'node/7', t('You\'re about to depublish this fiche. <br />Are you sure you want to depublish this fiche?'),
t('Yes'), t('Cancel'));
}
Nhưng $node
chức năng có thể thay đổi trong chức năng của tôi vẫn trống ... Tôi phải làm gì để điền vào biến này?