uawdijnntqw1x1x1
IP : 216.73.216.179
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
/
records
/
Nav.php
/
/
<?php namespace verbb\navigation\records; use craft\db\ActiveRecord; use craft\db\SoftDeleteTrait; use craft\records\Structure; use craft\records\FieldLayout; use yii\db\ActiveQueryInterface; class Nav extends ActiveRecord { // Traits // ========================================================================= use SoftDeleteTrait; // Public Methods // ========================================================================= public static function tableName(): string { return '{{%navigation_navs}}'; } public function getStructure(): ActiveQueryInterface { return $this->hasOne(Structure::class, ['id' => 'structureId']); } public function getNodes(): ActiveQueryInterface { return $this->hasMany(Node::class, ['navId' => 'id']); } public function getFieldLayout(): ActiveQueryInterface { return $this->hasOne(FieldLayout::class, ['id' => 'fieldLayoutId']); } public function getSiteSettings(): ActiveQueryInterface { return $this->hasMany(Nav_SiteSettings::class, ['navId' => 'id']); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/./verbb/navigation/src/records/Nav.php