芝麻web文件管理V1.00
编辑当前文件:/home/r5772835/public_html/anarchy.ycreate.jp/wp-content/plugins/optinmonster/OMAPI/Ajax.php
set(); // Load non-WordPress style ajax requests. // phpcs:ignore Generic.Commenting.Todo.TaskFound // TODO move all of this to RestApi, and use rest api for these requests! add_action( 'init', array( $this, 'ajax' ), 999 ); } /** * Sets our object instance and base class instance. * * @since 1.0.0 */ public function set() { self::$instance = $this; $this->base = OMAPI::get_instance(); } /** * Callback to process external ajax requests. * * @since 1.0.0 */ public function ajax() { if ( ! isset( $_REQUEST['action'] ) || empty( $_REQUEST['optin-monster-ajax-route'] ) ) { return; } check_ajax_referer( 'omapi', 'nonce' ); switch ( $_REQUEST['action'] ) { case 'mailpoet': $this->base->mailpoet->handle_ajax_call(); break; default: break; } } }