28 lines
856 B
PHP
28 lines
856 B
PHP
|
<?php
|
||
|
require_once ('rapport/CompanyIdentitie.Class.php');
|
||
|
require_once ('rapport/CompanyActivite.Class.php');
|
||
|
require_once ('rapport/CompanyLocalisation.Class.php');
|
||
|
|
||
|
Class RapportFormat
|
||
|
{
|
||
|
public $CompanyIdentitie;
|
||
|
public $CompanyActivite;
|
||
|
public $CompanyLocalisation;
|
||
|
|
||
|
function __construct(){}
|
||
|
|
||
|
public function _CompanyIdentitie($labelConfig, $configNace) {
|
||
|
$this->CompanyIdentitie = new CompanyIdentitie($labelConfig, $configNace);
|
||
|
}
|
||
|
|
||
|
public function _CompanyActivite() {
|
||
|
echo '<h2>'.SelectTrueLabel($labelConfig['titreRapport'], 'CompanyActivite').'</h2>';
|
||
|
$this->CompanyActivite = new CompanyActivite();
|
||
|
}
|
||
|
|
||
|
public function _CompanyLocalisation() {
|
||
|
echo '<h2>'.SelectTrueLabel($labelConfig['titreRapport'], 'CompanyLocalisation').'</h2>';
|
||
|
$this->CompanyLocalisation = new CompanyLocalisation();
|
||
|
}
|
||
|
}
|
||
|
?>
|