本文整理汇总了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');