| 1 filter_formtest.module | _filter_formtest_editor_image_form_submit($form, &$form_state) |
Construct and display a string for assertion in test.
See also
FilterEditorImageDialogTestCase
File
- core/
modules/ filter/ tests/ filter_formtest.module, line 40 - Helper module for FilterEditorLinkValidateTestCase.
Code
function _filter_formtest_editor_image_form_submit($form, &$form_state) {
$result = '';
if (isset($form_state['values'])) {
$attributes = $form_state['values']['attributes'];
$result .= 'width:' . $attributes['width'];
$result .= '|height:' . $attributes['height'];
$result .= '|src:' . $attributes['src'];
$result .= '|fid:' . $attributes['data-file-id'];
backdrop_set_message($result, 'info');
}
}