• File: AddPlatformFeeAmountToSystemInfo.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/MultiFormGoals/resources/js/blocks/AddPlatformFeeAmountToSystemInfo.php
  • Date Modified: 05/22/2025 12:18 AM
  • File size: 1000 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Give\License\Actions;

use Give\License\Repositories\LicenseRepository;

/**
 * @since 4.3.0
 */
class AddPlatformFeeAmountToSystemInfo
{
    /**
     * Callback for `give_add_system_info_configuration` that adds the platform fee amount to the system info table.
     * @since 4.3.0
     */
    public function __invoke($settings)
    {
        /**
         * @var LicenseRepository $licenseRepository
         */
        $licenseRepository = give(LicenseRepository::class);
        $label = __('Platform Fee Amount', 'give');

        ?>
        <tr>
            <td data-export-label="<?php echo $label; ?>">
                <?php echo $label; ?>:
            </td>
            <td class="help">
                <?php echo Give()->tooltips->render_help(__('The GiveWP Platform Fee Percentage.', 'give')); ?>
            </td>
            <td>
                <?php echo $licenseRepository->getPlatformFeePercentage() . '%'; ?>
            </td>
        </tr>
        <?php
    }
}