You are here

function lingotek_empty_node in Lingotek Translation 7.4

Same name and namespace in other branches
  1. 7.2 lingotek.util.inc \lingotek_empty_node()
  2. 7.3 lingotek.util.inc \lingotek_empty_node()

File

./lingotek.util.inc, line 182
Utility functions.

Code

function lingotek_empty_node() {
  $node = new stdClass();
  $node->nid = -2;
  $node->language = LANGUAGE_NONE;
  return $node;
}