/**
  * Load (if necessary) and return the view.
  */
 public function getView()
 {
     if (!isset($this->view)) {
         $this->view = RPBChessboardHelperLoader::loadView($this->getModel());
     }
     return $this->view;
 }