pro_enabled = apply_filters('better_payment/pro_enabled', false); new ReactAdmin(); // new Settings(); // Add plugin action links - works with or without Elementor add_filter('plugin_action_links', array($this, 'plugin_actions_links'), 10, 2); if ( ! $this->pro_enabled ) { $this->admin_notice(); $this->start_plugin_tracking(); } add_action('in_admin_header', array( $this, 'hide_admin_notices' )); } /** * Add settings page link on plugins page * * @param array $links * @param string $file * * @return array * @since 0.0.1 */ public function plugin_actions_links($links, $file) { $better_payment_plugin = plugin_basename(BETTER_PAYMENT_FILE); if ($file == $better_payment_plugin && current_user_can('manage_options')) { $links[] = sprintf('%s', admin_url("admin.php?page=better-payment-admin&tab=settings"), __('Settings', 'better-payment')); if ( ! $this->pro_enabled ) { $links[] = sprintf('' . __('Go Pro', 'better-payment') . ''); } } return $links; } public function admin_notice() { require_once BETTER_PAYMENT_PATH . '/vendor/autoload.php'; self::$cache_bank = CacheBank::get_instance(); NoticeRemover::get_instance('1.0.0'); NoticeRemover::get_instance('1.0.0', '\WPDeveloper\BetterDocs\Dependencies\PriyoMukul\WPNotice\Notices'); $notices = new Notices( [ 'id' => 'better-payment', 'storage_key' => 'notices', 'lifetime' => 3, 'stylesheet_url' => esc_url_raw( BETTER_PAYMENT_URL . '/assets/css/admin.min.css' ), 'styles' => esc_url_raw( BETTER_PAYMENT_URL . '/assets/css/admin.min.css' ), 'priority' => 9 ] ); $review_notice = 'We hope you\'re enjoying Better Payment! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?'; $_review_notice = [ 'thumbnail' => plugins_url( 'assets/img/logo.svg', BETTER_PAYMENT_BASENAME ), 'html' => '

' . $review_notice . '

', 'links' => [ 'later' => array( 'link' => '//wordpress.org/support/plugin/better-payment/reviews/#new-post', 'target' => '_blank', 'label' => 'Ok, you deserve it!', 'icon_class' => 'dashicons dashicons-external', 'attributes' => [ 'target' => '_blank', ], ), 'allready' => array( 'label' => 'I already did', 'icon_class' => 'dashicons dashicons-smiley', 'attributes' => [ 'data-dismiss' => true ], ), 'maybe_later' => array( 'label' => 'Maybe Later', 'icon_class' => 'dashicons dashicons-calendar-alt', 'attributes' => [ 'data-later' => true ], ), 'support' => array( 'link' => 'https://wpdeveloper.com/support', 'label' => 'I need help', 'icon_class' => 'dashicons dashicons-sos', 'attributes' => [ 'target' => '_blank', ], ), 'never_show_again' => array( 'label' => 'Never show again', 'icon_class' => 'dashicons dashicons-dismiss', 'attributes' => [ 'data-dismiss' => true ], ) ] ]; $notices->add( 'review', $_review_notice, [ 'start' => $notices->strtotime( '+7 day' ), 'recurrence' => 30, 'refresh' => BETTER_PAYMENT_VERSION, 'dismissible' => true, ] ); /** * Summer Offer Notice */ $purchase_url = '//betterpayment.co/summer2026-admin-notice'; $summer_notice_message = "

🏖️ Summer Savings: Streamline transactions with fast, optimized payment forms on your WordPress sites – now up to $150 OFF!

Upgrade To Pro Now
"; $summer_notice = [ 'thumbnail' => plugins_url( 'assets/img/logo.svg', BETTER_PAYMENT_BASENAME ), 'html' => $summer_notice_message, ]; $notices->add( 'bp_summer_notice', $summer_notice, [ 'start' => $notices->time(), 'expire' => strtotime( '11:59:59pm 25th June, 2026' ), 'refresh' => BETTER_PAYMENT_VERSION, 'dismissible' => true, 'screens' => [ 'dashboard' ], ] ); self::$cache_bank->create_account( $notices ); self::$cache_bank->calculate_deposits( $notices ); } public function hide_admin_notices(){ $current_screen = get_current_screen(); if ($current_screen && (false !== strpos( $current_screen->id, 'better-payment' ) || false !== strpos( $current_screen->id, 'bp-campaign' )) ) { remove_all_actions('user_admin_notices'); remove_all_actions('admin_notices'); remove_all_actions('all_admin_notices'); remove_all_actions('network_admin_notices'); // To show notice in better payment settings page we have to use 'better_payment_admin_notices' action hook add_action( 'admin_notices', function () { do_action( 'better_payment_admin_notices' ); } ); } } /** * Dispatch and bind actions * * @return void * @since 0.0.1 */ public static function dispatch_actions( ) { $menuObj = new Menu(); $menuObj->init(); $bpElementorWidgetObj = new Widget(); $bpImportObj = new Import(); $bpExportObj = new Export(); $helperObj = new Helper(); // Handle select2 ajax search add_action('wp_ajax_better_payment_select2_search_post', [$bpElementorWidgetObj, 'select2_ajax_posts_filter_autocomplete']); add_action('wp_ajax_better_payment_select2_get_title', [$bpElementorWidgetObj, 'select2_ajax_get_posts_value_titles']); // Elements add_action('elementor/controls/controls_registered',[$bpElementorWidgetObj, 'register_controls']); //Page: Transactions add_action('admin_post_better-payment-transactions-import',[$bpImportObj, 'import_transactions']); add_action('wp_ajax_better-payment-transactions-export',[$bpExportObj, 'export_transactions']); // Elementor categories add_action('elementor/elements/categories_registered', [$helperObj, 'register_widget_categories']); } }