You are here

function node_gallery_get_all_relationships in Node Gallery 6.3

Convenience wrapper for getting all relationships.

Parameters

$reset:

Return value

An associative array of relationship arrays.

6 calls to node_gallery_get_all_relationships()
node_gallery_form_views_ui_edit_view_form_alter in ./node_gallery.module
Implementation of hook_form_FORM_ID_alter().
node_gallery_get_types in ./node_gallery.inc
Returns a list of all possible content types of galleries, images, or both.
node_gallery_menu in ./node_gallery.module
Implements hook_menu().
node_gallery_relationship_list in ./node_gallery.admin.inc
Displays a list of all defined Gallery-to-Image relationships.
node_gallery_update_6302 in ./node_gallery.install
Set a default navigator sort view

... See full list

File

./node_gallery.inc, line 166
Shared functions for node_gallery

Code

function node_gallery_get_all_relationships($reset = FALSE) {
  return node_gallery_get_relationship(NULL, NULL, $reset);
}