Deprecated : Constant E_STRICT is deprecated in /home/normanv/www/annuairepro/vendor/symfony/error-handler/ErrorHandler.php on line 58
Deprecated : Constant E_STRICT is deprecated in /home/normanv/www/annuairepro/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler
<?php
namespace App\Service ;
use App\Entity\User ;
use Fpdf\Fpdf ;
class GenerePdf
{
public $ligne_h ;
public function __construct ()
{
$this -> ligne_h = 5 ;
}
public function en_tete ( $pdf , $user , $structure_donnees , $type ){
$pdf -> SetFont ( 'Arial' , 'B' , 14 );
$pdf -> SetFillColor ( 50 , 191 , 240 );
$pdf -> Rect ( 10 , 10 , 190 , 19 , "F" );
$pdf -> setTextColor ( 255 , 255 , 255 );
$pdf -> SetXY ( 40 , 15 );
$pdf -> MultiCell ( 0 , 5 , mb_convert_encoding ( "Annuaire des productions et des prestataires" , "Windows-1252" , "UTF-8" ), 0 , "C" );
$pdf -> SetXY ( 40 , 22 );
$pdf -> MultiCell ( 0 , 5 , mb_convert_encoding ( $type , "Windows-1252" , "UTF-8" ), 0 , "C" );
$pdf -> Image ( 'images/ni-logo-72.png' , 15 , 12 , - 200 );
$pdf -> ln ( 10 );
$pdf -> setTextColor ( 255 , 255 , 255 );
$pdf -> SetFillColor ( 22 , 98 , 141 );
$pdf -> Rect ( 10 , 34 , 190 , 10 , "F" );
$pdf -> MultiCell ( 0 , 5 , mb_convert_encoding ( $structure_donnees -> getNom (), "Windows-1252" , "UTF-8" ), 0 , "C" );
$pdf -> ln ( 4 );
$curseurY = $pdf -> GetY ();
$pdf -> Image ( 'images/fond_pdf_gauche.png' , 10 , 44 , 189.7 , 45 );
$pdf -> SetXY ( 12 , $curseurY );
$pdf -> SetFont ( 'Arial' , 'BU' , 10 );
$pdf -> SetX ( 12 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $structure_donnees -> getAdresseType (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 10 );
$pdf -> SetX ( 12 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $structure_donnees -> getAdresse (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 12 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $structure_donnees -> getCodePostal (). ' ' . $structure_donnees -> getVille (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 12 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $structure_donnees -> getTelephoneStandard (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 12 );
if($user -> getType () == "structure" ) {
if ($structure_donnees -> getFormeJuridique ()) {
$pdf -> SetX ( 12 );
$pdf -> SetFont ( 'Arial' , 'BU' , 10 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( "Forme juridique" , "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 12 );
$pdf -> SetFont ( 'Arial' , '' , 10 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $structure_donnees -> getFormeJuridique (), "Windows-1252" , "UTF-8" ), 0 , "L" );
}
if ($structure_donnees -> getDateCreation ()) {
$pdf -> SetX ( 12 );
$pdf -> SetFont ( 'Arial' , 'BU' , 10 );
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( "Création de la structure" , "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 12 );
$pdf -> SetFont ( 'Arial' , '' , 10 );
$pdf -> MultiCell ( 75 , 5 , date_format ( $structure_donnees -> getDateCreation (), 'd/m/Y' ), 0 , "L" );
}
}
$pdf -> SetXY ( 90 , $curseurY );
$pdf -> SetFont ( 'Arial' , 'BU' , 10 );
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( "Contact" , "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 10 );
$pdf -> SetX ( 90 );
if($structure_donnees -> getReferent () != "dirigeant" && count ( $structure_donnees -> getContacts ()) > 0 ){
foreach ($structure_donnees -> getContacts () as $contact ){
if($contact -> getReferent () == true ){
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $contact -> getPrenom (). ' ' . $contact -> getNom (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $contact -> getFonction (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
if(!empty($contact -> getTelephoneFixe ())) $pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $contact -> getTelephoneFixe (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
if(!empty($contact -> getTelephoneMobile ())) $pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $contact -> getTelephoneMobile (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $contact -> getMail (), "Windows-1252" , "UTF-8" ), 0 , "L" );
}
}
}else{
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $structure_donnees -> getDirigeantPrenom (). ' ' . $structure_donnees -> getDirigeantNom (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
if(!empty($structure_donnees -> getDirigeantTelephoneFixe ())) $pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $structure_donnees -> getDirigeantTelephoneFixe (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
if(!empty($structure_donnees -> getDirigeantTelephoneMobile ())) $pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $structure_donnees -> getDirigeantTelephoneMobile (), "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 90 );
$pdf -> MultiCell ( 65 , 5 , mb_convert_encoding ( $structure_donnees -> getDirigeantMail (), "Windows-1252" , "UTF-8" ), 0 , "L" );
}
$pdf -> SetXY ( 155 , $curseurY );
if($structure_donnees -> getSite () && substr ( $structure_donnees -> getSite (), 0 , 4 ) != "http" ){
$site = "http://" . $structure_donnees -> getSite ();
}else{
$site = $structure_donnees -> getSite ();
}
$pdf -> MultiCell ( 75 , 5 , mb_convert_encoding ( $site , "Windows-1252" , "UTF-8" ), 0 , "L" );
if (count ( $structure_donnees -> getReseauxSociaux ()) > 0 ) {
$pdf -> SetX ( 155 );
$pdf -> SetFont ( 'Arial' , 'BU' , 10 );
$pdf -> MultiCell ( 55 , 5 , mb_convert_encoding ( "Réseaux sociaux" , "Windows-1252" , "UTF-8" ), 0 , "L" );
$pdf -> SetX ( 156 );
$pdf -> SetFont ( 'Arial' , '' , 10 );
$curseurY = $pdf -> GetY ();
$curseurX = $pdf -> GetX ();
foreach ($structure_donnees -> getReseauxSociaux () as $reseau ){
if($reseau -> getNom () == "Facebook" ){
$pdf -> Image ( 'images/facebook.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Flickr" ){
$pdf -> Image ( 'images/flickr.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Instagram" ){
$pdf -> Image ( 'images/instagram.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "LinkedIn" ){
$pdf -> Image ( 'images/linkdin.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Tumblr" ){
$pdf -> Image ( 'images/tumblr.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Twitter" ){
$pdf -> Image ( 'images/twitter.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Vimeo" ){
$pdf -> Image ( 'images/vimeo.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}elseif($reseau -> getNom () == "Youtube" ){
$pdf -> Image ( 'images/youtube.png' , $curseurX , $curseurY , 4 , 4 , "PNG" , $reseau -> getUrl ());
}
$curseurX = $curseurX + 5 ;
}
}
}
/**
* @return int
*/
public function getLigneH (): int
{
return $this -> ligne_h ;
}
public function info_complementaire ( $pdf , $presta_donnees , $curseur_partie_droite ){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "informations complémentaires" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if ($presta_donnees -> getRayonCalvados () ||
$presta_donnees -> getRayonEure () ||
$presta_donnees -> getRayonManche () ||
$presta_donnees -> getRayonOrne () ||
$presta_donnees -> getRayonSeineMaritime () ||
$presta_donnees -> getRayonHorsNormandie ()) {
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Rayon d'intervention : " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
if ($presta_donnees -> getRayonCalvados () ||
$presta_donnees -> getRayonEure () ||
$presta_donnees -> getRayonManche () ||
$presta_donnees -> getRayonOrne () ||
$presta_donnees -> getRayonSeineMaritime ()) {
$rayon_normandie_dpt = "" ;
if ($presta_donnees -> getRayonCalvados ()) $rayon_normandie_dpt = "Calvados, " ;
if ($presta_donnees -> getRayonEure ()) $rayon_normandie_dpt .= "Eure, " ;
if ($presta_donnees -> getRayonManche ()) $rayon_normandie_dpt .= "Manche, " ;
if ($presta_donnees -> getRayonOrne ()) $rayon_normandie_dpt .= "Orne, " ;
if ($presta_donnees -> getRayonSeineMaritime ()) $rayon_normandie_dpt .= "Seine-Maritime, " ;
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "En Normandie : " . substr ( $rayon_normandie_dpt , 0 , - 2 ), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Hors Normandie : " . $presta_donnees -> getRayonHorsNormandie (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
$pdf -> ln ( 2 );
}
if ($presta_donnees -> getLangues () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Langue(s) pratiquée(s) : " , "Windows-1252" , "UTF-8" ), 0 , 0 , "J" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $presta_donnees -> getLangues (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
public function pied_page ( $pdf ){
$pdf -> SetY (- 10 );
$pdf -> SetTextColor ( 210 , 210 , 210 );
$pdf -> SetFont ( 'Arial' , 'I' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "PDF édité le " , "Windows-1252" , "UTF-8" ). date ( "d/m/Y" ), 0 , 0 , "C" );
}
public function getPdf ( User $user , $type )
{
$structures = $user -> getStructures ();
foreach ($structures as $structure ){
$structure_donnees = $structure ;
}
$pdf = new Fpdf ();
$curseur_partie_droite = 10 ;
if($type == 'prestamoyenstech' || $type == 'prestatairetech' ){
$type = "Prestataire de moyens techniques" ;
/* Prestataires de moyens techniques */
if ( count ( $user -> getPrestatairesTechniques ()) > 0 ) {
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
foreach ($user -> getPrestatairesTechniques () as $prestatechnique ) {
$prestatechnique_donnees = $prestatechnique ;
}
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestatechnique_donnees -> getPresentation (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
if ($prestatechnique_donnees -> getActiviteSecond ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "activité secondaire" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestatechnique_donnees -> getActiviteSecond (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if ($prestatechnique_donnees -> getServiceVente () || $prestatechnique_donnees -> getServiceLocAvecOp () || $prestatechnique_donnees -> getServiceLocSansOp () || $prestatechnique_donnees -> getServiceSav ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Type(s) de service(s) :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if ($prestatechnique_donnees -> getServiceVente ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vente" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getServiceLocSansOp ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location sans opérateur" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getServiceLocAvecOp ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location avec opérateur" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getServiceSav ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "SAV" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
}
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 5 , 5 , mb_convert_encoding ( mb_strtoupper ( "matériel et services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if ($prestatechnique_donnees -> getTournageCameraVideo () ||
$prestatechnique_donnees -> getTournageCameraCinema () ||
$prestatechnique_donnees -> getTournageCameraCommentaires () != '' ||
$prestatechnique_donnees -> getTournageEquipementSpeVideo () ||
$prestatechnique_donnees -> getTournageEquipementSpeCinema () ||
$prestatechnique_donnees -> getTournageEquipementSpeCommentaires () != '' ||
$prestatechnique_donnees -> getTournageImageAutreVideo () ||
$prestatechnique_donnees -> getTournageImageAutreCinema () ||
$prestatechnique_donnees -> getTournageImageAutreDescriptif () != '' ||
$prestatechnique_donnees -> getTournageLumiereVideo () ||
$prestatechnique_donnees -> getTournageLumiereCinema () ||
$prestatechnique_donnees -> getTournageLumiereCommentaires () != '' ||
$prestatechnique_donnees -> getTournageMachineVideo () ||
$prestatechnique_donnees -> getTournageMachineCinema () ||
$prestatechnique_donnees -> getTournageMachineCommentaires () != '' ||
$prestatechnique_donnees -> getTournageSonVideo () ||
$prestatechnique_donnees -> getTournageSonCinema () ||
$prestatechnique_donnees -> getTournageSonCommentaires () != '' ||
$prestatechnique_donnees -> getTournageStudioSimpleSurface () != '' ||
$prestatechnique_donnees -> getTournageStudioSimpleCommentaires () != '' ||
$prestatechnique_donnees -> getTournageStudioVirtuelSurface () != '' ||
$prestatechnique_donnees -> getTournageStudioVirtuelCommentaires () != '' ||
$prestatechnique_donnees -> getTournagePlateauTvSurface () != '' ||
$prestatechnique_donnees -> getTournagePlateauTvCommentaires () != '' ||
$prestatechnique_donnees -> getTournageLocauxAutreSurface () != '' ||
$prestatechnique_donnees -> getTournageLocauxAutreDescriptif () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 5 , 5 , mb_convert_encoding ( "Tournage :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
if ($prestatechnique_donnees -> getTournageCameraVideo () || $prestatechnique_donnees -> getTournageCameraCinema ()) {
$type_camera = "" ;
if ($prestatechnique_donnees -> getTournageCameraVideo ()) $type_camera = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageCameraCinema ()) $type_camera .= "le cinéma et " ;
$type_camera = substr ( $type_camera , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Caméra pour " . $type_camera , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageEquipementSpeVideo () || $prestatechnique_donnees -> getTournageEquipementSpeCinema ()) {
$type_equipement = "" ;
if ($prestatechnique_donnees -> getTournageEquipementSpeVideo ()) $type_equipement = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageEquipementSpeCinema ()) $type_equipement .= "le cinéma et " ;
$type_equipement = substr ( $type_equipement , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Equipement spécialisé pour " . $type_equipement , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageImageAutreVideo () || $prestatechnique_donnees -> getTournageImageAutreCinema ()) {
$type_image_autre = "" ;
if ($prestatechnique_donnees -> getTournageImageAutreVideo ()) $type_image_autre = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageImageAutreCinema ()) $type_image_autre .= "le cinéma et " ;
$type_image_autre = substr ( $type_image_autre , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Autre pour " . $type_image_autre , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageLumiereVideo () || $prestatechnique_donnees -> getTournageLumiereCinema ()) {
$type_lumiere = "" ;
if ($prestatechnique_donnees -> getTournageLumiereVideo ()) $type_lumiere = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageLumiereCinema ()) $type_lumiere .= "le cinéma et " ;
$type_lumiere = substr ( $type_lumiere , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Lumière et accessoires pour " . $type_lumiere , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageMachineVideo () || $prestatechnique_donnees -> getTournageMachineCinema ()) {
$type_machine = "" ;
if ($prestatechnique_donnees -> getTournageMachineVideo ()) $type_machine = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageMachineCinema ()) $type_machine .= "le cinéma et " ;
$type_machine = substr ( $type_machine , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Machinerie et accessoires pour " . $type_machine , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageSonVideo () || $prestatechnique_donnees -> getTournageSonCinema ()) {
$type_son = "" ;
if ($prestatechnique_donnees -> getTournageSonVideo ()) $type_son = "la vidéo et " ;
if ($prestatechnique_donnees -> getTournageSonCinema ()) $type_son .= "le cinéma et " ;
$type_son = substr ( $type_son , 0 , - 4 );
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Son et accessoires pour " . $type_son , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageStudioSimpleSurface () != '' || $prestatechnique_donnees -> getTournageStudioSimpleCommentaires () != '' ) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$surface_studio_simple = ( $prestatechnique_donnees -> getTournageStudioSimpleSurface () != '' ) ? $prestatechnique_donnees -> getTournageStudioSimpleSurface () . "m²" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio simple $surface_studio_simple " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageStudioVirtuelSurface () != '' || $prestatechnique_donnees -> getTournageStudioVirtuelCommentaires () != '' ) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$surface_studio_virtuel = ( $prestatechnique_donnees -> getTournageStudioVirtuelSurface () != '' ) ? $prestatechnique_donnees -> getTournageStudioVirtuelSurface () . "m²" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio virtuel $surface_studio_virtuel " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournagePlateauTvSurface () != '' || $prestatechnique_donnees -> getTournagePlateauTvCommentaires () != '' ) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$surface_plateau_tv = ( $prestatechnique_donnees -> getTournagePlateauTvSurface () != '' ) ? $prestatechnique_donnees -> getTournagePlateauTvSurface () . "m²" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio virtuel $surface_plateau_tv " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getTournageLocauxAutreSurface () != '' || $prestatechnique_donnees -> getTournageLocauxAutreDescriptif () != '' ) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$surface_locaux_autre = ( $prestatechnique_donnees -> getTournageLocauxAutreSurface () != '' ) ? $prestatechnique_donnees -> getTournageLocauxAutreSurface () . "m²" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio virtuel $surface_locaux_autre " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
$pdf -> ln ( 5 );
if ($prestatechnique_donnees -> getPostprodImageMontage () ||
$prestatechnique_donnees -> getPostprodImageMontageLocaux () ||
$prestatechnique_donnees -> getPostprodImageMontageDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodImageTrucage () ||
$prestatechnique_donnees -> getPostprodImageTrucageLocaux () ||
$prestatechnique_donnees -> getPostprodImageTrucageDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodImageTitrage () ||
$prestatechnique_donnees -> getPostprodImageTitrageLocaux () ||
$prestatechnique_donnees -> getPostprodImageTitrageDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodImageAnim () ||
$prestatechnique_donnees -> getPostprodImageAnimLocaux () ||
$prestatechnique_donnees -> getPostprodImageAnimDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodImageEtalon () ||
$prestatechnique_donnees -> getPostprodImageEtalonLocaux () ||
$prestatechnique_donnees -> getPostprodImageEtalonDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodSonMusique () ||
$prestatechnique_donnees -> getPostprodSonMusiqueLocaux () ||
$prestatechnique_donnees -> getPostprodSonMusiqueDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodSonVoixoff () ||
$prestatechnique_donnees -> getPostprodSonVoixoffLocaux () ||
$prestatechnique_donnees -> getPostprodSonVoixoffDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodSonBruitage () ||
$prestatechnique_donnees -> getPostprodSonBruitageLocaux () ||
$prestatechnique_donnees -> getPostprodSonBruitageDescriptif () != '' ||
$prestatechnique_donnees -> getPostprodSonMixage () ||
$prestatechnique_donnees -> getPostprodSonMixageLocaux () ||
$prestatechnique_donnees -> getPostprodSonMixageDescriptif () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 5 , 5 , mb_convert_encoding ( "Post-production :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
if ($prestatechnique_donnees -> getPostprodImageMontage () || $prestatechnique_donnees -> getPostprodImageMontageLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_image_montage = ( $prestatechnique_donnees -> getPostprodImageMontageLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Station de montage $locaux_image_montage " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodImageTrucage () || $prestatechnique_donnees -> getPostprodImageTrucageLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_image_trucage = ( $prestatechnique_donnees -> getPostprodImageTrucageLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Trucage & effets spéciaux $locaux_image_trucage " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodImageTitrage () || $prestatechnique_donnees -> getPostprodImageTitrageLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_image_titrage = ( $prestatechnique_donnees -> getPostprodImageMontageLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Titrage $locaux_image_titrage " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodImageAnim () || $prestatechnique_donnees -> getPostprodImageAnimLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_image_anim = ( $prestatechnique_donnees -> getPostprodImageAnimLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Animation/motion design $locaux_image_anim " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodImageEtalon () || $prestatechnique_donnees -> getPostprodImageEtalonLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_image_etalon = ( $prestatechnique_donnees -> getPostprodImageEtalonLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Station d'étalonnage $locaux_image_etalon " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodSonMusique () || $prestatechnique_donnees -> getPostprodSonMusiqueLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_son_musique = ( $prestatechnique_donnees -> getPostprodSonMusiqueLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio d'enregistrement musique $locaux_son_musique " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodSonVoixoff () || $prestatechnique_donnees -> getPostprodSonVoixoffLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_son_voixoff = ( $prestatechnique_donnees -> getPostprodSonVoixoffLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio d'enregistrement voix-off/doublage $locaux_son_voixoff " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodSonBruitage () || $prestatechnique_donnees -> getPostprodSonBruitageLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_son_bruitage = ( $prestatechnique_donnees -> getPostprodSonBruitageLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio d'enregistrement de bruitage $locaux_son_bruitage " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getPostprodSonMixage () || $prestatechnique_donnees -> getPostprodSonMixageLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_son_mixage = ( $prestatechnique_donnees -> getPostprodSonMixageLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Studio de mixage $locaux_son_mixage " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
}
if ($prestatechnique_donnees -> getDiffTechLabo () ||
$prestatechnique_donnees -> getDiffTechMaster () ||
$prestatechnique_donnees -> getDiffTechAuthor () ||
$prestatechnique_donnees -> getDiffOutilsEcran () ||
$prestatechnique_donnees -> getDiffOutilsEcranLocaux () ||
$prestatechnique_donnees -> getDiffOutilsEcranLocaux () != '' ||
$prestatechnique_donnees -> getDiffOutilsCasque () ||
$prestatechnique_donnees -> getDiffOutilsCasqueCommentaires () != '' ||
$prestatechnique_donnees -> getDiffOutilsAutre () ||
$prestatechnique_donnees -> getDiffOutilsAutreDescriptif () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 5 , 5 , mb_convert_encoding ( "Diffusion :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
if ($prestatechnique_donnees -> getDiffTechLabo ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Laboratoire cinéma" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getDiffTechMaster ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Mastering et encodage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getDiffTechAuthor ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Authoring et duplication" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getDiffOutilsEcran () || $prestatechnique_donnees -> getDiffOutilsEcranLocaux ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$locaux_outils_ecran = ( $prestatechnique_donnees -> getDiffOutilsEcranLocaux () != '' ) ? "(locaux à disposition)" : '' ;
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Ecran & projection $locaux_outils_ecran " , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getDiffOutilsCasque ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Casque de réalité virtuelle" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prestatechnique_donnees -> getDiffOutilsAutre ()) {
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Autre équipement" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
}
if (count ( $prestatechnique_donnees -> getPrestataireTechniqueExperiences ()) > 0 ){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestatechnique_donnees -> getPrestataireTechniqueExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if(
$prestatechnique_donnees -> getLangues () != '' ||
$prestatechnique_donnees -> getRayonCalvados () ||
$prestatechnique_donnees -> getRayonEure () ||
$prestatechnique_donnees -> getRayonManche () ||
$prestatechnique_donnees -> getRayonOrne () ||
$prestatechnique_donnees -> getRayonSeineMaritime () ||
$prestatechnique_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestatechnique_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestatechnique_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
}elseif($type == 'prestaservices' || $type == 'prestataireservices' ){
$type = "Prestataire de services aux tournages" ;
/* Prestataires de services aux tournages */
if ( count ( $user -> getPrestatairesLogistiques ()) > 0 ) {
foreach ($user -> getPrestatairesLogistiques () as $prestaservices ) {
$prestaservices_donnees = $prestaservices ;
/* Cantine et catering */
if( $prestaservices_donnees -> getCatering ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Cantine et catering" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCateringDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "spécialité(s) culinaire(s) ou approche spécifique" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCateringSpecialiteCulinaire (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Capacité de couverts par service" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCateringCapaciteCouverts (), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Infrastructure et capacité d’accueil" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCateringInfrastructure (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getCateringExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getCateringExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getCateringExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCateringExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Costume */
if( $prestaservices_donnees -> getCostume ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Costume : atelier et stockage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCostumeDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "costumes et accessoires d’habillage en possession" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCostumeQuantite (), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getCostumeLocationCostume ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location de costumes/accessoires d’habillage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeCreation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création de costumes/accessoires d’habillage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeRetouche ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Retouches de costumes/accessoires d’habillage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeLieuFabrication ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Mise à disposition d’un lieu de fabrication" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeLieuHabillage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Mise à disposition d’un lieu d’habillage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeLocationMaterielConception ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location matériel de conception/retouche" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeLocationMaterielEntretien ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location matériel d’entretien" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getCostumeLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getCostumeExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getCostumeExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getCostumeExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getCostumeExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Accessoire */
if( $prestaservices_donnees -> getAccessoire ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Décoration : accessoire de collection" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getAccessoireDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "éléments de décors et/ou d’accessoires en possession" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getAccessoireQuantite (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getAccessoireLocation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location d’accessoires de collection" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getAccessoireLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Descriptif détaillé des accessoires" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 43 , 5 , "Type" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 7 , 5 , "Nbr" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 70 , 5 , mb_convert_encoding ( "Caractéristiques" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach($prestaservices_donnees -> getAccessoireListes () as $liste_accessoires ){
$pdf -> SetX ( $curseur_partie_droite );
$type_liste_accessoires = mb_convert_encoding ( $liste_accessoires -> getType (), "Windows-1252" , "UTF-8" );
$type_liste_accessoires = ( strlen ( $type_liste_accessoires ) <= 27 ) ? $type_liste_accessoires : substr ( $type_liste_accessoires , 0 , 27 ). "..." ;
$pdf -> Cell ( 43 , 5 , $type_liste_accessoires , 1 , 0 , "L" );
$pdf -> Cell ( 7 , 5 , mb_convert_encoding ( $liste_accessoires -> getNombre (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( $liste_accessoires -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$caracteristiques_liste_accessoires = mb_convert_encoding ( $liste_accessoires -> getCaracteristiques (), "Windows-1252" , "UTF-8" );
$caracteristiques_liste_accessoires = ( strlen ( $caracteristiques_liste_accessoires ) <= 48 ) ? $caracteristiques_liste_accessoires : substr ( $caracteristiques_liste_accessoires , 0 , 48 ). "..." ;
$pdf -> Cell ( 70 , 5 , $caracteristiques_liste_accessoires , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getAccessoireExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getAccessoireExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getAccessoireExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getAccessoireExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Decor */
if( $prestaservices_donnees -> getDecor ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Décoration : atelier et stockage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDecorDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "éléments de décors et/ou d’accessoires en possession" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDecorQuantite (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getDecorCreationDecors () ||
$prestaservices_donnees -> getDecorConceptionDecors () ||
$prestaservices_donnees -> getDecorModelisationDecors () ||
$prestaservices_donnees -> getDecorAtelierFabricationDecors () ||
$prestaservices_donnees -> getDecorCreationMoule () ||
$prestaservices_donnees -> getDecorDecoupe () ||
$prestaservices_donnees -> getDecorProjectionResine () ||
$prestaservices_donnees -> getDecorCreationStructure () ||
$prestaservices_donnees -> getDecorMisePeinture ()
){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création d’éléments de décors ou d'accessoires" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
if($prestaservices_donnees -> getDecorConceptionDecors ()){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Conception" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorModelisationDecors ()){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Modélisation" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorAtelierFabricationDecors () ||
$prestaservices_donnees -> getDecorCreationMoule () ||
$prestaservices_donnees -> getDecorDecoupe () ||
$prestaservices_donnees -> getDecorProjectionResine () ||
$prestaservices_donnees -> getDecorCreationStructure () ||
$prestaservices_donnees -> getDecorMisePeinture ()
){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Atelier de fabrication" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
if($prestaservices_donnees -> getDecorCreationMoule ()){
$pdf -> SetX ( $curseur_partie_droite + 16 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "- " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création de moules et prototypes" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorDecoupe ()){
$pdf -> SetX ( $curseur_partie_droite + 16 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "- " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Découpe et/ou usinage de polystyrène, mousse PU, bois, pvc,..." , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorProjectionResine ()){
$pdf -> SetX ( $curseur_partie_droite + 16 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "- " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Projection de résine et/ou stratification" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorCreationStructure ()){
$pdf -> SetX ( $curseur_partie_droite + 16 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "- " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création de structures bois ou métalliques" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorMisePeinture ()){
$pdf -> SetX ( $curseur_partie_droite + 16 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "- " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Mise en peinture et/ou vernis" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
}
$pdf -> ln ( 1 );
if($prestaservices_donnees -> getDecorCreationAccessoire () ||
$prestaservices_donnees -> getDecorAccessoireConception () ||
$prestaservices_donnees -> getDecorAccessoireModelisation () ||
$prestaservices_donnees -> getDecorAccessoireAtelier ()
){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création d’accessoires de décors" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
if($prestaservices_donnees -> getDecorAccessoireConception ()){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Conception" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorAccessoireModelisation ()){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Modélisation" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorAccessoireAtelier ()){
$pdf -> SetX ( $curseur_partie_droite + 8 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 2 , 4 , "o " , 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Atelier de fabrication" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
if($prestaservices_donnees -> getDecorLocationDecors ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location d’éléments de décors ou d'accessoires" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDecorLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getDecorExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getDecorExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getDecorExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDecorExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Dresseur */
if( $prestaservices_donnees -> getDresseur ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Dressage animalier" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDresseurDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getDresseurAnimal ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Dresseur animal" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDresseurConseiller ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Conseiller mise en scène" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDresseurCascade ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Animaux pratiquant la cascade" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Liste d'animaux" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 40 , 5 , "Type d'animal" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 7 , 5 , "Nbr" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 84 , 5 , mb_convert_encoding ( "Commentaire" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach($prestaservices_donnees -> getDresseurListes () as $liste_animaux ){
$pdf -> SetX ( $curseur_partie_droite );
$type_liste_animaux = mb_convert_encoding ( $liste_animaux -> getType (), "Windows-1252" , "UTF-8" );
$type_liste_animaux = ( strlen ( $type_liste_animaux ) <= 26 ) ? $type_liste_animaux : substr ( $type_liste_animaux , 0 , 26 ). "..." ;
$pdf -> Cell ( 40 , 5 , $type_liste_animaux , 1 , 0 , "L" );
$pdf -> Cell ( 7 , 5 , mb_convert_encoding ( $liste_animaux -> getNombre (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$commentaire_liste_animaux = mb_convert_encoding ( $liste_animaux -> getCommentaire (), "Windows-1252" , "UTF-8" );
$commentaire_liste_animaux = ( strlen ( $commentaire_liste_animaux ) <= 60 ) ? $commentaire_liste_animaux : substr ( $commentaire_liste_animaux , 0 , 60 ). "..." ;
$pdf -> Cell ( 84 , 5 , $commentaire_liste_animaux , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getDresseurExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getDresseurExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getDresseurExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDresseurExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Effets spéciaux mécaniques */
if( $prestaservices_donnees -> getEffetsSpeciaux ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Effets spéciaux mécaniques" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getEffetSpecialDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getEffetSpecialEffetAtmospherique ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Effets atmosphériques (pluie, vent, brouillard, neige,…)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialEffetAquatique ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Effets aquatiques (création de bassins, de cascades,…)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialExplosionDecorNaturel ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Explosion en décor naturel" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialExplosionStudio ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Explosion en studio" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialTirImpact ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Tir & impact" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialTorcheHumaine ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Torche humaine" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialFeu ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Feu, incendie, embrasement de site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialFeuxArtificePerso ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Feux d’artifices personnalisés" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialRegleurSceneAccident ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Régleur de scène d’accident" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialCascadeAuto ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Cascade auto" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialCascadeCamion ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Cascade camion" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialCascadeMoto ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Cascade moto" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialCascadePhysique ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Cascade physique" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialRegleurCombat ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Régleur de combat" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialEffetMaquillage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Effets de maquillage (bloody effects,…)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialCreationProthese ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Création de prothèses & masques (de créatures, de déformations corporelles,…)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialMiniature ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Miniatures et modelage (création de maquettes de décor, de figurines et miniatures,…)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialAccessoiresTrucage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Accessoires SF (création d’armes, … )" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getEffetSpecialAutre ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$precision = ( $prestaservices_donnees -> getEffetSpecialAutrePrecision ()) ? " : " . $prestaservices_donnees -> getEffetSpecialAutrePrecision () : '' ;
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Autre(s)" . $precision , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getEffetSpecialExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getEffetSpecialExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getEffetSpecialExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getEffetSpecialExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Gardiennage, ventousage et convoyage */
if( $prestaservices_donnees -> getSecurite ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Gardiennage, ventousage et convoyage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getSecuriteDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getSecuriteAssistanceVisiteur ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Assistance aux visiteurs" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteConvoyage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Convoyage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteFiltrage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Filtrage et contrôle d’accès" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteProtectionRapprochee ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Protection rapprochée" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteRondes ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Rondes à vue diurnes et/ou nocturnes" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteSecuriteInvite ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Sécurité d’invités" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteSurveillanceCanine ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Surveillance avec chien" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteSurveillanceStatique ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Surveillance statique" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteTenueMainCourante ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Tenue de la main-courante" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteTransport ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Véhicule de transport en protection rapprochée" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteVentousage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Ventousage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteVerifSysteme ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vérification des installations et systèmes de sécurité" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getSecuriteVerifPrevention ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vérification et suivi des installations de prévention incendie" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getSecuriteExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getSecuriteExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getSecuriteExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getSecuriteExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Régie : matériel et véhicule */
if( $prestaservices_donnees -> getVehiculeTechnique ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Régie : matériel et véhicule" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeTechniqueDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getVehiculeTechniqueCamionRegie ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Camions régie" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueLogeMobile ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Loges mobiles" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueRemorque ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Remorques et plateaux" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueToiletteMobile ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Toilettes mobiles" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 2 );
if($prestaservices_donnees -> getVehiculeTechniqueAppAlimentaire ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Appareils alimentaires (café, eau, …)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueAssiseTable ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Assises, tables" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueBureau ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Bureaux de production" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueCaisse ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Caisses roulantes" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueChauffage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Chauffages" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueEnergie ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Énergie (groupes électrogènes, câbles …)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueEnginElevation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Engins d'élévation (nacelles, grues....)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueMaterielHmc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Matériel HMC (miroirs, repassage …)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueMaterielSecurite ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Matériel sécurité (balises, plots ...)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueOutilCom ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Outils de communication (talkies...)" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueTente ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Tentes, parquets" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 2 );
if($prestaservices_donnees -> getVehiculeTechniqueVentousage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Ventousage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueConvoyage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Convoyage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTechniqueLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getVehiculeTechniqueExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getVehiculeTechniqueExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getVehiculeTechniqueExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeTechniqueExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Ressourcerie - Recyclerie */
if( $prestaservices_donnees -> getRessourcerie ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Ressourcerie / Recyclerie" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getRessourcerieDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Estimation quantité des matériels et équipements en possession" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getRessourcerieMateriel (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getRessourcerieExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getRessourcerieExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getRessourcerieExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getRessourcerieExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Véhicule de jeu */
if( $prestaservices_donnees -> getVehiculeJeu ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Véhicule de jeu" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeJeuDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Estimation quantité de véhicules en possession" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeJeuQuantite (), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getVehiculeJeuLocation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location de véhicules de jeu" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeJeuGestion ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Gestion intégrale du parc de véhicule de jeu sur tournage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeJeuLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Descriptif détaillé du parc de véhicule de jeu" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Type de véhicule" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 7 , 5 , "Nbr" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 50 , 5 , mb_convert_encoding ( "Caractéristiques" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 24 , 5 , mb_convert_encoding ( "Origine" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach($prestaservices_donnees -> getVehiculeJeuListes () as $liste_parc ){
$pdf -> SetX ( $curseur_partie_droite );
$type_liste_parc = mb_convert_encoding ( $liste_parc -> getType (), "Windows-1252" , "UTF-8" );
$type_liste_parc = ( strlen ( $type_liste_parc ) <= 25 ) ? $type_liste_parc : substr ( $type_liste_parc , 0 , 25 ). "..." ;
$pdf -> Cell ( 40 , 5 , $type_liste_parc , 1 , 0 , "L" );
$pdf -> Cell ( 7 , 5 , mb_convert_encoding ( $liste_parc -> getNombre (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$caracteristiques_liste_parc = mb_convert_encoding ( $liste_parc -> getCaracteristique (), "Windows-1252" , "UTF-8" );
$caracteristiques_liste_parc = ( strlen ( $caracteristiques_liste_parc ) <= 32 ) ? $caracteristiques_liste_parc : substr ( $caracteristiques_liste_parc , 0 , 32 ). "..." ;
$pdf -> Cell ( 50 , 5 , $caracteristiques_liste_parc , 1 , 0 , "L" );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( $liste_parc -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$origine_liste_parc = mb_convert_encoding ( $liste_parc -> getOrigine (), "Windows-1252" , "UTF-8" );
$origine_liste_parc = ( strlen ( $origine_liste_parc ) <= 17 ) ? $origine_liste_parc : substr ( $origine_liste_parc , 0 , 17 ). "..." ;
$pdf -> Cell ( 24 , 5 , $origine_liste_parc , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getVehiculeJeuExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getVehiculeJeuExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getVehiculeJeuExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeJeuExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Véhicule de transport de personnes */
if( $prestaservices_donnees -> getVehiculeTransport ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Véhicule de transport de personnes" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeTransportDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getVehiculeTransportLocation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location de véhicules de transport de personne" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getVehiculeTransportLivraison ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Livraison sur site" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Descriptif détaillé du parc de véhicule de transport" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Type de véhicule" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 7 , 5 , "Nbr" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 84 , 5 , mb_convert_encoding ( "Caractéristiques" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach($prestaservices_donnees -> getVehiculeTransportListes () as $liste_vehicule ){
$pdf -> SetX ( $curseur_partie_droite );
$type_liste_vehicule = mb_convert_encoding ( $liste_vehicule -> getType (), "Windows-1252" , "UTF-8" );
$type_liste_vehicule = ( strlen ( $type_liste_vehicule ) <= 26 ) ? $type_liste_vehicule : substr ( $type_liste_vehicule , 0 , 26 ). "..." ;
$pdf -> Cell ( 40 , 5 , $type_liste_vehicule , 1 , 0 , "L" );
$pdf -> Cell ( 7 , 5 , mb_convert_encoding ( $liste_vehicule -> getNombre (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$caracteristique_liste_vehicule = mb_convert_encoding ( $liste_vehicule -> getCaracteristique (), "Windows-1252" , "UTF-8" );
$caracteristique_liste_vehicule = ( strlen ( $caracteristique_liste_vehicule ) <= 60 ) ? $caracteristique_liste_vehicule : substr ( $caracteristique_liste_vehicule , 0 , 60 ). "..." ;
$pdf -> Cell ( 84 , 5 , $caracteristique_liste_vehicule , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getVehiculeTransportExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getVehiculeTransportExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getVehiculeTransportExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getVehiculeTransportExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
/* Vues aériennes / Drone */
if( $prestaservices_donnees -> getDrone ()){
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "prestation proposée" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vues aériennes / Drone" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "descriptif général de l'activité" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDroneDescriptif (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Services proposés" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if($prestaservices_donnees -> getDronePhoto ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Photographie" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDroneVideo ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vidéo" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDroneTimeLapse ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Time-Lapse" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDroneModelisation3d ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Modélisation 3D" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDroneLocAeroAvecPilote ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location d’aéronef avec pilote à bord" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDroneLocAeroSansPilote ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Location d’aéronef sans pilote à bord" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prestaservices_donnees -> getDronePiloteQualifie ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Pilote qualifié et déclaré à la DGAC" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Descriptif détaillé du parc d’aéronef" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Type d'aéronef" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 7 , 5 , "Nbr" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 84 , 5 , mb_convert_encoding ( "Caractéristiques" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach($prestaservices_donnees -> getDroneListes () as $liste_drone ){
$pdf -> SetX ( $curseur_partie_droite );
$type_liste_drone = mb_convert_encoding ( $liste_drone -> getType (), "Windows-1252" , "UTF-8" );
$type_liste_drone = ( strlen ( $type_liste_drone ) <= 26 ) ? $type_liste_drone : substr ( $type_liste_drone , 0 , 26 ). "..." ;
$pdf -> Cell ( 40 , 5 , $type_liste_drone , 1 , 0 , "L" );
$pdf -> Cell ( 7 , 5 , mb_convert_encoding ( $liste_drone -> getNombre (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$caracteristique_liste_drone = mb_convert_encoding ( $liste_drone -> getCaracteristique (), "Windows-1252" , "UTF-8" );
$caracteristique_liste_drone = ( strlen ( $caracteristique_liste_drone ) <= 60 ) ? $caracteristique_liste_drone : substr ( $caracteristique_liste_drone , 0 , 60 ). "..." ;
$pdf -> Cell ( 84 , 5 , $caracteristique_liste_drone , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
if (count ( $prestaservices_donnees -> getDroneExperiences ()) > 0 ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Expérience(s) de tournage(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 60 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , "Format" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 20 , 5 , mb_convert_encoding ( "Catégorie" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( "Production" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
foreach ($prestaservices_donnees -> getDroneExperiences () as $experiences ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 40 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 40 ) . "..." ;
$pdf -> Cell ( 60 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 34 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 34 ) . "..." ;
$pdf -> Cell ( 40 , 5 , $realisation_experiences , 1 , 0 , "L" );
$format_experiences = mb_convert_encoding ( $experiences -> getFormat (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 25 , 5 , $format_experiences , 1 , 0 , "L" );
$categorie_experiences = mb_convert_encoding ( $experiences -> getCategorie (), "Windows-1252" , "UTF-8" );
$pdf -> Cell ( 20 , 5 , $categorie_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 35 , 5 , mb_convert_encoding ( $experiences -> getProduction (), "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
}
if ($prestaservices_donnees -> getDroneExperienceAutre ()) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Autre(s) expérience(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prestaservices_donnees -> getDroneExperienceAutre (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
}
if(
$prestaservices_donnees -> getLangues () != '' ||
$prestaservices_donnees -> getRayonCalvados () ||
$prestaservices_donnees -> getRayonEure () ||
$prestaservices_donnees -> getRayonManche () ||
$prestaservices_donnees -> getRayonOrne () ||
$prestaservices_donnees -> getRayonSeineMaritime () ||
$prestaservices_donnees -> getRayonHorsNormandie ())
{
$this -> info_complementaire ( $pdf , $prestaservices_donnees , $curseur_partie_droite );
}
$this -> pied_page ( $pdf );
$date_maj = $prestaservices_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
}
$pdf -> ln ( 5 );
}
}elseif($type == 'prodoeuvres' ){
$type = "Production cinéma et audiovisuel" ;
/* Production d’oeuvres cinématographiques et audiovisuelles */
if ( count ( $user -> getProductionsCineAudio ()) > 0 ) {
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
foreach ($user -> getProductionsCineAudio () as $prodcineaudo ) {
$prodoeuvres_donnees = $prodcineaudo ;
}
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Ligne éditoriale" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prodoeuvres_donnees -> getPresentation (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "type de production" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodoeuvres_donnees -> getCineCmFiction () ||
$prodoeuvres_donnees -> getCineCmDoc () ||
$prodoeuvres_donnees -> getCineCmAnim () ||
$prodoeuvres_donnees -> getCineLmFiction () ||
$prodoeuvres_donnees -> getCineLmDoc () ||
$prodoeuvres_donnees -> getCineLmAnim ()
){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Cinéma :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodoeuvres_donnees -> getCineCmFiction ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Court métrage de fiction : " . $prodoeuvres_donnees -> getCineCmFictionNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getCineCmDoc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Court métrage documentaire : " . $prodoeuvres_donnees -> getCineCmDocNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getCineCmAnim ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Court métrage d'animation : " . $prodoeuvres_donnees -> getCineCmAnimNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getCineLmFiction ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Long métrage de fiction : " . $prodoeuvres_donnees -> getCineLmFictionNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getCineLmDoc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Long métrage documentaire : " . $prodoeuvres_donnees -> getCineLmDocNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getCineLmAnim ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Long métrage d'animation : " . $prodoeuvres_donnees -> getCineLmAnimNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 3 );
}
if($prodoeuvres_donnees -> getAudioUnitFiction () ||
$prodoeuvres_donnees -> getAudioUnitDoc () ||
$prodoeuvres_donnees -> getAudioUnitAnim () ||
$prodoeuvres_donnees -> getAudioSerieFiction () ||
$prodoeuvres_donnees -> getAudioSerieDoc () ||
$prodoeuvres_donnees -> getAudioSerieAnim ()
){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Télévision :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodoeuvres_donnees -> getAudioUnitFiction ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Unitaire de fiction : " . $prodoeuvres_donnees -> getAudioUnitFictionNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioUnitDoc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Unitaire documentaire : " . $prodoeuvres_donnees -> getAudioUnitDocNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioUnitAnim ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Unitaire d'animation : " . $prodoeuvres_donnees -> getAudioUnitAnimNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioSerieFiction ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Série de fiction : " . $prodoeuvres_donnees -> getAudioSerieFictionNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioSerieDoc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Série documentaire : " . $prodoeuvres_donnees -> getAudioSerieDocNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioSerieAnim ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Série d'animation : " . $prodoeuvres_donnees -> getAudioSerieAnimNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 3 );
}
if($prodoeuvres_donnees -> getWebFiction () ||
$prodoeuvres_donnees -> getWebDoc () ||
$prodoeuvres_donnees -> getWebRealiteAug () ||
$prodoeuvres_donnees -> getWebRealiteVirtuelle () ||
$prodoeuvres_donnees -> getAudioAutre ()
){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Web et création numérique :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodoeuvres_donnees -> getWebFiction ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Web fiction : " . $prodoeuvres_donnees -> getWebFictionNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getWebDoc ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Web documentaire : " . $prodoeuvres_donnees -> getWebDocNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getWebRealiteAug ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Web réalité augmentée : " . $prodoeuvres_donnees -> getWebRealiteAugNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getWebRealiteVirtuelle ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Web réalité virtuelle : " . $prodoeuvres_donnees -> getWebRealiteVirtuelleNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAudioAutre ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodoeuvres_donnees -> getAudioAutrePrecision (). " : " . $prodoeuvres_donnees -> getAudioAutreNb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 3 );
}
if($prodoeuvres_donnees -> getAutrePrecision1 () || $prodoeuvres_donnees -> getAutrePrecision2 ()){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Autre :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodoeuvres_donnees -> getAutrePrecision1 ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodoeuvres_donnees -> getAutrePrecision1 (). " : " . $prodoeuvres_donnees -> getAutrePrecision1Nb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodoeuvres_donnees -> getAutrePrecision2 ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodoeuvres_donnees -> getAutrePrecision2 (). " : " . $prodoeuvres_donnees -> getAutrePrecision2Nb (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Production(s) représentative(s)" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 40 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 45 , 5 , mb_convert_encoding ( "Réalisation" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , mb_convert_encoding ( "Format" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 27 , 5 , mb_convert_encoding ( "Genre" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( "Durée" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 41 , 5 , mb_convert_encoding ( "CoProduction(s)" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
foreach($prodoeuvres_donnees -> getFilmographies () as $experiences ){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 35 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 35 ). "..." ;
$pdf -> Cell ( 40 , 5 , $titre_experiences , 1 , 0 , "L" );
$realisation_experiences = mb_convert_encoding ( $experiences -> getRealisation (), "Windows-1252" , "UTF-8" );
$realisation_experiences = ( strlen ( $realisation_experiences ) <= 30 ) ? $realisation_experiences : substr ( $realisation_experiences , 0 , 30 ). "..." ;
$pdf -> Cell ( 45 , 5 , $realisation_experiences , 1 , 0 , "L" );
$genre_experiences = mb_convert_encoding ( $experiences -> getType (), "Windows-1252" , "UTF-8" );
$genre_experiences = ( strlen ( $genre_experiences ) <= 30 ) ? $genre_experiences : substr ( $genre_experiences , 0 , 30 ). "..." ;
$pdf -> Cell ( 25 , 5 , $genre_experiences , 1 , 0 , "L" );
$type_experiences = mb_convert_encoding ( $experiences -> getGenre (), "Windows-1252" , "UTF-8" );
$type_experiences = ( strlen ( $type_experiences ) <= 25 ) ? $type_experiences : substr ( $type_experiences , 0 , 25 ). "..." ;
$pdf -> Cell ( 27 , 5 , $type_experiences , 1 , 0 , "L" );
$pdf -> Cell ( 10 , 5 , mb_convert_encoding ( $experiences -> getDuree (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$coprod_experiences = mb_convert_encoding ( $experiences -> getCoprod (), "Windows-1252" , "UTF-8" );
$coprod_experiences = ( strlen ( $coprod_experiences ) <= 28 ) ? $coprod_experiences : substr ( $coprod_experiences , 0 , 28 ). "..." ;
$pdf -> Cell ( 41 , 5 , $coprod_experiences , 1 , 1 , "L" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "informations complémentaires" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if ($prodoeuvres_donnees -> getAdherent () == 'Oui' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Structure de production adhérente à " . $prodoeuvres_donnees -> getAdherentPrecision (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prodoeuvres_donnees -> getCoprodInter () == 'occasionnellement' || $prodoeuvres_donnees -> getCoprodInter () == 'regulierement' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Développe " . $prodoeuvres_donnees -> getCoprodInter (). " des productions internationales" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prodoeuvres_donnees -> getProdExe () == 'occasionnellement' || $prodoeuvres_donnees -> getProdExe () == 'regulierement' ) {
$prodexe_type = $prodoeuvres_donnees -> getProdExeNationale () ? " nationale et" : "" ;
$prodexe_type .= $prodoeuvres_donnees -> getProdExeInternationale () ? " internationale et" : "" ;
$prodexe_type = substr ( $prodexe_type , 0 ,- 3 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Production exécutive" . $prodexe_type , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prodoeuvres_donnees -> getDistribution () == "Oui" ) {
$distributeur_film = $prodoeuvres_donnees -> getDistributionFilmType () ? " de" . $prodoeuvres_donnees -> getDistributionFilmType () : "" ;
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Distributeur" . $distributeur_film , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prodoeuvres_donnees -> getLangueEtrangerePrecision () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Langue(s) pratiquée(s) : " , "Windows-1252" , "UTF-8" ), 0 , 0 , "J" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodoeuvres_donnees -> getLangueEtrangerePrecision (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$this -> pied_page ( $pdf );
$date_maj = $prodoeuvres_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
}elseif($type == 'prodfilmscom' || $type == 'prodfilms' ){
$type = "Production de films de communication institutionnelle" ;
/* Production de films de communication institutionnelle */
if ( count ( $user -> getProductionsCom ()) > 0 ) {
$pdf -> AddPage ();
$pdf -> SetAutoPageBreak ( 1 , 5 );
$this -> en_tete ( $pdf , $user , $structure_donnees , $type );
foreach ($user -> getProductionsCom () as $prodcom ) {
$prodcom_donnees = $prodcom ;
}
$pdf -> SetXY ( $curseur_partie_droite , 93 );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Descriptif de l'activité principale de production" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> MultiCell ( 0 , 4 , mb_convert_encoding ( $prodcom_donnees -> getPresentation (), "Windows-1252" , "UTF-8" ), 0 , "J" );
$pdf -> ln ( 3 );
if($prodcom_donnees -> getGenreCaptation () ||
$prodcom_donnees -> getGenreClipMusic () ||
$prodcom_donnees -> getGenreFilmPeda () ||
$prodcom_donnees -> getGenreMagazine () ||
$prodcom_donnees -> getGenrePub () ||
$prodcom_donnees -> getGenreReportage () ||
$prodcom_donnees -> getGenreTeaser () ||
$prodcom_donnees -> getGenreVideo () ||
$prodcom_donnees -> getGenreAutre ()
){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Genre de production :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodcom_donnees -> getGenreCaptation ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Captation" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreClipMusic ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Clip musical" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreFilmPeda ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Film pédagogique" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreMagazine ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Magazine corporate" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenrePub ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Publicité" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreReportage ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Reportage" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreTeaser ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Teaser" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreVideo ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vidéo de présentation" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getGenreAutre ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodcom_donnees -> getGenreAutrePrecision (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 3 );
}
if($prodcom_donnees -> getTechAnim () ||
$prodcom_donnees -> getTechDrone () ||
$prodcom_donnees -> getTechPriseVueSol () ||
$prodcom_donnees -> getTechRealAug () ||
$prodcom_donnees -> getTechVideo360 () ||
$prodcom_donnees -> getTechVr () ||
$prodcom_donnees -> getTechWeb () ||
$prodcom_donnees -> getTechAutre ()
){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( "Technique et format :" , "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
if($prodcom_donnees -> getTechAnim ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Animation/Motion design" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechDrone ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Drone" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechPriseVueSol ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Prise vue au sol" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechRealAug ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Réalité augmentée" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechVideo360 ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Vidéo 360°" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechVr ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "VR" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechWeb ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( "Web" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if($prodcom_donnees -> getTechAutre ()){
$pdf -> SetX ( $curseur_partie_droite + 3 );
$pdf -> SetFont ( 'Arial' , 'B' , 10 );
$pdf -> Cell ( 2 , 4 , mb_convert_encoding ( mb_strtoupper ( "•" ), "Windows-1252" , "UTF-8" ), 0 , 0 , "L" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodcom_donnees -> getTechAutrePrecision (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "Travaux représentatifs" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFillColor ( 223 , 223 , 223 );
$pdf -> SetDrawColor ( 0 , 0 , 0 );
$pdf -> SetLineWidth ( 0.1 );
$pdf -> setTextColor ( 0 , 0 , 0 );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( "Année" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 75 , 5 , "Titre" , 1 , 0 , "L" , 1 );
$pdf -> Cell ( 45 , 5 , mb_convert_encoding ( "Genre de production" , "Windows-1252" , "UTF-8" ), 1 , 0 , "L" , 1 );
$pdf -> Cell ( 25 , 5 , mb_convert_encoding ( "lien" , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" , 1 );
$pdf -> SetFont ( 'Arial' , '' , 8 );
foreach($prodcom_donnees -> getTravaux () as $experiences ){
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> Cell ( 11 , 5 , mb_convert_encoding ( $experiences -> getAnnee (), "Windows-1252" , "UTF-8" ), 1 , 0 , "L" );
$titre_experiences = mb_convert_encoding ( $experiences -> getTitre (), "Windows-1252" , "UTF-8" );
$titre_experiences = ( strlen ( $titre_experiences ) <= 65 ) ? $titre_experiences : substr ( $titre_experiences , 0 , 65 ). "..." ;
$pdf -> Cell ( 75 , 5 , $titre_experiences , 1 , 0 , "L" );
$genre_experiences = mb_convert_encoding ( $experiences -> getTypeVideo (), "Windows-1252" , "UTF-8" );
$genre_experiences = ( strlen ( $genre_experiences ) <= 28 ) ? $genre_experiences : substr ( $genre_experiences , 0 , 28 ). "..." ;
$pdf -> Cell ( 45 , 5 , $genre_experiences , 1 , 0 , "L" );
$posX = $pdf -> GetX ();
$posY = $pdf -> GetY ();
if($experiences -> getLienUrl ()){
$pdf -> Link ( $posX , $posY , 25 , 5 , $experiences -> getLienUrl ());
$pdf -> Cell ( 25 , 5 , mb_convert_encoding ( 'accéder à la page' , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}else{
$pdf -> Cell ( 25 , 5 , mb_convert_encoding ( '' , "Windows-1252" , "UTF-8" ), 1 , 1 , "L" );
}
}
if ($prodcom_donnees -> getLienDemo () != '' ) {
$pdf -> ln ( 3 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$posX = $pdf -> GetX ();
$posY = $pdf -> GetY ();
$pdf -> Link ( $posX , $posY , 40 , 5 , $prodcom_donnees -> getLienDemo ());
$pdf -> Cell ( 40 , 5 , mb_convert_encoding ( "Démo : accéder à la démo" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
if ($prodcom_donnees -> getLienAutreProjet () != '' ) {
$pdf -> ln ( 3 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$posX = $pdf -> GetX ();
$posY = $pdf -> GetY ();
$pdf -> Link ( $posX , $posY , 50 , 5 , $prodcom_donnees -> getLienAutreProjet ());
$pdf -> Cell ( 50 , 5 , mb_convert_encoding ( "Chaîne web : Accéder à la chaîne" , "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$pdf -> ln ( 5 );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 1 , 167 , 171 );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 5 , mb_convert_encoding ( mb_strtoupper ( "informations complémentaires" ), "Windows-1252" , "UTF-8" ), 0 , 1 , "L" );
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> setTextColor ( 0 , 0 , 0 );
if ($prodcom_donnees -> getLangueEtrangerePrecision () != '' ) {
$pdf -> SetX ( $curseur_partie_droite );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 35 , 4 , mb_convert_encoding ( "Langue(s) pratiquée(s) : " , "Windows-1252" , "UTF-8" ), 0 , 0 , "J" );
$pdf -> SetFont ( 'Arial' , '' , 9 );
$pdf -> Cell ( 0 , 4 , mb_convert_encoding ( $prodcom_donnees -> getLangueEtrangerePrecision (), "Windows-1252" , "UTF-8" ), 0 , 1 , "J" );
}
$this -> pied_page ( $pdf );
$date_maj = $prodcom_donnees -> getStatutDate ();
$pdf -> setXY ( 10 , 2 );
$pdf -> SetTextColor ( 0 , 0 , 0 );
$pdf -> SetFont ( 'Arial' , 'B' , 9 );
$pdf -> Cell ( 0 , 8 , mb_convert_encoding ( "Profil validé le " . date_format ( $date_maj , "d/m/Y" ), "Windows-1252" , "UTF-8" ), 0 , 1 );
}
}
ob_clean ();
$pdf -> Output ( 'D' , 'pdf/' . mb_convert_encoding ( $structure_donnees -> getNom (), "Windows-1252" , "UTF-8" ). '.pdf' );
}
}