HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/triad-infosec/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' );
	}
}