HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/the-events-calendar/src/Tribe/Meta/Context.php
<?php


/**
 * Class Tribe__Events__Meta__Context
 *
 * Abstracts a post save operation context.
 *
 * @since 4.2.5
 */
class Tribe__Events__Meta__Context {

	/**
	 * @return bool
	 */
	public function doing_ajax() {
		return defined( 'DOING_AJAX' );
	}

	/**
	 * @return bool
	 */
	public function is_bulk_editing() {
		return isset( $_GET['bulk_edit'] );
	}

	/**
	 * @return bool
	 */
	public function is_inline_save() {
		return ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'inline-save' );
	}

	/**
	 * @return bool
	 */
	public function has_nonce() {
		return isset( $_POST['ecp_nonce'] );
	}

	/**
	 * @return false|int
	 */
	public function verify_nonce() {
		return wp_verify_nonce( $_POST['ecp_nonce'], Tribe__Events__Main::POSTTYPE );
	}

	/**
	 * Whether the current user has the specified capability or not.
	 *
	 * @param string $capability
	 *
	 * @return bool
	 */
	public function current_user_can_edit_events( ) {
		return current_user_can( 'edit_tribe_events' );
	}
}