2010-10-20 12:30:49 +00:00
|
|
|
<h1>WSDL</h1>
|
2010-11-29 14:27:37 +00:00
|
|
|
<p><a href="<?=$this->wsdl?>">Télécharger le WSDL</a></p>
|
2010-10-20 12:30:49 +00:00
|
|
|
<i>Le fichier est accessible sans authentification.</i>
|
|
|
|
|
|
|
|
<h1>Liste des opérations :</h1>
|
|
|
|
<ol>
|
|
|
|
<?php foreach ($this->serviceMethods as $method) {?>
|
|
|
|
<li><b><?=$method['name']?></b> <a href="#<?=$method['name']?>"><i>Détail</i></a></li>
|
|
|
|
<?php } ?>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
<h1>Détails :</h1>
|
|
|
|
<?php foreach ($this->serviceMethods as $method) {?>
|
|
|
|
<div class="function">
|
|
|
|
<a name="<?=$method['name']?>"> </a>
|
|
|
|
<h2><?=$method['name']?></h2>
|
|
|
|
<div><u>Description : </u></div>
|
|
|
|
<div class="description"><?=$this->docDescription($method)?></div>
|
|
|
|
<div class="complement"><?=$this->docComplement($method)?></div>
|
|
|
|
<div class="function-detail" id="<?=$method['name']?>">
|
|
|
|
<p><?=$this->docMethod($method)?></p>
|
|
|
|
<div><u>Paramètres : </u></div>
|
|
|
|
<div class="parameters"><?=$this->docParameter($method['params'], $this->serviceTypes)?></div>
|
|
|
|
<div><u>Retour : </u></div>
|
|
|
|
<div class="return"><?=$this->docReturn($method['return'], $this->serviceTypes)?></div>
|
|
|
|
</div>
|
|
|
|
<p>Exemple : <?=$this->docExemple($method['name'])?></p>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|