Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
give
/
src
/
MultiFormGoals
/
resources
/
js
/
components
/
multi-select-control
:
AddPlatformFeeAmountToSystemInfo.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 } }