Joomla MVC let us use different views for our extensions/templates
I can use this
JRequest::setVar('tmpl','component');
in my index.php file to reroute the html rendering from component.php instead index.php
and it works fine , but i want to do something else , i want to override rendering by using file in a different folder not template/template_name/ folder but for example
plugins/myplugin/myview.php , does anyone know the way?
kinda this
JRequest::setVar('plugins/myplugin/','myview');