當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Grupo::clearParts方法代碼示例

本文整理匯總了PHP中Grupo::clearParts方法的典型用法代碼示例。如果您正苦於以下問題:PHP Grupo::clearParts方法的具體用法?PHP Grupo::clearParts怎麽用?PHP Grupo::clearParts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Grupo的用法示例。


在下文中一共展示了Grupo::clearParts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: onSave

 /**
  * method onSave()
  * Executed whenever the user clicks at the save button
  */
 function onSave()
 {
     try {
         $data = $this->form->getData();
         // open a transaction with database 'saciq'
         TTransaction::open('saciq');
         // cria um objeto Grupo
         $object = new Grupo($data->id);
         $object->clearParts();
         $object->nome = $data->nome;
         $object->sigla = $data->sigla;
         if ($data->list2) {
             foreach ($data->list2 as $value) {
                 $object->addFuncionalidade(new Funcionalidade($value));
             }
         }
         //if ($object->programs) {
         //    foreach ($object->programs as $program) {
         //        $object->addFuncionalidade($program);
         //    }
         //}
         $this->form->validate();
         // form validation
         $object->store();
         // stores the object
         $this->form->setData($object);
         // fill the form with the active record data
         $usuario = new Usuario(TSession::getValue('id'));
         $funcionalidades = $usuario->getFuncionalidades();
         $funcionalidades['LoginForm'] = TRUE;
         TSession::setValue('funcionalidades', $funcionalidades);
         TTransaction::close();
         // close the transaction
         new TMessage('info', 'Registro salvo');
         // shows the success message
     } catch (Exception $e) {
         // Em caso de erro
         if ($e->getCode() == 23000) {
             /*$posi = strpos($e->getMessage(), 'Duplicate entry ') + strlen('Duplicate entry ') + 1;
                             $posf = strpos($e->getMessage(), '\' for key');
                             $str = substr($e->getMessage(), $posi, 3);
             
                             $idGrupo = substr($str, 0, strpos($str, '-'));
                             $grupo = new Grupo($idGrupo);
                             $idFuncionalidade = substr($str, strpos($str, '-') + 1);
                             $funcionalidade = new Funcionalidade($idFuncionalidade);
                             new TMessage('error', '<b>Registro duplicado</b><br>A funcionalidade "' . $funcionalidade->nome . '" já foi registrada no grupo ' . $grupo->nome);
                              */
             new TMessage('error', '<b>Registro duplicado</b><br>Verifique se a sigla já não foi registrada em outro grupo');
         } else {
             if ($e->getCode() == 0) {
                 new TMessage('error', '<b>Error</b> <br>' . $e->getMessage());
             } else {
                 new TMessage('error', '<b>Error Desconhecido</b> <br>Código: ' . $e->getCode());
             }
         }
         // desfazer todas as operacoes pendentes
         TTransaction::rollback();
     }
 }
開發者ID:andermall,項目名稱:tcc,代碼行數:64,代碼來源:GrupoForm.class.php


注:本文中的Grupo::clearParts方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。