| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 | <?php// Set this so we can tell that the file has been included at some point.define('CTOOLS_AJAX_INCLUDED', 1);/** * @file * Extend core AJAX with some of our own stuff. *//** * Render an image as a button link. This will automatically apply an AJAX class * to the link and add the appropriate javascript to make this happen. * * @param $image *   The path to an image to use that will be sent to theme('image') for rendering. * @param $dest *   The destination of the link. * @param $alt *   The alt text of the link. * @param $class *   Any class to apply to the link. @todo this should be a options array. */function ctools_ajax_image_button($image, $dest, $alt, $class = '') {  return ctools_ajax_text_button(theme('image', array('path' => $image)), $dest, $alt, $class);}/** * Render text as a link. This will automatically apply an AJAX class * to the link and add the appropriate javascript to make this happen. * * Note: 'html' => true so be sure any text is vetted! Chances are these kinds of buttons will * not use user input so this is a very minor concern. * * @param $text *   The text that will be displayed as the link. * @param $dest *   The destination of the link. * @param $alt *   The alt text of the link. * @param $class *   Any class to apply to the link. @todo this should be a options array. * @param $type *   A type to use, in case a different behavior should be attached. Defaults *   to ctools-use-ajax. */function ctools_ajax_text_button($text, $dest, $alt, $class = '', $type = 'use-ajax') {  drupal_add_library('system', 'drupal.ajax');  return l($text, $dest, array('html' => TRUE, 'attributes' => array('class' => array($type, $class), 'title' => $alt)));}/** * Render an icon and related text as a link. This will automatically apply an AJAX class * to the link and add the appropriate javascript to make this happen. * * Note: 'html' => true so be sure any text is vetted! Chances are these kinds of buttons will * not use user input so this is a very minor concern. * * @param $text *   The text that will be displayed as the link. * @param $image *   The icon image to include in the link. * @param $dest *   The destination of the link. * @param $alt *   The title text of the link. * @param $class *   Any class to apply to the link. @todo this should be a options array. * @param $type *   A type to use, in case a different behavior should be attached. Defaults *   to ctools-use-ajax. */function ctools_ajax_icon_text_button($text, $image, $dest, $alt, $class = '', $type = 'use-ajax') {  drupal_add_library('system', 'drupal.ajax');  $rendered_image = theme('image', array('path' => $image));  $link_content = $rendered_image . "<span>" . $text . "</span>";  return l($link_content, $dest, array('html' => TRUE, 'attributes' => array('class' => array($type, $class), 'title' => $alt)));}/** * Set a single property to a value, on all matched elements. * * @param $selector *   The CSS selector. This can be any selector jquery uses in $(). * @param $name *   The name or key: of the data attached to this selector. * @param $value *  The value of the data. */function ctools_ajax_command_attr($selector, $name, $value) {  ctools_add_js('ajax-responder');  return array(     'command' => 'attr',     'selector' => $selector,     'name' => $name,     'value' => $value,   ); }/** * Force a client-side redirect. * * @param $url *   The url to be redirected to. This can be an absolute URL or a *   Drupal path. * @param $delay *   A delay before applying the redirection, in milliseconds. * @param $options *   An array of options to pass to the url() function. */function ctools_ajax_command_redirect($url, $delay = 0, $options = array()) {  ctools_add_js('ajax-responder');  return array(    'command' => 'redirect',    'url' => url($url, $options),    'delay' => $delay,  );}/** * Force a reload of the current page. */function ctools_ajax_command_reload() {  ctools_add_js('ajax-responder');  return array(    'command' => 'reload',  );}/** * Submit a form. * * This is useful for submitting a parent form after a child form has finished * processing in a modal overlay. * * @param $selector *   The CSS selector to identify the form for submission. This can be any *   selector jquery uses in $(). */function ctools_ajax_command_submit($selector) {  ctools_add_js('ajax-responder');  return array(    'command' => 'submit',    'selector' => $selector,  );}/** * Send an error response back via AJAX and immediately exit. */function ctools_ajax_render_error($error = '') {  $commands = array();  $commands[] = ajax_command_alert($error);  print ajax_render($commands);  exit;}
 |