OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
DynamicLink
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:39 AM
rwxr-xr-x
📁
AnalyticsInfo
-
08/12/2024 10:36:26 AM
rwxr-xr-x
📄
AnalyticsInfo.php
1.59 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
AndroidInfo.php
2.14 KB
08/12/2024 10:35:37 AM
rw-r--r--
📁
CreateDynamicLink
-
08/12/2024 10:36:26 AM
rwxr-xr-x
📄
CreateDynamicLink.php
4.42 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
DynamicLinkStatistics.php
1.06 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
EventStatistics.php
3.22 KB
08/12/2024 10:35:37 AM
rw-r--r--
📁
GetStatisticsForDynamicLink
-
08/12/2024 10:36:26 AM
rwxr-xr-x
📄
GetStatisticsForDynamicLink.php
1.07 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
IOSInfo.php
3.04 KB
08/12/2024 10:35:38 AM
rw-r--r--
📄
NavigationInfo.php
1.75 KB
08/12/2024 10:35:38 AM
rw-r--r--
📁
ShortenLongDynamicLink
-
08/12/2024 10:36:26 AM
rwxr-xr-x
📄
ShortenLongDynamicLink.php
1.71 KB
08/12/2024 10:35:38 AM
rw-r--r--
📄
SocialMetaTagInfo.php
1.51 KB
08/12/2024 10:35:38 AM
rw-r--r--
Editing: NavigationInfo.php
Close
<?php declare(strict_types=1); namespace Kreait\Firebase\DynamicLink; use JsonSerializable; final class NavigationInfo implements JsonSerializable { /** @var array<string, mixed> */ private array $data = []; private function __construct() { } /** * @param array<string, mixed> $data */ public static function fromArray(array $data): self { $info = new self(); $info->data = $data; return $info; } public static function new(): self { return new self(); } /** * If set, skip the app preview page when the Dynamic Link is opened, and instead redirect to the app * or store. The app preview page (enabled by default) can more reliably send users to the most appropriate * destination when they open Dynamic Links in apps; however, if you expect a Dynamic Link to be opened * only in apps that can open Dynamic Links reliably without this page, you can disable it with this * parameter. Note: the app preview page is only shown on iOS currently, but may eventually be * shown on Android. This parameter will affect the behavior of the Dynamic Link on both * platforms. */ public function withForcedRedirect(): self { $info = clone $this; $info->data['enableForcedRedirect'] = true; return $info; } /** * @see withForcedRedirect() */ public function withoutForcedRedirect(): self { $info = clone $this; unset($info->data['enableForcedRedirect']); return $info; } /** * @return array<string, mixed> */ public function jsonSerialize(): array { return $this->data; } }