PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.3
Yatra – Travel Booking & Tour Operator Software v3.0.3
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 2.0.11 All 82 releases
yatra / app / Services / SetupService.php

SetupService.php in Yatra – Travel Booking & Tour Operator Software 3.0.3, at app/Services/SetupService.php

35 lines 722 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Setup Service for Yatra Plugin
4 *
5 * Handles plugin activation and setup tasks
6 *
7 * @package Yatra\Services
8 */
9
10 namespace Yatra\Services;
11
12 class SetupService
13 {
14 /**
15 * Register activation hook
16 */
17 public static function registerActivationHook(): void
18 {
19 register_activation_hook(YATRA_PLUGIN_FILE, [self::class, 'activate']);
20 }
21
22 /**
23 * Plugin activation callback
24 */
25 public static function activate(): void
26 {
27 // Run centralized installer for default settings
28 InstallerService::install();
29
30 if (class_exists('Yatra\Services\SetupWizardService')) {
31 SetupWizardService::triggerWizardOnActivation();
32 }
33 }
34 }
35