RTMediaGalleryShortcode::ajax_rtmedia_get_template PHP Method

ajax_rtmedia_get_template() public method

    function ajax_rtmedia_get_template()
    {
        $template = '';
        if (isset($_REQUEST['template'])) {
            $template = sanitize_text_field(wp_unslash($_REQUEST['template']));
        }
        if (!empty($template)) {
            $template_url = RTMediaTemplate::locate_template($template, 'media/', false);
            require_once $template_url;
        }
        die;
    }