uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
plugins
/
vmcalculation
/
avalara
/
classes
/
ATConfig.class.php
/
/
<?php if (!defined('_JEXEC')) die('Direct Access to ' . basename(__FILE__) . ' is not allowed.'); /** * ATConfig.class.php */ /** * Contains various service configuration parameters as class static variables. * * {@link AddressServiceSoap} and {@link TaxServiceSoap} read this file during initialization. * * @author Avalara * @copyright � 2004 - 2011 Avalara, Inc. All rights reserved. * @package Base */ class ATConfig { private static $Configurations = array(); private $_ivars; public function __construct($name, $values = null) { if($values) { ATConfig::$Configurations[$name] = $values; } $this->_ivars = ATConfig::$Configurations[$name]; } public function __get($n) { //if($n == '_ivars') { return parent::__get($n); } if(isset($this->_ivars[$n])) { return $this->_ivars[$n]; } else if(isset(ATConfig::$Configurations['Default'][$n])) // read missing values from default { return ATConfig::$Configurations['Default'][$n]; } else { return null; } } } /* Specify configurations by name here. You can specify as many as you like */ $__wsdldir = dirname(__FILE__)."/wsdl"; /* This is the default configuration - it is used if no other configuration is specified */ new ATConfig('Default', array( 'url' => 'no url specified', 'addressService' => '/Address/AddressSvc.asmx', 'taxService' => '/Tax/TaxSvc.asmx', 'batchService'=> '/Batch/BatchSvc.asmx', 'avacert2Service'=> '/AvaCert2/AvaCert2Svc.asmx', 'addressWSDL' => 'file://'.$__wsdldir.'/Address.wsdl', 'taxWSDL' => 'file://'.$__wsdldir.'/Tax.wsdl', 'batchWSDL' => 'file://'.$__wsdldir.'/BatchSvc.wsdl', 'avacert2WSDL' => 'file://'.$__wsdldir.'/AvaCert2Svc.wsdl', 'account' => '<your account number here>', 'license' => '<your license key here>', 'adapter' => 'avatax4php,14.2.0.0', 'client' => 'VirtueMart3.0.10', 'name' => '13.7.0.0', 'trace' => true) // change to false for production ); ?>
/home/digilove/public_html/plugins/vmcalculation/avalara/classes/ATConfig.class.php