You are here

function _boxes_admin_default_plugin in Boxes 7.2

The Default plugin settings

2 calls to _boxes_admin_default_plugin()
boxes_admin_ui_boxes_types in boxes_admin_ui/boxes_admin_ui.module
Implements hook_boxes_types().
boxes_admin_ui_type_form in boxes_admin_ui/boxes_admin_ui.admin.inc
Generates the bean type editing form.

File

boxes_admin_ui/boxes_admin_ui.module, line 135
Boxes Admin UI

Code

function _boxes_admin_default_plugin() {
  return array(
    'label' => '',
    'description' => '',
    'type' => '',
    'editable' => TRUE,
    'handler' => array(
      'info_file' => TRUE,
      'class' => 'BoxCustom',
      'parent' => 'box',
      'file' => 'custom.inc',
      'path' => drupal_get_path('module', 'boxes_admin_ui') . '/plugins',
    ),
  );
}