2015-10-30 11:52:50 +00:00
|
|
|
<?php define('__ROOT__', dirname(dirname(__FILE__)) );
|
|
|
|
require_once __ROOT__.'/manager/security.php';
|
|
|
|
|
|
|
|
|
|
|
|
/***************/
|
|
|
|
/*** PROFILE ***/
|
|
|
|
/***************/
|
2015-11-06 22:00:08 +00:00
|
|
|
if( connected() ){ // si l'utilisateur est connecté
|
2015-11-15 14:42:12 +00:00
|
|
|
echo "<section name='myprofile' data-title='Profil'>";
|
2015-10-30 11:52:50 +00:00
|
|
|
echo 'profil';
|
|
|
|
echo '</section>';
|
|
|
|
|
|
|
|
} ?>
|