PluginProbe
Yatra – Travel Booking & Tour Operator Software / 2.1.16
Yatra – Travel Booking & Tour Operator Software v2.1.16
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 / core / Tour / ExternalTour.php

ExternalTour.php in Yatra – Travel Booking & Tour Operator Software 2.1.16, at core/Tour/ExternalTour.php

26 lines 410 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Yatra\Core\Tour;
4
5 use Yatra\Core\Abstracts\TourParent;
6
7 class ExternalTour extends TourParent
8 {
9 public function __construct($tour = 0)
10 {
11 parent::__construct($tour);
12 }
13
14 public function get_external_url()
15 {
16 return $this->get_prop('external_url');
17
18 }
19
20 public function get_book_now_text()
21 {
22 return $this->get_prop('book_now_text');
23 }
24
25
26 }