You are here

function media_gallery_mg_node_load in Media Gallery 7

Same name and namespace in other branches
  1. 7.2 media_gallery.module \media_gallery_mg_node_load()

Load a node object from the database.

Parameters

$nid: The node ID.

$nid2: The same as $nid. Unused.

Return value

A fully-populated node object, or FALSE if the node is not found.

See also

node_load()

media_gallery_menu()

File

./media_gallery.module, line 154

Code

function media_gallery_mg_node_load($nid, $nid2 = NULL) {
  return node_load($nid);
}