Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • zf-3.x
  • origin/trunk
  • 3.0.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

vue_reduite.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    vue_reduite.php 687 B
    <?php
    	session_start();
    
    	setlocale (LC_ALL, "fr");
    	include_once("config/cfg.php");
    
    	$bean = new sso();
    	connecteurMgr::validerTicket($bean);
    	connecteurMgr::verifierCodeRetour($bean);
    
    	$user=$bean->code_utilisateur_kportal;
    	$nom=$bean->nom;
    
    	// Slection par date des vnements ayant le status nouveau / en cours / etc
    ?>
    <table cellspacing="1" cellpadding="1" border="1">
    	<tr>
    		<th colspan="2">Bienvenue...</th>
    	</tr>
    	<tr>
    		<th width="80"><?php echo $nom?></th>
    		<th width="80">(<?php echo $user?>)</th>
    	</tr>
    	<tr>
    		<th colspan="2"><a href="<?php echo connecteurMgr::genererUrlTicket($_SESSION["SERVICE"])?>">Vue maxi</a></th>
    	</tr>
    </table>