You are here

function node_gallery_api_get_all_relationship_types in Node Gallery 7

Convenience wrapper for getting all relationships.

Return value

array An associative array of relationship arrays.

3 calls to node_gallery_api_get_all_relationship_types()
node_gallery_api_get_types in ./node_gallery_api.inc
Returns a list of all possible content types of galleries, images, or both.
node_gallery_api_relationship_type_list in ./node_gallery_api.admin.inc
Displays a list of all defined Gallery-to-Image relationships.
node_gallery_api_update_7000 in ./node_gallery_api.install
Setup admin thumbnail view modes.

File

./node_gallery_api.inc, line 52
Node Gallery API function

Code

function node_gallery_api_get_all_relationship_types() {
  return node_gallery_api_get_relationship_type(NULL, NULL);
}