You are here

function _book_uuid_node_features_pending in UUID Features Integration 7

Any pages with no parent page are put here to be processed later.

2 calls to _book_uuid_node_features_pending()
book_uuid_entity_features_rebuild_complete in includes/modules/book.inc
Implements hook_uuid_entity_features_rebuild_complete().
book_uuid_node_features_rebuild_alter in includes/modules/book.inc
Implements hook_uuid_node_features_rebuild_alter().

File

includes/modules/book.inc, line 137
uuid_node hooks on behalf of the book module.

Code

function _book_uuid_node_features_pending($node = NULL) {
  static $pending = array();
  if (!is_null($node)) {
    $pending[$node->uuid] = $node->book;
  }
  else {
    return $pending;
  }
}