You are here

function table_trash_decoration_load in Table Trash 7

Load a single decoration.

1 string reference to 'table_trash_decoration_load'
table_trash_admin_update_config_form in ./table_trash.admin.inc
Menu callback for the update path.

File

./table_trash.admin.inc, line 233
table_trash.admin.inc

Code

function table_trash_decoration_load($oid) {
  ctools_include('export');
  $result = ctools_export_load_object('table_trash', 'names', array(
    $oid,
  ));
  if (isset($result[$oid])) {
    return $result[$oid];
  }
}