31 lines
875 B
PHP
31 lines
875 B
PHP
<?php
|
|
require_once '././Fpdf/fpdf.php';
|
|
class Pdfentete extends FPDF
|
|
{
|
|
// En-tête
|
|
function Header()
|
|
{
|
|
// Logo
|
|
|
|
//$this->Image('images/logo_etat.png',0,20,35,0,'','http://radiant.co.rw');
|
|
|
|
// $this->Image('Societes/intersante/images/logo_etat.png',0,20,35,0,'','http://radiant.co.rw');
|
|
|
|
$this->Image('Societes/'.$_SESSION['codeSociete'].'/images/logo_etat.png',25,15,15,0,'','http://radiant.co.rw');
|
|
|
|
$this->SetFont('Arial','BU',15);
|
|
}
|
|
|
|
// Pied de page
|
|
function Footer()
|
|
{
|
|
$this->SetY(-30);
|
|
$this->SetFont('Arial','',8);
|
|
|
|
$this->Cell(0,5,convertirc('RADIANT INSURANCE, SARL au capital de 3.000.000 CFA, Régie par le code CIMA'),0,1,'C');
|
|
$this->Cell(0,5,convertirc('KIGALI 21 BP 4946 ABJ 21, Tel 06 80 23 39,Fax 06 80 23 39'),0,1,'C');
|
|
$this->Cell(0,5,convertirc('RC N° CI- ABJ- CC N°?'),0,1,'C');
|
|
|
|
}
|
|
}
|