Server : LiteSpeed System : Linux server321.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : apotdzgr ( 7060) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/apotdzgr/public_html/wp-content/plugins/mycryptocheckout/src/actions/ |
Upload File : |
<?php namespace mycryptocheckout\actions; /** @brief Modify the amount / price of an item with these markup percent and fixed values. @since 2018-01-05 16:11:46 **/ class markup_amount extends action { /** @brief IN: The symbol / ID of the cryptocurrency that is going to be used. @since 2018-10-22 20:46:51 **/ public $currency_id; /** @brief IN: The fixed amount to mark up. @since 2018-01-05 16:30:37 **/ public $markup_amount; /** @brief IN: The percent to mark up. @since 2018-01-05 16:30:37 **/ public $markup_percent; /** @brief OUT: The marked up amount. @since 2018-01-05 16:30:37 **/ public $marked_up_amount; /** @brief IN: The original amount before markup. @since 2018-01-05 16:30:37 **/ public $original_amount; }