83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
|
|
<?php
|
|
|
|
// MSIN-3880 nouveau tableau
|
|
include_once("php/inc_fx_modifierinscriptions.php");
|
|
include_once("php/inc_fx_memberships.php");
|
|
include_once("php/inc_fx_promoteur.php");
|
|
|
|
require_once('superadm/php/inc_manager.php');
|
|
|
|
|
|
global $objDatabase, $vDomaine, $strLangue,$objDatabaseProd;
|
|
$intEveId = 0;
|
|
$blnDon = false;
|
|
|
|
if ($strLangue == 'fr') {
|
|
$strPage = '/compte';
|
|
} else {
|
|
$strPage = '/account';
|
|
}
|
|
if($strLangue == 'fr')
|
|
$strCode = 'compte/';
|
|
else
|
|
$strCode = 'account/';
|
|
|
|
$strBibCode = $strCode;
|
|
$strCode .= $_GET['code'];
|
|
if (isset($_GET['promoteur_eve_id'])) {
|
|
$intEveId = base64_decode(urldecode($_GET['promoteur_eve_id']));
|
|
$arrEvenement = fxGetEvenementsId($intEveId);
|
|
//$tabEvenement['general'] = $arrEvenement;
|
|
}
|
|
?>
|
|
<a class="btn btn-primary rounded-pill" id="link_back" href="<?php echo $vDomaine . $strPage . "/inc_tableau_promoteur?promoteur_eve_id=" . urlencode(base64_encode($intEveId)); ?>">
|
|
<i class="fa fa-chevron-left mr-2" aria-hidden="true"></i>
|
|
<?php afficheTexte('promoteur_back'); ?>
|
|
</a>
|
|
<br><br>
|
|
<style>
|
|
a {
|
|
color: #f15b0a;
|
|
}
|
|
|
|
a:hover {
|
|
color: #000000 ;
|
|
}
|
|
</style>
|
|
<?php
|
|
|
|
|
|
|
|
if ($intEveId != 0) {
|
|
$arrEvenement = fxGetEvenementsId($intEveId);
|
|
$tabRapports = fxGetMenussuperadm(0, 0, 1, $intEveId);
|
|
|
|
$intmenu=urlencode(base64_encode(246));
|
|
// vérifier la clause ORDER BY
|
|
$strOrder='';
|
|
if (isset($_GET['o'])) {
|
|
$strOrder = $objDatabase->fxEscape(trim($_GET['o']));
|
|
$tabFields = fxGetFormFields2('sort', $intmenu, $strOrder);
|
|
$strOrder = $tabFields[1]['alias'] . $tabFields[1]['name'];
|
|
|
|
}
|
|
$tabResults = fxGetListData($intmenu, $strOrder, '', '', 1, $strLangue, $intEveId, 1);
|
|
$strhomeclient="";
|
|
|
|
fxShowList($tabResults,$intmenu, '', '', '',1, $strLangue,$intEveId);
|
|
|
|
// MSIN-3924
|
|
?>
|
|
|
|
<a class="btn btn-primary rounded-pill" id="link_back" href="<?php echo $vDomaine . $strPage . "/inc_tableau_promoteur?promoteur_eve_id=" . urlencode(base64_encode($intEveId)); ?>">
|
|
<i class="fa fa-chevron-left mr-2" aria-hidden="true"></i>
|
|
<?php afficheTexte('promoteur_back'); ?>
|
|
</a>
|
|
<?php
|
|
} else {
|
|
if ($strLangue == 'fr')
|
|
echo "Une erreur quelconque est survenue.";
|
|
else
|
|
echo "A generic error occurred.";
|
|
}
|