2010-12-13 16:54:04 +00:00
|
|
|
<div id="wsdl">
|
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>
|
2010-12-13 16:54:04 +00:00
|
|
|
</div>
|
2010-10-20 12:30:49 +00:00
|
|
|
|
2010-12-13 16:54:04 +00:00
|
|
|
<div class="op-list">
|
2010-10-20 12:30:49 +00:00
|
|
|
<h1>Liste des opérations :</h1>
|
|
|
|
<ol>
|
|
|
|
<?php foreach ($this->serviceMethods as $method) {?>
|
2010-12-07 16:18:12 +00:00
|
|
|
<li>
|
|
|
|
<b><?php echo $method['name'];?></b>
|
|
|
|
<a href="#<?php echo $method['name'];?>"><i>Détail</i></a>
|
|
|
|
</li>
|
2010-10-20 12:30:49 +00:00
|
|
|
<?php } ?>
|
|
|
|
</ol>
|
2010-12-13 16:54:04 +00:00
|
|
|
</div>
|
2010-10-20 12:30:49 +00:00
|
|
|
|
2010-12-13 16:54:04 +00:00
|
|
|
<div class="op-detail">
|
2010-10-20 12:30:49 +00:00
|
|
|
<h1>Détails :</h1>
|
|
|
|
<?php foreach ($this->serviceMethods as $method) {?>
|
|
|
|
<div class="function">
|
2012-05-13 07:27:35 +00:00
|
|
|
<a name="<?=$method['name']?>"> </a>
|
|
|
|
<h2><?=$method['name']?></h2>
|
|
|
|
<div class="titre">Description :</div>
|
2010-10-20 12:30:49 +00:00
|
|
|
<div class="description"><?=$this->docDescription($method)?></div>
|
2012-05-13 07:27:35 +00:00
|
|
|
<div class="titre">Empreinte :</div>
|
2010-10-20 12:30:49 +00:00
|
|
|
<div class="complement"><?=$this->docComplement($method)?></div>
|
|
|
|
<div class="function-detail" id="<?=$method['name']?>">
|
2012-05-13 07:27:35 +00:00
|
|
|
<p><?=$this->docMethod($method)?></p>
|
|
|
|
<div class="titre">Paramètres :</div>
|
2010-12-07 16:18:12 +00:00
|
|
|
<div class="parameters">
|
2012-05-13 07:27:35 +00:00
|
|
|
<?=$this->docParameter($method['params'], $this->serviceTypes);?>
|
2010-12-07 16:18:12 +00:00
|
|
|
</div>
|
2012-05-13 07:27:35 +00:00
|
|
|
<div class="titre">Retour :</div>
|
2010-12-07 16:18:12 +00:00
|
|
|
<div class="return">
|
2012-05-13 07:27:35 +00:00
|
|
|
<?=$this->docReturn($method['return'], $this->serviceTypes);?>
|
2010-12-07 16:18:12 +00:00
|
|
|
</div>
|
2010-10-20 12:30:49 +00:00
|
|
|
</div>
|
2012-05-13 07:27:35 +00:00
|
|
|
<?php $exemple = $this->docExemple($method['name'])?>
|
|
|
|
<?php if (!empty($exemple)) {?>
|
|
|
|
<p>Exemple : <?=$exemple?></p>
|
|
|
|
<?php }?>
|
2010-10-20 12:30:49 +00:00
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2010-12-13 16:54:04 +00:00
|
|
|
</div>
|