blob: b22a8b1402963781becdad7a093f28e80072863e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
/**
* @file
* Common pages for the Media module.
*/
/**
* CTools modal callback for editing a file.
*/
function media_file_edit_modal($form, &$form_state, $file, $js) {
ctools_include('modal');
ctools_include('ajax');
$form_state['ajax'] = $js;
form_load_include($form_state, 'inc', 'file_entity', 'file_entity.pages');
$output = ctools_modal_form_wrapper('file_entity_edit', $form_state);
if ($js) {
$commands = $output;
if ($form_state['executed']) {
$commands = array(ctools_modal_command_dismiss(t('File saved')));
}
print ajax_render($commands);
exit();
}
// Otherwise, just return the output.
return $output;
}
|