You are here

function bueditor_eop_export in BUEditor 6.2

Same name and namespace in other branches
  1. 7 admin/bueditor.admin.inc \bueditor_eop_export()

Editor export operation. Export the editor as text.

1 call to bueditor_eop_export()
bueditor_eop in admin/bueditor.admin.inc
Prepare and execute if there is any valid editor operation that doesn't require form submission.

File

admin/bueditor.admin.inc, line 746

Code

function bueditor_eop_export($editor) {
  bueditor_export_text(bueditor_varexport_editor($editor), str_replace(' ', '.', $editor->name) . '.bueditor.txt');
}