You are here

function content_type_groups_group_load in Content type groups 7.2

Same name and namespace in other branches
  1. 7 content_type_groups.admin.inc \content_type_groups_group_load()

Load a single record.

Parameters

$id: The id representing the record we want to load.

2 string references to 'content_type_groups_group_load'
content_type_groups_entity_info in ./content_type_groups.module
Implements hook_entity_info().
content_type_groups_group_form in ./content_type_groups.admin.inc
Form builder; Returns form for adding a new content type group.

File

./content_type_groups.module, line 121
Module file for the Content type groups module.

Code

function content_type_groups_group_load($id, $reset = FALSE) {
  return array_shift(content_type_groups_group_load_multiple(array(
    $id,
  ), array(), $reset));
}