<?php
require_once('include/MVC/Controller/SugarController.php');
class IframeappController extends SugarController {

  function action_listview() {
    $this->view = 'edit';
  }

  function action_detail() {
    $this->view = 'edit';
  }
}
