| Server IP : 109.122.246.182 / Your IP : 216.73.216.59 Web Server : Apache/2 System : Linux host3.abrin.cloud 6.1.0-52-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.180-1 (2026-08-03) x86_64 User : sinah533 ( 1085) PHP Version : 8.1.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sinah533/public_html/wp-content/plugins/elementor-pro/core/security/ |
Upload File : |
<?php
namespace ElementorPro\Core\Security;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Capability {
/**
* 'edit_post' is one of the meta-capabilities which is the combination of
* edit_posts and edit_others_posts primitive capabilities
*
* https://wordpress.org/documentation/article/roles-and-capabilities/
* https://learn.wordpress.org/tutorial/custom-post-types-and-capabilities/
*/
const EDIT_POST_META = 'edit_post';
const EDIT_POSTS = 'edit_posts';
const READ_PRIVATE_POSTS = 'read_private_posts';
}