diff --git a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php index fe39dc59c..5266a8cce 100644 --- a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php +++ b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php @@ -41,12 +41,6 @@ return [ 'default_value' => 6, ], ], - 'tcmb_exchange_url' => [ - 'type' => 'anomaly.field_type.url', - 'config' => [ - 'default_value' => 'http://www.tcmb.gov.tr/kurlar', - ], - ], 'default_published_time' => [ 'type' => 'anomaly.field_type.integer', 'bind' => 'adv.default_published_time', diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php index 07d95f740..8216c1127 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php @@ -125,9 +125,6 @@ return [ 'show_lang_url' => [ 'name' => 'Show Lang Parameter For URL', ], - 'tcmb_exchange_url' => [ - 'name' => 'TCMB Exchange URL', - ], 'popular_ads_limit' => [ 'name' => 'Popular Ads Limit', ], diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php index 9e3c9d652..8e0f188cd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -125,15 +125,11 @@ return [ 'show_lang_url' => [ 'name' => 'URL için Dil Parametresini Göster', ], - 'tcmb_exchange_url' => [ - 'name' => 'TCMB Exchange URL\'si', - ], 'popular_ads_limit' => [ 'name' => 'Popüler İlan Limiti', ], //Image - 'image_resize_backend' => [ 'name' => 'Görüntüyü Yeniden Boyutlandır Arka Uç', ], diff --git a/addons/default/visiosoft/advs-module/src/Adv/Command/getExchange.php b/addons/default/visiosoft/advs-module/src/Adv/Command/getExchange.php deleted file mode 100644 index 2dd6bc95f..000000000 --- a/addons/default/visiosoft/advs-module/src/Adv/Command/getExchange.php +++ /dev/null @@ -1,72 +0,0 @@ -currency = $currency; - } - - public function handle() - { - $exchange_xml = simplexml_load_file(setting_value('visiosoft.module.advs::tcmb_exchange_url') . '/today.xml'); - $exchange_xml = json_decode(json_encode($exchange_xml), TRUE); - $exchange = [ - 'USD' => 0, - 'EUR' => 3, - ]; - - foreach ($exchange as $key => $exchange_key) { - - $buy = $exchange_xml['Currency'][$exchange_key]['BanknoteSelling']; - $exchange[$key] = [ - 'sell' => $exchange_xml['Currency'][$exchange_key]['BanknoteBuying'], - 'buy' => $buy, - 'status' => $this->getStatus($buy, $exchange_key) - ]; - } - - if ($this->currency) { - if (array_key_exists($this->currency, $exchange)) { - return $exchange[$this->currency]; - } - return null; - } - return $exchange; - } - - public function getStatus($today_buy, $exchange_key) - { - $today = now(); - - $number_of_days_to_be_reduced = 1; - if ($today->format('D') == 'Mon') { - $number_of_days_to_be_reduced = 3; - } else if ($today->format('D') == 'Sun') { - $number_of_days_to_be_reduced = 2; - } - - - $date = $today->addDays('-' . $number_of_days_to_be_reduced); - - $year_and_month = $date->format('Ym'); - $date = $date->format('dmY'); - - - $exchange_xml = simplexml_load_file(setting_value('visiosoft.module.advs::tcmb_exchange_url') . '/' . $year_and_month . '/' . $date . '.xml'); - $exchange_xml = json_decode(json_encode($exchange_xml), TRUE); - - $old_buy = $exchange_xml['Currency'][$exchange_key]['BanknoteSelling']; - - $difference = ($today_buy * 10000) - ($old_buy * 10000); - - if ($difference > 0) { - return 'increased'; - } elseif ($difference < 0) { - return 'decreased'; - } - return 'equal'; - } -} diff --git a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php index 40186316b..47ed70689 100644 --- a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php +++ b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php @@ -5,7 +5,6 @@ use Twig_Environment; use Visiosoft\AdvsModule\Adv\AdvModel; use Visiosoft\AdvsModule\Adv\Command\appendRequestURL; use Visiosoft\AdvsModule\Adv\Command\GetAd; -use Visiosoft\AdvsModule\Adv\Command\getExchange; use Visiosoft\AdvsModule\Adv\Command\getPopular; use Visiosoft\AdvsModule\Adv\Command\GetUserAds; use Visiosoft\AdvsModule\Adv\Command\isActive; @@ -107,16 +106,6 @@ class AdvsModulePlugin extends Plugin return $fn->getCallable()(...$args); }, ['needs_environment' => true] - ), - new \Twig_SimpleFunction( - 'getExchange', - function ($currency = null) { - - if (!$exchange = $this->dispatch(new getExchange($currency))) { - return null; - } - return $exchange; - } ), new \Twig_SimpleFunction( 'getPopular', function () {