/**
  * Building of a view content including a view file passing it parameters
  */
 public function render($view_file, array $params = array())
 {
     $this->content = Helper::renderView($view_file, array_merge($this->getDefaultViewParams(), $params));
 }