Beispiel #1
0
<div class="page-header">
	<h2>
		<?php 
echo $mainmodule;
?>
	</h2>
</div>

<?php 
echo $list;
?>

<p class="text-right">
	<a href="<?php 
echo url::internal($this->getModule(), 'index', null, '&filter=' . $this->filter);
?>
">Voir tout</a>
</p>
Beispiel #2
0
		       <?php 
    foreach ($topLinks as $module) {
        ?>
			        <li><a href="<?php 
        echo url::internal($module, 'index');
        ?>
"><?php 
        echo ucfirst($module);
        ?>
</a></li>
		       <?php 
    }
    ?>
       				<li><a href="<?php 
    echo url::internal('users', 'logout');
    ?>
">Deconnection</a></li>
         	 </ul>
          <form class="navbar-form navbar-right">
            <input type="text" class="form-control" placeholder="Search...">
          </form>
          <?php 
}
?>
           
        </div>
      </div>
    </nav>

    <div class="container-fluid">
Beispiel #3
0
<div class="container-fluid">
	<div class="row" style="margin-top: 80px;">
		<div class="col-md-4 col-md-offset-4">
			<div class="well well-lg">
				<form role="form" action="<?php 
echo url::internal('users', 'login');
?>
">
				  <div class="form-group">
					<label for="exampleInputEmail1">Login</label>
					<input type="text" name="login" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
				  </div>
				  <div class="form-group">
					<label for="exampleInputPassword1">Mot de passe</label>
					<input type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
				  </div>
				  <input type="hidden" name="action" value="login" >
				  <input type="hidden" name="controller" value="users" >
				  <button type="submit" class="btn btn-default">Connection</button>
				</form>
			</div>
		</div>
</div>
</div>
Beispiel #4
0
<a href="<?php 
echo url::internal($this->moduletojoin, 'view', $this->joinid);
?>
" ><?php 
echo $this->joinfieldvalue;
?>
</a>
Beispiel #5
0
</div>

<div class="row">

	<div class="col-md-6">
		<p class="text-left">
			<a href="<?php 
echo url::internal($this->getModule(), 'edit');
?>
" type="button" class="btn btn-default glyphicon glyphicon glyphicon-new-window btn-xs"> Créer</a>
		<p>
		
	</div>	
	<div class="col-md-6">
		<form method="post" action="<?php 
echo url::internal($this->getModule(), 'index', null);
?>
">
			<p class="text-right">
				<button type="submit" name="start" value="<?php 
echo $prevStart;
?>
" class="btn btn-default glyphicon glyphicon-chevron-left btn-xs"></button>
				<button type="button" class="btn btn-default glyphicon btn-xs disabled"><?php 
echo $start;
?>
/<?php 
echo $total;
?>
</button>
				<button type="submit" name="start" value="<?php 
Beispiel #6
0
				<td>
					<?php 
        echo $field;
        ?>
				</td>
			<?php 
    }
    ?>
			
			<td>			
				<a class="glyphicon glyphicon-eye-open" href="<?php 
    echo url::internal($this->getModule(), 'view', $data['id']);
    ?>
" ></a>
				<a class="glyphicon glyphicon-edit" href="<?php 
    echo url::internal($this->getModule(), 'edit', $data['id']);
    ?>
" type="button" class="btn btn-default" ></a>
				<a class="glyphicon glyphicon-remove" href="<?php 
    echo url::internal($this->getModule(), 'delete', $data['id']);
    ?>
" type="button" class="btn btn-default" ></a>
			</td>		
		</tr>
	<?php 
}
?>

  </table>
</div>
Beispiel #7
0
" type="button" class="btn btn-default btn-lg btn-block">
					Les profils
				</a>
			</div>
		</div>
	</div>
	
	
	<?php 
if (users::isConnected() && users::issetId()) {
    ?>
	<div class="row">
		<div class="col-md-10">
			<div class="form-group">
				<a href="<?php 
    echo url::internal('users', 'edit', users::getId());
    ?>
" type="button" class="btn btn-default btn-lg btn-block">
					Mon profil
				</a>
			</div>
		</div>
	</div>
	
	
	
	<?php 
}
?>
	
Beispiel #8
0
    ?>
	<?php 
}
?>

	<input type="hidden" name="id" value="<?php 
echo $id;
?>
" />

  <div class="form-group">
    <div class="col-sm-10">
      <a href="<?php 
echo url::internal($this->getModule(), 'view', $id);
?>
" type="button" class="btn btn-default">Voir</a>
      <button type="submit" class="btn btn-default">Edit</button>
      <a href="<?php 
echo url::internal($this->getModule(), 'index');
?>
" type="button" class="btn btn-default">List</a>
      <a href="<?php 
echo url::internal($this->getModule(), 'delete', $id);
?>
" type="button" class="btn btn-default">Supprimer</a>
    </div>
     
  </div>

</form>