You are here

function bueditor_importable_names in BUEditor 6.2

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

Return the list of importable editor names.

2 calls to bueditor_importable_names()
bueditor_import_all in admin/bueditor.admin.inc
Import all from 'bueditor/import' directory.
bueditor_set_quick_import in admin/bueditor.admin.inc
Allow quick import of predefined editors by ajax.

File

admin/bueditor.admin.inc, line 939

Code

function bueditor_importable_names() {
  return array(
    'default',
    'bbcode',
    'commenter',
    'lab',
  );
}