PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.10
Yatra – Travel Booking & Tour Operator Software v3.0.10
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / app / Core / Assets / TripAssetManager.php

TripAssetManager.php in Yatra – Travel Booking & Tour Operator Software 3.0.10, at app/Core/Assets/TripAssetManager.php

34 lines 925 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Yatra\Core\Assets;
6
7 /**
8 * Trip Page Asset Manager
9 */
10 class TripAssetManager extends BaseAssetManager
11 {
12 public function __construct()
13 {
14 parent::__construct('trip');
15
16 // Video player and tour viewer modules are loaded in FrontendAssetsProvider
17
18 // Add main trip styles and scripts
19 $this->addStyle('yatra-trip-single');
20 $this->addScript('yatra-trip-single');
21
22 // Add trip data localization if available
23 if (isset($GLOBALS['trip'])) {
24 $this->addLocalization('yatra-trip-single', 'yatraTrip', [
25 'id' => $GLOBALS['trip']->id,
26 'title' => $GLOBALS['trip']->title,
27 'slug' => $GLOBALS['trip']->slug,
28 'price' => $GLOBALS['trip']->effective_price_min,
29 'currency' => $GLOBALS['trip']->currency,
30 ]);
31 }
32 }
33 }
34