| 1 | <?php |
||
| 10 | class RawNodeContext extends RawTqContext |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Retrieves node nid by node title and type. |
||
| 14 | * @param $title |
||
| 15 | * Node title to lookup, accepts exact match only. |
||
| 16 | * @param $type |
||
| 17 | * Node type machine name. |
||
| 18 | * @return int|null |
||
| 19 | * Returns node nid if found. |
||
| 20 | * @throws \Exception |
||
| 21 | */ |
||
| 22 | public function getNodeIdByTitle($title, $type) |
||
| 36 | } |
||
| 37 |