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
/
NodeType.php
/
/
<?php namespace verbb\navigation\base; use verbb\navigation\elements\Node; use Craft; use craft\base\Component; abstract class NodeType extends Component implements NodeTypeInterface { // Static Methods // ========================================================================= public static function displayName(): string { return Craft::t('navigation', 'Node Type'); } public static function hasTitle(): bool { return true; } public static function hasUrl(): bool { return true; } public static function hasNewWindow(): bool { return false; } public static function getColor(): string { return '#888888'; } // Properties // ========================================================================= public ?Node $node = null; // Public Methods // ========================================================================= public function getModalHtml(): ?string { return null; } public function getSettingsHtml(): ?string { return null; } public function getUrl(): ?string { return null; } public function getDefaultTitle(): string { return static::displayName(); } public function beforeSaveNode(bool $isNew): bool { return true; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/verbb/./navigation/./src/base/NodeType.php