Hi,
I try to import the styles from a docx file.
I use importStyles to get them and when I use AddText the style is not applied.
Here is the code :
$docx = new CreateDocx();
$fichier_template = "../" . DOSSIER_BROCHURE . "/plaquette.docx";
echo "<p>Ajout du fichier $fichier_template</p>";
$docx->importStyles($fichier_template, "merge", array("Titre 1", "Titre 2", "Titre 3", "Titre 4", "Titre 5", "Titre 6", "Titre 7", "Titre 8", "Titre 9"));
$docx->addDocX($fichier_template);
$paramsText = array(
'font' => 'Arial'
);
$text = "Hello World!";
$docx->addText($text, array("pStyle" => "Titre 5"));
$docx->createDocx("../" . DOSSIER_BROCHURE . "/brochure_enseignement_" . annee_scolaire_intitule($annee_scolaire));
Can you help me?
thanks