uawdijnntqw1x1x1
IP : 216.73.216.8
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
verbb
/
navigation
/
src
/
base
/
..
/
records
/
Node.php
/
/
<?php namespace verbb\navigation\records; use craft\db\ActiveRecord; use craft\records\Element; use yii\db\ActiveQueryInterface; class Node extends ActiveRecord { // Public Methods // ========================================================================= public static function tableName(): string { return '{{%navigation_nodes}}'; } public function getElement(): ActiveQueryInterface { return $this->hasOne(Element::class, ['id' => 'id']); } public function getNav(): ActiveQueryInterface { return $this->hasOne(Nav::class, ['id' => 'navId']); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/verbb/navigation/src/base/../records/Node.php