文件操作 - ServiceProvider.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/DonationForms/V2/ServiceProvider.php
编辑文件内容
<?php namespace Give\DonationForms\V2; use Give\DonationForms\V2\ListTable\DonationFormsListTable; use Give\DonationForms\V2\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); Hooks::addAction('admin_menu', DonationFormsAdminPage::class, 'register', 0); if (empty($showLegacy)) { if (DonationFormsAdminPage::isShowing()) { Hooks::addAction('admin_enqueue_scripts', DonationFormsAdminPage::class, 'loadScripts'); } } elseif (DonationFormsAdminPage::isShowingLegacyPage()) { Hooks::addAction('admin_head', DonationFormsAdminPage::class, 'renderReactSwitch'); } // Onboarding Hooks::addAction('submitpost_box', DonationFormsAdminPage::class, 'renderMigrationGuideBox'); Hooks::addAction('admin_enqueue_scripts', DonationFormsAdminPage::class, 'loadMigrationScripts'); // Dismiss notices $noticeActions = [ 'givewp_show_onboarding_banner' => 'show-onboarding-banner', 'givewp_show_upgraded_tooltip' => 'show-upgraded-tooltip', 'givewp_show_default_form_tooltip' => 'show-default-form-tooltip', ]; foreach ($noticeActions as $action => $metaKey) { add_action("wp_ajax_{$action}", static function () use ($metaKey) { add_user_meta(get_current_user_id(), "givewp-{$metaKey}", time(), true); }); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件