public function newCxn()
 {
     try {
         $model = new Construction();
         $this->data->cxn->entry = 'cxn_' . strtolower(str_replace('cxn_', '', $this->data->cxn->entry));
         $model->setData($this->data->cxn);
         $model->createNew($this->data->cxn);
         $this->renderResponse('ok', 'Construction created.');
     } catch (\Exception $e) {
         $this->renderResponse('error', $e->getMessage());
     }
 }