Sử dụng CTools có thể chèn một biểu mẫu vào một phương thức khi người dùng nhấp vào một liên kết.
Vui lòng kiểm tra hướng dẫn sau: Chèn một biểu mẫu vào một phương thức bật lên với CTools và Drupal 7 để đơn giản hóa quy trình này trong vài bước.
Về cơ bản, bạn cần xác định hook_menu()
cuộc gọi lại cho hình thức phương thức của mình:
$items['mymodule/%ctools_js'] = array(
'page callback' => 'mymodule_callback',
'page arguments' => array(1),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
sau đó tạo một trình tạo liên kết trả về mã HTML:
/**
* Helper function to make a link.
*/
function _mymodule_make_link($link_text = '') {
// Set a default value if no text in supplied.
if (empty($link_text)) {
$link_text = 'Magical Modal';
}
return '<div id="magical-modal-link">' . l($link_text, 'mymodule/nojs', array('attributes' => array('class' => 'ctools-use-modal'))) . '</div>';
}
vì vậy nó có thể được sử dụng trong cuộc gọi lại trang của bạn, vd:
/**
* An example page.
*/
function mymodule_page() {
// Load the modal library and add the modal javascript.
ctools_include('modal');
ctools_modal_add_js();
return _mymodule_make_link('Magical modal');
}
Khi người dùng nhấp vào liên kết, nó sẽ yêu cầu /mymodule/ajax
hoặc /mymodule/nojs
(trong trường hợp nojs
), do đó, hàm gọi lại sau đây sẽ tạo ra một phương thức:
/**
* Ajax menu callback.
*/
function mymodule_callback($ajax) {
if ($ajax) {
ctools_include('ajax');
ctools_include('modal');
$form_state = array(
'ajax' => TRUE,
'title' => t('MyModule Modal Form'),
);
// Use ctools to generate ajax instructions for the browser to create
// a form in a modal popup.
$output = ctools_modal_form_wrapper('mymodule_form', $form_state);
// If the form has been submitted, there may be additional instructions
// such as dismissing the modal popup.
if (!empty($form_state['ajax_commands'])) {
$output = $form_state['ajax_commands'];
}
// Return the ajax instructions to the browser via ajax_render().
print ajax_render($output);
drupal_exit();
}
else {
return drupal_get_form('mymodule_form');
}
}
Bây giờ bạn chỉ cần tạo một biểu mẫu và trình xử lý trình của nó như dưới đây:
/**
* Drupal form to be put in a modal.
*/
function mymodule_form($form, $form_state) {
$form = array();
$form['new_link_text'] = array(
'#type' => 'textfield',
'#title' => t('Link text'),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
);
return $form;
}
/**
* Drupal form submit handler.
*/
function mymodule_form_submit(&$form, &$form_state) {
// Generate the new link using the submitted text value.
$link = _mymodule_make_link($form_state['values']['new_link_text']);
// Tell the browser to close the modal.
$form_state['ajax_commands'][] = ctools_modal_command_dismiss();
// Tell the browser to replace the old link with the new one.
$form_state['ajax_commands'][] = ajax_command_replace('#magical-modal-link', $link);
}
Để kiểm tra điều đó, hãy đi tới: /mymodule/page
nơi bạn sẽ thấy liên kết 'Phương thức huyền diệu' sẽ hiển thị cho bạn hình thức phương thức sau khi nhấp vào.