HEX
Server: nginx/1.24.0
System: Linux ht2024073053593 5.14.0-480.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 12 20:45:27 UTC 2024 x86_64
User: root (0)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/njmuedu.com/wp-content/plugins/xml-sitemap-feed/inc/class-xmlsf-admin.php
<?php
/**
 * XMLSF Admin CLASS
 *
 * @package XML Sitemap & Google News
 */

/**
 * XMLSF Admin CLASS
 */
class XMLSF_Admin {
	/**
	 * CONSTRUCTOR
	 */
	public function __construct() {

		if ( xmlsf_sitemaps_enabled( 'sitemap' ) ) {
			require XMLSF_DIR . '/inc/class-xmlsf-admin-sitemap-sanitize.php';
			require XMLSF_DIR . '/inc/class-xmlsf-admin-sitemap.php';
			new XMLSF_Admin_Sitemap();
			require XMLSF_DIR . '/inc/class-xmlsf-admin-sitemap-fields.php';
		}

		if ( xmlsf_sitemaps_enabled( 'news' ) ) {
			require XMLSF_DIR . '/inc/class-xmlsf-admin-sitemap-news-sanitize.php';
			require XMLSF_DIR . '/inc/class-xmlsf-admin-sitemap-news.php';
		}

		\add_action( 'admin_init', array( $this, 'maybe_flush_rewrite_rules' ) );

		// ACTION LINK.
		add_filter( 'plugin_action_links_' . XMLSF_BASENAME, array( $this, 'add_action_link' ) );
		add_filter( 'plugin_row_meta', array( $this, 'plugin_meta_links' ), 10, 2 );

		// REGISTER SETTINGS.
		add_action( 'admin_init', array( $this, 'register_settings' ), 0 );

		// ACTIONS & CHECKS.
		add_action( 'admin_init', array( $this, 'tools_actions' ), 9 );
		add_action( 'admin_init', array( $this, 'notices_actions' ), 9 );
		add_action( 'admin_init', array( $this, 'check_conflicts' ), 11 );
		add_action( 'update_option_xmlsf_sitemaps', array( $this, 'update_sitemaps' ), 10, 2 );

		// Shared Admin pages sidebar actions.
		add_action( 'xmlsf_admin_sidebar', array( $this, 'admin_sidebar_help' ) );
		add_action( 'xmlsf_admin_sidebar', array( $this, 'admin_sidebar_contribute' ), 20 );
	}

	/**
	 * Maybe flush rewrite rules
	 *
	 * Uses $wp_rewrite->wp_rewrite_rules() which checks for empty rewrite_rules option.
	 */
	public function maybe_flush_rewrite_rules() {
		global $wp_rewrite;
		$wp_rewrite->wp_rewrite_rules(); // Recreates rewrite rules only when needed.
	}

	/**
	 * SETTINGS
	 */

	/**
	 * Update actions for Sitemaps
	 *
	 * @param mixed $old   Old option value.
	 * @param mixed $value Saved option value.
	 */
	public function update_sitemaps( $old, $value ) {
		global $xmlsf_sitemap;
		$old   = (array) $old;
		$value = (array) $value;

		if ( $old !== $value ) {
			$files = array();

			// Switched on sitemap.
			if ( ! empty( $value['sitemap'] ) && empty( $old['sitemap'] ) ) {
				$files[] = is_object( $xmlsf_sitemap ) ? $xmlsf_sitemap->index() : apply_filters( 'xmlsf_sitemap_filename', 'sitemap.xml' );
			}

			// Switched on news sitemap.
			if ( ! empty( $value['sitemap-news'] ) && empty( $old['sitemap-news'] ) ) {
				$files[] = apply_filters( 'xmlsf_sitemap_news_filename', 'sitemap-news.xml' );
			}

			// Check static files.
			empty( $files ) || xmlsf_admin()->check_static_files( $files, 1 );

			// Flush rewrite rules on next init.
			delete_option( 'rewrite_rules' );
		}
	}

