/
/
home
/
melaqxso
/
nymetrocualumni.com
/
wp-content
/
plugins
/
give
/
src
/
DonationForms
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.61
PHP 7.4.33
Dir:
/home/melaqxso/nymetrocualumni.com/wp-content/plugins/give/src/DonationForms
Edit:
/home/melaqxso/nymetrocualumni.com/wp-content/plugins/give/src/DonationForms/ServiceProvider.php
<?php namespace Give\DonationForms; use Give\DonationForms\ListTable\DonationFormsListTable; use Give\DonationForms\Repositories\DonationFormsRepository; use Give\Helpers\Hooks; use Give\ServiceProviders\ServiceProvider as ServiceProviderInterface; /** * @since 2.19.0 */ class ServiceProvider implements ServiceProviderInterface { /** * @inheritDoc */ public function register() { give()->singleton('donationForms', DonationFormsRepository::class); give()->singleton(DonationFormsListTable::class, function() { $listTable = new DonationFormsListTable(); Hooks::doAction('givewp_donation_forms_list_table', $listTable); return $listTable; }); } /** * @inheritDoc */ public function boot() { $userId = get_current_user_id(); $showLegacy = get_user_meta($userId, '_give_donation_forms_archive_show_legacy', true); // only register new admin page if user hasn't chosen to use the old one if(empty($showLegacy)) { Hooks::addAction('admin_menu', DonationFormsAdminPage::class, 'register', 0); Hooks::addAction('admin_menu', DonationFormsAdminPage::class, 'highlightAllFormsMenuItem'); if (DonationFormsAdminPage::isShowing()) { Hooks::addAction('admin_enqueue_scripts', DonationFormsAdminPage::class, 'loadScripts'); } } elseif(DonationFormsAdminPage::isShowingLegacyPage()) { Hooks::addAction( 'admin_head', DonationFormsAdminPage::class, 'renderReactSwitch'); } } }
Ukuran: 1.6 KB