• File: handler_interface.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/types/application/controllers/ajax/handler_interface.php
  • Date Modified: 02/11/2019 2:36 PM
  • File size: 383 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 * Interface for an AJAX call handler.
 *
 * @since 2.1
 */
interface Types_Ajax_Handler_Interface {

	/**
	 * Types_Ajax_Handler_Interface constructor.
	 *
	 * @param $ajax_manager Types_Ajax instance
	 */
	function __construct( $ajax_manager );


	/**
	 * @param array $arguments Original action arguments.
	 * @return void
	 */
	function process_call( $arguments );
	
}