	/**
	 * Register settings and add settings fields
	 */
	public function register_settings() {

		// Sitemaps.
		register_setting(
			'reading',
			'xmlsf_sitemaps'
		);
		add_settings_field(
			'xmlsf_sitemaps',
			__( 'Enable XML sitemaps', 'xml-sitemap-feed' ),
			array( $this, 'sitemaps_settings_field' ),
			'reading'
		);

		// Help tab.
		add_action(
			'load-options-reading.php',
			array( $this, 'xml_sitemaps_help' )
		);

		// Robots rules.
		register_setting(
			'reading',
			'xmlsf_robots',
			'sanitize_textarea_field'
		);
		add_settings_field(
			'xmlsf_robots',
			__( 'Additional robots.txt rules', 'xml-sitemap-feed' ),
			array( $this, 'robots_settings_field' ),
			'reading'
		);
	}

	/**
	 * SITEMAPS
	 */

	/**
	 * Sitemaps help tabs
	 */
	public function xml_sitemaps_help() {
		ob_start();
		include XMLSF_DIR . '/views/admin/help-tab-sitemaps.php';
		include XMLSF_DIR . '/views/admin/help-tab-support.php';
		$content = ob_get_clean();

		get_current_screen()->add_help_tab(
			array(
				'id'       => 'sitemap-settings',
				'title'    => __( 'Enable XML sitemaps', 'xml-sitemap-feed' ),
				'content'  => $content,
				'priority' => 11,
			)
		);

		ob_start();
		include XMLSF_DIR . '/views/admin/help-tab-robots.php';
		include XMLSF_DIR . '/views/admin/help-tab-support.php';
		$content = ob_get_clean();

		get_current_screen()->add_help_tab(
			array(
				'id'       => 'robots',
				'title'    => __( 'Additional robots.txt rules', 'xml-sitemap-feed' ),
				'content'  => $content,
				'priority' => 11,
			)
		);
	}

	/**
	 * Sitemap settings fields
	 */
	public function sitemaps_settings_field() {
		if ( 1 === (int) get_option( 'blog_public' ) ) {
			// The actual fields for data entry.
			include XMLSF_DIR . '/views/admin/field-sitemaps.php';
		} else {
			esc_html_e( 'XML Sitemaps are not available because of your site&#8217;s visibility settings (above).', 'xml-sitemap-feed' );
		}
	}

	/**
	 * ROBOTS
	 */
	public function robots_settings_field() {
		global $wp_rewrite;

		$rules  = (array) get_option( 'rewrite_rules' );
		$found  = $this->check_static_files( 'robots.txt', 0 );
		$static = ! empty( $found ) && in_array( 'robots.txt', $found, true );

		// The actual fields for data entry.
		include XMLSF_DIR . '/views/admin/field-robots.php';
	}

	/**
	 * Clear settings
	 */
	public function clear_settings() {
		// TODO reset Settings > Reading options here...

		add_settings_error(
			'notice_clear_settings',
			'notice_clear_settings',
			__( 'Settings reset to the plugin defaults.', 'xml-sitemap-feed' ),
			'updated'
		);
	}

	/**
	 * Check for static sitemap files
	 *
	 * @param mixed $files     Filename or array of filenames.
	 * @param bool  $verbosity Verbosity level: 0|false (no messages), 1|true (warnings only) or 2 (warnings or success).
	 *
	 * @return array Found static files.
	 */
	public function check_static_files( $files, $verbosity = 2 ) {
		$home_path = trailingslashit( get_home_path() );
		$found     = array();

		foreach ( (array) $files as $pretty ) {
			if ( ! empty( $pretty ) && file_exists( $home_path . $pretty ) ) {
				$found[] = $pretty;
				$verbosity && add_settings_error(
					'static_files_notice',
					'static_files',
					sprintf( /* translators: %1$s file name, %2$s is XML Sitemap (linked to options-reading.php) */
						esc_html__( 'A conflicting static file has been found: %1$s. Either delete it or disable the corresponding %2$s.', 'xml-sitemap-feed' ),
						esc_html( $pretty ),
						'<a href="' . esc_url( admin_url( 'options-reading.php' ) ) . '#xmlsf_sitemaps">' . esc_html__( 'XML Sitemap', 'xml-sitemap-feed' ) . '</a>'
					),
					'warning'
				);
			}
		}

		// Tell me if all is OK.
		$verbosity > 1 && empty( $found ) && add_settings_error(
			'static_files_notice',
			'static_files',
			__( 'No conflicting static files found.', 'xml-sitemap-feed' ),
			'success'
		);

		return $found;
	}

