Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 163

/trunk/services/bibliotheque/nom/NomDO.php
New file
0,0 → 1,25
<?php
class NomDO {
private $infos;
public function __construct(Array $infos) {
$this->infos = $infos;
}
public function getTag($tag) {
return $this->infos[$tag];
}
public function verifierTag($tag) {
$existe = true;
if ($this->getTag($tag) == null || $this->getTag($tag) == '') {
$existe = false;
}
return $existe;
}
 
public function getNomDetails() {
return $this->getTitle().' by '.$this->getAuthor();
}
}
?>