I am using multiple mvc (https://github.com/phalcon/mvc/tree/master/multiple) and I need load view of the frontend in the backend.
Is there a way to call the controller of a module in another?
Example:
    <?php
    namespace Multiple\Backend\Controllers;
    class index(){
    public function indexAction(){
        $this->seVars(array('editor' => true));
        $this->view->render('frontendController/frontendAction');
    }