You are here

function boxes_type_load in Boxes 7.2

Menu Argument Loader

1 call to boxes_type_load()
boxes_add in includes/boxes.pages.inc
Add box page callback
1 string reference to 'boxes_type_load'
boxes_admin_ui_type_form in boxes_admin_ui/boxes_admin_ui.admin.inc
Generates the bean type editing form.

File

./boxes.module, line 232

Code

function boxes_type_load($type) {
  return boxes_load_plugin_class(strtr($type, array(
    '-' => '_',
  )));
}