Bonjour,

J'essai de faire fontionner doxygen avec mes ficheirs php mais je n'arrive pas à le faire.

J'ai par exemple :

titles.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
 
<?php
/** 
 * File which contains the presentation of the menu for this theme.
 *
 * On this file there are the function title, subtitle, show and show2
 *
 */
 
/** this funtion is to create the presentation of the title
 * @param $title : it is the title which is use to create the presentation
 */
function title($title){
  $return = '';
  $return .= '<div class="title">
<div class="titleright">
<div class="titleleft">
&nbsp;
</div><!--close titleleft-->
<strong>'.
$title.'
</strong>
</div><!--close titleright-->
</div><!--close title-->';
  return $return;
}
?>
Mais lorsque je lance doxygen ddessu il me génère un fichier index.html sans aucun lien comme s'il ne voyait pas le fichier titles.php

Est ce que vous pourriez me dire s'il y a des paramètres particuliers a donner au fichier doxyfile ou s'il y a des commentaires particuliers à mettre dans mon code.

merci d'avance.