Advertisement
pushrbx

Untitled

Feb 17th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. $subQuery = $db->buildStatement(
  2.         array(
  3.                 'fields'     => array('"ParentNode"."id"', '"ParentNode"."type"'),
  4.                 'table'      => $db->fullTableName($this->Node),
  5.                 'alias'      => 'ParentNode',
  6.                 'limit'      => null,
  7.                 'offset'     => null,
  8.                 'joins'      => array(),
  9.                 'conditions' => $conditionsSubQuery,
  10.                 'order'      => null,
  11.                 'group'      => null
  12.         ),
  13.         $this->Node
  14. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement