hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/home.obu.edu/wp-content/plugins/wp-rss-aggregator/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/home.obu.edu/wp-content/plugins/wp-rss-aggregator/includes/admin-plugins.php
<?php

if (!defined('ABSPATH')) {
    die;
}

/**
 * Adds deactivate poll application on plugin's page.
 *
 * @since 4.12.1
 */
add_action('admin_init', function () {
    $page = trim($_SERVER["REQUEST_URI"], '/');
    $isPluginsPage = strpos($page, 'plugins.php') !== false;

    if (!$isPluginsPage) {
        return;
    }

    add_action('admin_footer', function () {
        wprss_plugin_enqueue_app_scripts('wpra-plugins', WPRSS_APP_JS . 'plugins.min.js', array(), '0.1', true);
        wp_enqueue_style('wpra-plugins', WPRSS_APP_CSS . 'plugins.min.css');

        $addons = wprss_find_installed_addon_names();
        $addons = array_fill_keys($addons, 1);

        wp_localize_script('wpra-plugins', 'WrpaDisablePoll', array(
            'image' => WPRSS_IMG,
            'url' => 'https://hooks.zapier.com/hooks/catch/305784/puf5uf/',
            'audience' => 50, // how many people should see the disable poll (in percents)
            'model' => array(
                'reason' => 'Other',
                'follow_up' => null,
                'date' => date('j M Y'),
                'addons' => $addons,
            ),
            'form' => array(
                array(
                    'label' => '',
                    'type' => 'radio',
                    'name' => 'reason',
                    'options' =>
                        array(
                            array(
                                'value' => 'I no longer need the plugin',
                                'label' => __('I no longer need the plugin', WPRSS_TEXT_DOMAIN),
                            ),
                            array(
                                'value' => 'I found a better alternative',
                                'label' => __('I found a better alternative', WPRSS_TEXT_DOMAIN),
                            ),
                            array(
                                'value' => 'I couldn\'t get the plugin to work',
                                'label' => __('I couldn\'t get the plugin to work', WPRSS_TEXT_DOMAIN),
                            ),
                            array(
                                'value' => 'I\'m temporarily deactivating the plugin, but I\'ll be back',
                                'label' => __('I\'m temporarily deactivating the plugin, but I\'ll be back', WPRSS_TEXT_DOMAIN),
                            ),
                            array(
                                'value' => 'I have a WP RSS Aggregator add-on',
                                'label' => __('I have a WP RSS Aggregator add-on', WPRSS_TEXT_DOMAIN),
                            ),
                            array(
                                'value' => 'Other',
                                'label' => __('Other', WPRSS_TEXT_DOMAIN),
                            ),
                        ),
                ),
                array(
                    'label' => __('Would you mind sharing its name?', WPRSS_TEXT_DOMAIN),
                    'type' => 'textarea',
                    'name' => 'follow_up',
                    'condition' =>
                        array(
                            'field' => 'reason',
                            'operator' => '=',
                            'value' => 'I found a better alternative',
                        ),
                ),
                array(
                    'type' => 'content',
                    'label' => __('Have you <a target="_blank" href="https://wordpress.org/support/plugin/wp-rss-aggregator/">contacted our support team</a> or checked out our <a href="https://kb.wprssaggregator.com/" target="_blank">Knowledge Base</a>?', WPRSS_TEXT_DOMAIN),
                    'condition' =>
                        array(
                            'field' => 'reason',
                            'operator' => '=',
                            'value' => 'I couldn\'t get the plugin to work',
                        ),
                ),
                array(
                    'type' => 'content',
                    'className' => 'error',
                    'label' => __('This core plugin is required for all our premium add-ons. Please don\'t deactivate it if you currently have premium add-ons installed and activated.', WPRSS_TEXT_DOMAIN),
                    'condition' =>
                        array(
                            'field' => 'reason',
                            'operator' => '=',
                            'value' => 'I have a WP RSS Aggregator add-on',
                        ),
                ),
                array(
                    'label' => __('Please share your reason...', WPRSS_TEXT_DOMAIN),
                    'type' => 'textarea',
                    'name' => 'follow_up',
                    'condition' =>
                        array(
                            'field' => 'reason',
                            'operator' => '=',
                            'value' => 'Other',
                        ),
                ),
            )
        ));

        echo '<div id="wpra-plugins-app"></div>';
    });
});

Al-HUWAITI Shell