function pasteformat_cleanup in Paste Format (filter, clean-up pasted text) 6
Same name and namespace in other branches
- 7 pasteformat.module \pasteformat_cleanup()
1 string reference to 'pasteformat_cleanup'
- pasteformat_menu in ./
pasteformat.module - Implements hook_menu().
File
- ./
pasteformat.module, line 35
Code
function pasteformat_cleanup() {
$output = array(
'text' => check_markup($_POST['html'], variable_get('pasteformat_cleanup_format', FILTER_FORMAT_DEFAULT), FALSE),
//'text' => $_POST['html'],
'alert' => variable_get('pasteformat_message_success', '') ? variable_get('pasteformat_message_success', '') : '',
);
drupal_json($output);
exit;
}