23 lines
812 B
PHP
Executable File
23 lines
812 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Societeusercentral.php';
|
|
require_once 'Modele/Menuvueutilisateur.php';
|
|
|
|
class ControleurTesterpaiementmobile extends Controleur {
|
|
private $menuvue;
|
|
private $societeusercentral;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->menuvue = new Menuvueutilisateur();
|
|
$this->menuvue->getMenuVue('Testerpaiementmobile');
|
|
$this->societeusercentral = new societeusercentral();
|
|
}
|
|
public function index()
|
|
{
|
|
$codeSociete = $_SESSION['codeSociete'];
|
|
$parammobile = $this->societeusercentral->getSocieteusersPaiementMobile($codeSociete);
|
|
$withdrawmodes = $this->societeusercentral->getWithdrawMode($codeSociete);
|
|
$this->genererVue(array('parammobile' => $parammobile, 'withdrawmodes' => $withdrawmodes));
|
|
}
|
|
} |