Amazon_S3_And_CloudFront::ajax_get_url_preview PHP Method

ajax_get_url_preview() public method

AJAX handler for get_url_preview()
    function ajax_get_url_preview()
    {
        $this->verify_ajax_request();
        $url = $this->get_url_preview();
        $out = array('success' => '1', 'url' => $url);
        $this->end_ajax($out);
    }
Amazon_S3_And_CloudFront