Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 201 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 201 Rev 208
Line 1... Line 1...
1
<?php
1
<?php
2
interface NomDetails {
2
interface NomDetails {
3
	public function setChampsProjet($champsProjet);
3
	public function __construct(Ressources $ressources, Parametres $parametres, NomDAO $nomDao, NomFormateur $nomFormateur);
4
	public function setDetailsHrefTpl($tpl);
-
 
5
	public function setOntologieHrefTpl($tpl);
-
 
6
	public function consulter();
4
	public function consulter();
7
}
5
}
8
?>
6
?>
9
7