You are here

function bueditor_import_all in BUEditor 6.2

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

Import all from 'bueditor/import' directory.

1 call to bueditor_import_all()
bueditor_enable in ./bueditor.install
Implementation of hook_enable()

File

admin/bueditor.admin.inc, line 962

Code

function bueditor_import_all() {
  foreach (bueditor_importable_names() as $name) {
    bueditor_import_by_name($name);
  }
}