web/wp-content/plugins/slideshow-jquery-image-gallery/classes/SlideshowPluginAjax.php
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 11 Dec 2012 12:47:47 -0800
changeset 198 dcf82fd50cc6
parent 194 32102edaa81b
permissions -rw-r--r--
maj logo microsoft. backup sql local.

<?php
/**
 * Class SlideshowAjax is used to register ajax functions
 * before as soon as possible, so ajax functions don't get
 * exceedingly large.
 *
 * @author: Stefan Boonstra
 * @version: 19-05-12
 */
class SlideshowPluginAjax {

	static function init() {
		add_action('wp_ajax_slideshow_slide_inserter_search_query', array('SlideshowPluginSlideInserter', 'printSearchResults'));
		add_action('wp_ajax_slideshow_delete_slide', array('SlideshowPluginSlideInserter', 'deleteSlide'));
	}
}