Affichage client

This commit is contained in:
Michael RICOIS 2016-05-26 16:59:00 +02:00
parent 4164fe61e6
commit b9ef026268
2 changed files with 31 additions and 2 deletions

View File

@ -1,5 +1,10 @@
<?php
class Admin_ClientController extends Zend_Controller_Action
{
public function indexAction(){}
public function indexAction()
{
$ws = new Scores_Ws_Client('gestion', '0.4');
$responses = $ws->getClient();
$this->view->Info = $responses;
}
}

View File

@ -1 +1,25 @@
<?php
<div id="content">
<div class="page-header">
<h1>Informations</h1>
</div>
<table class="table">
<tbody>
<tr>
<td>Nom</td>
<td><?=$this->Info->Nom?></td>
</tr>
<tr>
<td>Siren</td>
<td><?=$this->Info->Siren?></td>
</tr>
</tbody>
</table>
<pre>
Liste des services
Rechercher un utilisateur
</pre>
</div>