StolenThunda
1/24/2019 - 6:57 PM

https://expressionengine.com/forums/topic/160486/views-unable-to-load-the-requested-file#773142

function dm_view($view, $path, data=array() ) {

    $CI =& get_instance();

    $tp = $CI->load->_ci_view_path;
    $CI->load->_ci_view_path = $path;

    $out = $CI->load->view($view,$data,true);

    $CI->load->_ci_view_path = $tp;
    return $out;
}