mirror of
https://github.com/pierre42100/comunic
synced 2025-07-12 21:12:57 +00:00
First commit
This commit is contained in:
74
inc/config/listPages.php
Normal file
74
inc/config/listPages.php
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
/**
|
||||
* Virtual pages list
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
isset($_SESSION) OR exit("Invalid call - ".$_SERVER['PHP_SELF']);
|
||||
|
||||
$pagesList = array();
|
||||
|
||||
/**
|
||||
* Edit a post
|
||||
*/
|
||||
$pagesList['editpost.php'] = array(
|
||||
"file" => "homeUser/editPost/editPost.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* Search a user
|
||||
*/
|
||||
$pagesList['recherche.php'] = array(
|
||||
"file" => "searchUser/searchUser.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* List opened pages
|
||||
*/
|
||||
$pagesList['pagepublique.php'] = array(
|
||||
"file" => "openUsers/openUsers.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* About the project
|
||||
*/
|
||||
$pagesList['about.php'] = array(
|
||||
"file" => "about/about.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* About Comunic
|
||||
*/
|
||||
$pagesList['whatiscomunic.php'] = array(
|
||||
"file" => "whatIsComunic/whatiscomunic.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* Contact administration
|
||||
*/
|
||||
$pagesList['contact.php'] = array(
|
||||
"file" => "contact/contact.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* Improvement forum
|
||||
*/
|
||||
$pagesList['forum.php'] = array(
|
||||
"file" => "improveForum/forum.inc.php",
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
* Share a link
|
||||
*/
|
||||
$pagesList['share.php'] = array(
|
||||
"file" => "share/share.inc.php",
|
||||
);
|
||||
|
||||
/**
|
||||
* Webmail
|
||||
*/
|
||||
$pagesList['webmail.php'] = array(
|
||||
"file" => "webmail/webmail.inc.php",
|
||||
);
|
Reference in New Issue
Block a user