Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Settings Class
 *
 * @package Page_Generator_Pro
 * @author WP Zinc
 */

/**
 * Reads and writes settings to the options table for
 * Plugin settings.
 *
 * @package Page_Generator_Pro
 * @author  WP Zinc
 * @version 1.0.0
 */
class Page_Generator_Pro_Settings {

	/**
	 * Holds the base object.
	 *
	 * @since   1.9.8
	 *
	 * @var     object
	 */
	public $base;

	/**
	 * Constructor
	 *
	 * @since   1.9.8
	 *
	 * @param   object $base    Base Plugin Class.
	 */
	public function __construct( $base ) {

		// Store base class.
		$this->base = $base;

	}

	/**
	 * Retrieves a setting from the options table.
	 *
	 * Safely checks if the key(s) exist before returning the default
	 * or the value.
	 *
	 * @since   1.0.0
	 *
	 * @param   string $type             Plugin / Addon Name / Type.
	 * @param   string $key              Setting key value to retrieve.
	 * @param   string $default_value    Default Value.
	 * @return  string                   Value/Default Value
	 */
	public function get_setting( $type, $key, $default_value = '' ) {

		// Get settings.
		$settings = $this->get_settings( $type );

		// Convert string to keys.
		$keys = explode( '][', $key );

		foreach ( $keys as $count => $key ) {
			// Cleanup key.
			$key = trim( $key, '[]' );

			// Check if key exists.
			if ( ! isset( $settings[ $key ] ) ) {
				return $default_value;
			}

			// Key exists - make settings the value (which could be an array or the final value)
			// of this key.
			$settings = $settings[ $key ];
		}

		// If here, setting exists.
		return $settings; // This will be a non-array value.

	}

	/**
	 * Returns the settings for the given Type
	 *
	 * @since   1.0.0
	 *
	 * @param   string $type       Plugin / Addon Name / Type.
	 * @return  array               Settings
	 */
	public function get_settings( $type ) {

		// Get current settings.
		$settings = get_option( $type );

		/**
		 * Filter the Settings before returning.
		 *
		 * @since   1.0.0
		 *
		 * @param   array   $settings   Settings.
		 * @param   string  $type       Setting Type.
		 */
		$settings = apply_filters( 'page_generator_pro_get_settings', $settings, $type );

		// Return result.
		return $settings;

	}

	/**
	 * Stores the given setting for the given Plugin Type into the options table
	 *
	 * @since   1.0.0
	 *
	 * @param   string $type       Plugin / Addon Name / Type.
	 * @param   string $key        Key.
	 * @param   string $value      Value.
	 * @return  bool                Success
	 */
	public function update_setting( $type, $key, $value ) {

		// Get all settings.
		$settings = $this->get_settings( $type );

		// Update setting.
		$settings[ $key ] = $value;

		/**
		 * Filter a specific setting before updating.
		 *
		 * @since   1.0.0
		 *
		 * @param   array   $settings   Settings.
		 * @param   string  $type       Setting Type.
		 * @param   string  $key        Setting key.
		 * @param   string  $value      Setting Value.
		 */
		$settings = apply_filters( 'page_generator_pro_update_setting', $settings, $type, $key, $value );

		// update_option will return false if no changes were made, so we can't rely on this.
		update_option( $type, $settings );

		return true;

	}

	/**
	 * Stores the given settings for the given Plugin Type into the options table
	 *
	 * @since   1.0.0
	 *
	 * @param   string $type       Plugin / Addon Name / Type.
	 * @param   array  $settings   Settings.
	 * @return  bool                Success
	 */
	public function update_settings( $type, $settings ) {

		// Strip slashes from settings.
		$settings = $this->stripslashes( $settings );

		/**
		 * Filter the Settings before updating.
		 *
		 * @since   1.0.0
		 *
		 * @param   array   $settings   Settings.
		 * @param   string  $type       Setting Type.
		 */
		$settings = apply_filters( 'page_generator_pro_update_settings', $settings, $type );

		// update_option will return false if no changes were made, so we can't rely on this.
		update_option( $type, $settings );

		return true;

	}

	/**
	 * Recursively strips slashes from settings
	 *
	 * @since   1.1.0
	 *
	 * @param   string|array $settings   Settings.
	 * @return  string|array               Settings
	 */
	public function stripslashes( $settings ) {

		if ( is_string( $settings ) ) {
			return stripslashes( $settings );
		}

		if ( is_array( $settings ) ) {
			foreach ( $settings as $i => $value ) {
				$settings[ $i ] = $this->stripslashes( $value );
			}
		}

		return $settings;

	}

	/**
	 * Deletes a specific setting for the given Plugin Type
	 *
	 * @since   1.0.0
	 *
	 * @param   string $type   Plugin / Addon Name / Type.
	 * @param   string $key    Setting Key.
	 * @return  bool            Success
	 */
	public function delete_setting( $type, $key ) {

		// G