You are here

function quickedit_editor_get in Quick Edit 7

Helper to get a single editor info array.

Parameters

$editor: Machine name of the editor we return the editor.

Return value

mixed False if the editor is not found. Info array for the editor.

File

./quickedit.module, line 650
Provides in-place content editing functionality for fields.

Code

function quickedit_editor_get($editor) {
  $list = quickedit_editor_list();
  return !empty($list[$editor]) ? $list[$editor] : FALSE;
}