	/**
	 * Check for conflicting themes and plugins
	 */
	public function check_conflicts() {
		// Catch Box Pro feed redirect.
		if ( function_exists( 'catchbox_is_feed_url_present' ) && catchbox_is_feed_url_present( null ) ) {
			add_action(
				'admin_notices',
				function () {
					include XMLSF_DIR . '/views/admin/notice-catchbox-feed-redirect.php';
				}
			);
		}

		// Ad Inserter XML setting incompatibility warning.
		if ( is_plugin_active( 'ad-inserter/ad-inserter.php' ) ) {
			$adsettings = get_option( 'ad_inserter' );
			if ( is_array( $adsettings ) && ! empty( $adsettings ) ) {
				foreach ( $adsettings as $ad => $settings ) {
					// Check rss feed setting.
					if ( ! empty( $settings['code'] ) && empty( $settings['disable_insertion'] ) && ! empty( $settings['enable_feed'] ) ) {
						add_action(
							'admin_notices',
							function () {
								include XMLSF_DIR . '/views/admin/notice-ad-insterter-feed.php';
							}
						);
						break;
					}
				}
			}
		}
	}

	/**
	 * Admin sidbar help section
	 */
	public function admin_sidebar_help() {
		include XMLSF_DIR . '/views/admin/sidebar-help.php';
	}

	/**
	 * Admin sidbar contribute section
	 */
	public function admin_sidebar_contribute() {
		include XMLSF_DIR . '/views/admin/sidebar-contribute.php';
	}

	/**
	 * Tools actions
	 */
	public function tools_actions() {
		if ( ! isset( $_POST['_xmlsf_help_nonce'] ) || ! wp_verify_nonce( sanitize_key( $_POST['_xmlsf_help_nonce'] ), XMLSF_BASENAME . '-help' ) ) {
			return;
		}

		// TODO clear global settings.
		if ( isset( $_POST['xmlsf-clear-settings-general'] ) ) {
			$this->clear_settings();
		}

		if ( isset( $_POST['xmlsf-flush-rewrite-rules'] ) ) {
			// Flush rewrite rules.
			flush_rewrite_rules( false );
			add_settings_error(
				'flush_admin_notice',
				'flush_admin_notice',
				__( 'WordPress rewrite rules have been flushed.', 'xml-sitemap-feed' ),
				'success'
			);
		}
	}

	/**
	 * Admin notices actions
	 */
	public function notices_actions() {
		if ( ! isset( $_POST['_xmlsf_notice_nonce'] ) || ! wp_verify_nonce( sanitize_key( $_POST['_xmlsf_notice_nonce'] ), XMLSF_BASENAME . '-notice' ) ) {
			return;
		}

		if ( isset( $_POST['xmlsf-dismiss'] ) ) {
			// Store user notice dismissal.
			$dismissed = sanitize_key( $_POST['xmlsf-dismiss'] );
			add_user_meta(
				get_current_user_id(),
				'xmlsf_dismissed',
				$dismissed,
				false
			);
		}
	}

	/**
	 * Add action link
	 *
	 * @param array $links Array of links.
	 */
	public function add_action_link( $links ) {
		$settings_link = '<a href="' . admin_url( 'options-reading.php' ) . '#xmlsf_sitemaps">' . translate( 'Settings' ) . '</a>';
		array_unshift( $links, $settings_link );
		return $links;
	}

	/**
	 * Add plugin meta links
	 *
	 * @param array  $links Array of links.
	 * @param string $file Plugin file name.
	 */
	public function plugin_meta_links( $links, $file ) {
		if ( XMLSF_BASENAME === $file ) {
			$links[] = '<a target="_blank" href="https://wordpress.org/support/plugin/xml-sitemap-feed/">' . __( 'Support', 'xml-sitemap-feed' ) . '</a>';
			$links[] = '<a target="_blank" href="https://wordpress.org/support/plugin/xml-sitemap-feed/reviews/?filter=5#new-post">' . __( 'Rate ★★★★★', 'xml-sitemap-feed' ) . '</a>';
		}
		return $links;
	}
}