本文整理匯總了PHP中Grupo::md5_Decrypt方法的典型用法代碼示例。如果您正苦於以下問題:PHP Grupo::md5_Decrypt方法的具體用法?PHP Grupo::md5_Decrypt怎麽用?PHP Grupo::md5_Decrypt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Grupo
的用法示例。
在下文中一共展示了Grupo::md5_Decrypt方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Grupo
</li>
<li>
<a href="cadastro.grupos.php">Grupos</a> <span class="divider">/</span>
</li>
<li class="active">Editar Grupo</li>
</ul>';
//recuperacao do grupo
$oGrupo = new Grupo();
$oMoeda = new Moeda();
$oStatusGrupo = new StatusGrupo();
$tpl->ACAO = "Incluir";
$idMoedaAtual = 0;
$idEstatusAtual = 0;
if (isset($_REQUEST['idGrupo'])) {
$oGrupo->getById($oGrupo->md5_Decrypt($_REQUEST['idGrupo']));
$tpl->nomePacote = $oGrupo->nomePacote;
$tpl->dataEmbarque = $oGrupo->convdata($oGrupo->dataEmbarque, 'mtn');
$tpl->dataChegada = $oGrupo->convdata($oGrupo->dataChegada, 'mtn');
$tpl->valorPacote = $oGrupo->money($oGrupo->valorPacote, 'atb');
$tpl->valorTaxaEmbarque = $oGrupo->money($oGrupo->valorTaxaEmbarque, 'atb');
$tpl->valorAdesao = $oGrupo->money($oGrupo->valorAdesao, 'atb');
$tpl->valorCusto = $oGrupo->money($oGrupo->valorCusto, 'atb');
$tpl->cotacaoCusto = $oGrupo->money($oGrupo->cotacaoCusto, 'atb');
$tpl->ano = $oGrupo->ano;
$idMoedaAtual = $oGrupo->moeda->id;
$idEstatusAtual = $oGrupo->status->id;
//$tpl->possuiPacoteOpcional = $oGrupo->possuiPacoteOpcional;
$tpl->nomePacoteOpcional = $oGrupo->nomePacoteOpcional;
$tpl->valorPacoteOpcional = $oGrupo->money($oGrupo->valorPacoteOpcional, 'atb');
$tpl->valorTaxaEmbarqueOpcional = $oGrupo->money($oGrupo->valorTaxaEmbarqueOpcional, 'atb');