| 6 modal.inc | ctools_modal_text_button($text, $dest, $alt, $class = '') |
| 7 modal.inc | ctools_modal_text_button($text, $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.
$text: The text that will be displayed as the link.
$dest: The destination of the link.
$alt: The alt text of the link.
$class: Any class to apply to the link. @todo this should be a options array.
<?php
function ctools_modal_text_button($text, $dest, $alt, $class = '') {
return ctools_ajax_text_button($text, $dest, $alt, $class, 'ctools-use-modal');
}
?>