![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/giraluanda.com/wp-content/plugins/the-events-calendar/src/Tribe/Meta/ |
<?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' ); } }