You are here

function bueditor_plus_menu_alter in BUEditor Plus 7.2

Same name and namespace in other branches
  1. 7 bueditor_plus.module \bueditor_plus_menu_alter()

Implements hook_menu_alter().

File

./bueditor_plus.module, line 42
Overrides default BUEditor textarea settling and implements controls based upon text formats.

Code

function bueditor_plus_menu_alter(&$items) {

  // Override the original bueditor admin screen with bueditor_plus'
  // admin screen.
  $items['admin/config/content/bueditor']['file'] = 'bueditor_plus.admin.inc';
  $items['admin/config/content/bueditor']['module'] = 'bueditor_plus';
  $items['admin/config/content/bueditor']['page callback'] = 'bueditor_plus_admin';
}