production/Societes/envoyx/Etats/Pdfentete.php
2026-03-04 01:48:40 +00:00

34 lines
946 B
PHP
Executable File

<?php
require_once('././Fpdf/fpdf_protection.php');
// class Pdfentete extends FPDF
class Pdfentete extends FPDF_Protection
{
// 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('RADAINT 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');
*/
}
}