function textimage_js in Textimage 6.2
Same name and namespace in other branches
- 5.2 textimage.module \textimage_js()
Textimage AHAH functionality
1 string reference to 'textimage_js'
- textimage_menu in ./
textimage.module - Implementation of hook_menu().
File
- ./
textimage.module, line 976
Code
function textimage_js() {
$output = '';
switch (arg(2)) {
case 'preview':
textimage_js_preview($output);
break;
case 'background':
textimage_js_background($output);
break;
}
print drupal_json($output);
exit;
}