Server IP : 15.235.198.142 / Your IP : 216.73.216.178 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/plugins/elementor-pro/core/security/ |
Upload File : |
<?php namespace ElementorPro\Core\Security; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Access_Control { public static function user_can_edit( int $post_id ): bool { return current_user_can( Capability::EDIT_POST_META, $post_id ); } public static function user_can_edit_posts(): bool { return current_user_can( Capability::EDIT_POSTS ); } public static function user_can_access_private_posts(): bool { return current_user_can( Capability::READ_PRIVATE_POSTS ); } /** * @throws \Exception */ public static function verify_post_edit_access( int $post_id ): void { if ( ! self::user_can_edit( $post_id ) ) { throw new \Exception( 'You do not have permission to edit this post.' ); } } /** * @throws \Exception */ public static function verify_user_editing_capability(): void { if ( ! self::user_can_edit_posts() ) { throw new \Exception( 'Access denied: User does not have editing capabilities.' ); } } }