Affichage client
This commit is contained in:
parent
4164fe61e6
commit
b9ef026268
@ -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;
|
||||
}
|
||||
}
|
@ -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>
|
Loading…
Reference in New Issue
Block a user