$46 GRAYBYTE WORDPRESS FILE MANAGER $68

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/home/bravrvjk/ubukode.com/wp-content/plugins/elementor-pro/modules/notes/user/

HOME
Current File : /home/bravrvjk/ubukode.com/wp-content/plugins/elementor-pro/modules/notes/user//preferences.php
<?php
namespace ElementorPro\Modules\Notes\User;

use ElementorPro\Core\Utils;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Preferences {

	const ENABLE_NOTIFICATIONS = 'elementor_pro_enable_notes_notifications';

	/**
	 * Register actions and hooks.
	 *
	 * @return void
	 */
	public function register() {
		add_action( 'profile_personal_options', function ( \WP_User $user ) {
			$this->add_personal_options_settings( $user );
		} );

		add_action( 'personal_options_update', function ( $user_id ) {
			$this->update_personal_options_settings( $user_id );
		} );
	}

	/**
	 * Determine if notifications are enabled for a user.
	 *
	 * @param int $user_id - User ID.
	 *
	 * @return bool
	 */
	public static function are_notifications_enabled( $user_id ) {
		return ! ! Utils::get_user_option_with_default( static::ENABLE_NOTIFICATIONS, $user_id, true );
	}

	/**
	 * Add settings to the "Personal Options".
	 *
	 * @param \WP_User $user - User object.
	 *
	 * @return void
	 */
	protected function add_personal_options_settings( \WP_User $user ) {
		if ( ! $this->has_permissions_to_edit_user( $user->ID ) ) {
			return;
		}

		$option_name = static::ENABLE_NOTIFICATIONS;
		$value = Utils::get_user_option_with_default( $option_name, $user->ID, '1' );

		?>
		<h2><?php echo esc_html__( 'Elementor Notes', 'elementor-pro' ); ?></h2>
		<table class="form-table" role="presentation">
			<tr>
				<th>
					<label for="<?php echo esc_attr( $option_name ); ?>">
						<?php echo esc_html__( 'Notifications', 'elementor-pro' ); ?>
					</label>
				</th>
				<td>
					<label for="<?php echo esc_attr( $option_name ); ?>">
						<input name="<?php echo esc_attr( $option_name ); ?>" id="<?php echo esc_attr( $option_name ); ?>" type="checkbox" value="1"<?php checked( '1', $value ); ?> />
						<?php echo esc_html__( 'Enable Elementor Notes notifications', 'elementor-pro' ); ?>
					</label>
				</td>
			</tr>
		</table>
		<?php
	}

	/**
	 * Save the settings in the "Personal Options".
	 *
	 * @param int $user_id - User ID.
	 *
	 * @return void
	 */
	protected function update_personal_options_settings( $user_id ) {

		// phpcs:ignore WordPress.Security.NonceVerification.Missing -- Nonce already verified in `wp_verify_nonce`.
		$wpnonce = Utils::_unstable_get_super_global_value( $_POST, '_wpnonce' );
		if ( ! wp_verify_nonce( $wpnonce, 'update-user_' . $user_id ) ) {
			return;
		}

		if ( ! $this->has_permissions_to_edit_user( $user_id ) ) {
			return;
		}

		$option_name = static::ENABLE_NOTIFICATIONS;
		$value = empty( $_POST[ $option_name ] ) ? '0' : '1';

		update_user_option( $user_id, $option_name, sanitize_text_field( $value ) );
	}

	/**
	 * Determine if the current user has permission to view/change notes preferences of a user.
	 *
	 * @param int $user_id
	 *
	 * @return bool
	 */
	protected function has_permissions_to_edit_user( $user_id ) {
		return (
			current_user_can( Capabilities::READ_NOTES ) &&
			current_user_can( 'edit_user', $user_id )
		);
	}
}


Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
18 Nov 2025 3.23 PM
bravrvjk / bravrvjk
0755
capabilities.php
7.252 KB
18 Nov 2025 3.23 PM
bravrvjk / bravrvjk
0644
delete-user.php
1.696 KB
18 Nov 2025 3.23 PM
bravrvjk / bravrvjk
0644
personal-data.php
2.426 KB
18 Nov 2025 3.23 PM
bravrvjk / bravrvjk
0644
preferences.php
2.951 KB
18 Nov 2025 3.23 PM
bravrvjk / bravrvjk
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF