"Switch EPP", "description" => "In this addon you can manage the poll and confirmation messege of Switch EPP registrar", "version" => "3.0.5", "author" => 'WHMCSGLOBALSERVICES', "language" => "english" ); return $configarray; } function wgs_switchepp_activate() { # Return Result return array('status' => 'success', 'description' => 'Addons Image'); } function wgs_switchepp_deactivate($vars) { return array('status' => 'success', 'description' => 'Deactivated successfully.'); } function wgs_switchepp_output($vars) { $modulelink = $vars['modulelink']; $LANG = $vars['_lang']; $SWITCHEPP = new SWITCHEPP(); if (isset($_REQUEST["action"])) { if (file_exists(__DIR__ . '/includes/' . $_REQUEST["action"] . '.php')) { require_once __DIR__ . '/includes/' . $_REQUEST["action"] . '.php'; } } else { if (file_exists(__DIR__ . '/includes/' . 'homepage.php')) { require_once __DIR__ . '/includes/' . 'homepage.php'; } } } ?>