function _popup_text in Popup 8
Same name and namespace in other branches
- 7 includes/popup.api.inc \_popup_text()
- 7.x includes/popup.api.inc \_popup_text()
- 6.x includes/popup.api.inc \_popup_text()
File
- includes/
popup.api.inc, line 275
Code
function _popup_text($attributes, $return = FALSE) {
$title = $attributes['title'] ? $attributes['title'] : 'Text';
if ($return == 'title') {
return $title;
}
$body = $attributes['text'];
if ($return == 'body') {
return $body;
}
return popup_element($title, $body, $attributes);
}