mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 14:32:31 +00:00
21 lines
No EOL
805 B
PHP
21 lines
No EOL
805 B
PHP
<?
|
|
need ("feature");
|
|
|
|
featureOpen ("Member Links");
|
|
?>
|
|
<P>News: [ <A href="news_add.php">Post</A> ]</P>
|
|
<P>Plan: [ <A href="plan_add.php">Post</A> ]</P>
|
|
<P>Password: [ <A href="chpass.php">Change</A> ]</P>
|
|
<?
|
|
featureClose ();
|
|
|
|
if ($userInfo['u_admin']) {
|
|
featureOpen ("Admin");
|
|
?>
|
|
<P>News: [ <A href="news_add.php">Add</A> | <A href="news_del.php">Del</A> | <A href="news_edit.php">Edit</A> ]</P>
|
|
<P>Plans: [ <A href="plan_add.php">Add</A> | <A href="plan_del.php">Del</A> | <A href="plan_edit.php">Edit</A> ]</P>
|
|
<P>Users: [ <A href="user_add.php">Add</A> | <A href="user_del.php">Del</A> | <A href="user_edit.php">Edit</A> ]</P>
|
|
<?
|
|
featureClose ();
|
|
}
|
|
?>
|