उपयोगकर्ता द्वारा किसी लिंक पर क्लिक करने पर CTools का उपयोग करें जो एक मोडल में एक फॉर्म डाल सकता है।
कृपया निम्नलिखित ट्यूटोरियल देखें: CTools और Drupal 7 के साथ पॉप-अप मोडल में एक फॉर्म डालें, जो इस प्रक्रिया को कुछ चरणों में सरल करता है।
मूल रूप से आपको hook_menu()
अपने मोडल फॉर्म के लिए अपने कॉलबैक को परिभाषित करने की आवश्यकता है :
$items['mymodule/%ctools_js'] = array(
'page callback' => 'mymodule_callback',
'page arguments' => array(1),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
फिर एक लिंक जनरेटर बनाएँ जो 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>';
}
इसलिए इसका उपयोग आपके पेज कॉलबैक में किया जा सकता है, जैसे:
/**
* 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');
}
जब उपयोगकर्ता लिंक पर क्लिक करता है, तो यह /mymodule/ajax
या तो /mymodule/nojs
( या मामले में nojs
) अनुरोध करता है , इसलिए निम्नलिखित कॉलबैक एक मोडल बनाता है :
/**
* 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');
}
}
अब आपको बस एक फॉर्म बनाने की जरूरत है और उसके नीचे दिए गए हैंडलर को प्रस्तुत करें:
/**
* 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);
}
यह जांचने के लिए: /mymodule/page
यहां जाएं: जहां आपको 'जादुई मोडल' लिंक दिखाई दे, जिस पर क्लिक करते ही आपको मोडल फॉर्म दिखाई दे।