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