You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
799 B
29 lines
799 B
<?php
|
|
|
|
//Prefixe
|
|
$rep=__DIR__.'/../';
|
|
//BD
|
|
$bd['dsn'] = "mysql:host=localhost;port=8888;dbname=bdPhp";
|
|
$bd['user'] = "root";
|
|
$bd['pswd'] = "root";
|
|
//Vues
|
|
$vues['acceuil']='vues/acceuil.php';
|
|
$vues['erreur']='vues/erreur.php';
|
|
$vues['connection']='vues/connection.php';
|
|
$vues['inscription']='vues/inscription.php';
|
|
$vues['profile']='vues/profile.php';
|
|
$vues['listesPrivees']='vues/listesPrivees.php';
|
|
$vues['creationListe']='vues/creationListe.php';
|
|
$vues['infosListe']='vues/infosListe.php';
|
|
$vues['creationTache']='vues/creationTache.php';
|
|
|
|
// Styles
|
|
$styles['commun']='styles/commonStyles.css';
|
|
$styles['acceuil']='styles/acceuilStyles.css';
|
|
$styles['connection']='styles/connectionStyles.css';
|
|
$styles['listesPv']="styles/privateListsStyles.css";
|
|
|
|
// Assets
|
|
$assets['logo']='assets/logo.png';
|
|
|
|
?>
|