Skip to content

Instantly share code, notes, and snippets.

@drupalista-br
Last active December 11, 2015 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drupalista-br/4640494 to your computer and use it in GitHub Desktop.
Save drupalista-br/4640494 to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* AJAX Miscellaneous Topics.
*/
/**
* Demonstrates a clickable AJAX-enabled link using the 'use-ajax' class.
*
* Because of the 'use-ajax' class applied here, the link submission is done
* without a page refresh.
*
* When using the AJAX framework outside the context of a form or a renderable
* array of type 'link', you have to include ajax.js explicitly.
*
* @return
*
* @ingroup ajax_example
*/
function ajax_example_render_link() {
// drupal_add_library is invoked automatically when a form element has the
// '#ajax' property, but since we are not rendering a form here, we have to
// do it ourselves.
drupal_add_library('system', 'drupal.ajax');
$explanation = "
The link below has the <i>use-ajax</i> class applied to it, so if
javascript is enabled, ajax.js will try to submit it via an AJAX call instead
of a normal page load. The URL also contains the '/nojs/' magic string, which
is stripped if javascript is enabled, allowing the server code to tell by the
URL whether JS was enabled or not, letting it do different things based on that.";
$output = "<div>" . t($explanation) . "</div>";
// The use-ajax class is special, so that the link will call without causing
// a page reload. Note the /nojs portion of the path - if javascript is
// enabled, this part will be stripped from the path before it is called.
$link = l(t('Click here'), 'ajax_link_callback/nojs/', array('attributes' => array('class' => array('use-ajax'))));
$output .= "<div id='myDiv'></div><div>$link</div>";
return $output;
}
/**
* Demonstrates a clickable AJAX-enabled link using a renderable array with the
* #ajax property.
*
* A link that is constructed as a renderable array can have the #ajax property,
* which ensures that the link submission is done without a page refresh. The
* href of the link is used as the ajax callback, but it degrades gracefully
* without JavaScript because if the 'nojs' portion of the href is not stripped
* out by js, the callback will return content as required for a full page
* reload.
*
* The necessary JavaScript file, ajax.js, will be included on the page
* automatically.
*
* @return
*/
function ajax_example_render_link_ra() {
$explanation = "
The link below has been rendered as an element with the #ajax property, so if
javascript is enabled, ajax.js will try to submit it via an AJAX call instead
of a normal page load. The URL also contains the '/nojs/' magic string, which
is stripped if javascript is enabled, allowing the server code to tell by the
URL whether JS was enabled or not, letting it do different things based on that.";
$build['my_div'] = array(
'#markup' => $explanation . '<div id="myDiv"></div>',
);
$build['ajax_link'] = array(
'#type' => 'link',
'#title' => t('Click here'),
// Note the /nojs portion of the href - if javascript is enabled,
// this part will be stripped from the path before it is called.
'#href' => 'ajax_link_callback/nojs/',
'#id' => 'ajax_link',
'#ajax' => array(
'wrapper' => 'myDiv',
'method' => 'html',
),
);
return $build;
}
/**
* Callback for link example.
*
* Takes different logic paths based on whether Javascript was enabled.
* If $type == 'ajax', it tells this function that ajax.js has rewritten
* the URL and thus we are doing an AJAX and can return an array of commands.
*
* @param $type
* Either 'ajax' or 'nojs. Type is simply the normal URL argument to this URL.
*
* @return
* If $type == 'ajax', returns an array of AJAX Commands.
* Otherwise, just returns the content, which will end up being a page.
*
* @ingroup ajax_example
*/
function ajax_link_response($type = 'ajax') {
if ($type == 'ajax') {
$view = views_get_view('view-name');
$view->set_display('display-name');
$view->exposed_input['myfilter'] = 'filter-value';
$view->pre_execute();
// $output = t("This is some content delivered via AJAX");
$output = $view->render();
$commands = array();
// See ajax_example_advanced.inc for more details on the available commands
// and how to use them.
$commands[] = ajax_command_append('#myDiv', $output);
$page = array('#type' => 'ajax', '#commands' => $commands);
ajax_deliver($page);
}
else {
$output = t("This is some content delivered via a page load.");
return $output;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment