tinytinyrss/prefs.php

77 lines
2.2 KiB
PHP
Raw Normal View History

2005-08-22 03:17:12 +02:00
<html>
<head>
2005-09-07 09:19:14 +02:00
<title>Tiny Tiny RSS : Preferences</title>
2005-08-22 03:17:12 +02:00
<link rel="stylesheet" href="tt-rss.css" type="text/css">
2005-08-22 06:56:40 +02:00
<script type="text/javascript" src="functions.js"></script>
2005-08-22 03:17:12 +02:00
<script type="text/javascript" src="prefs.js"></script>
2005-09-08 07:02:49 +02:00
<!--[if gte IE 5.5000]>
<script type="text/javascript" src="pngfix.js"></script>
<![endif]-->
2005-08-22 03:17:12 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body onload="init()">
2005-11-16 18:13:01 +01:00
<?
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
?>
2005-08-23 16:47:46 +02:00
2005-09-07 09:19:14 +02:00
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
2005-11-16 18:13:01 +01:00
<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
2005-08-22 03:17:12 +02:00
<tr>
2005-10-16 16:10:14 +02:00
<td colspan="2">
<table cellspacing="0" cellpadding="0" width="100%"><tr>
<td class="header" valign="middle">
<img src="images/ttrss_logo.png" alt="logo">
</td>
<td align="right" valign="top">
<div id="notify"><span id="notify_body"></div>
</td>
</tr></table>
2005-08-22 03:17:12 +02:00
</td>
</tr>
<? } ?>
2005-08-22 03:17:12 +02:00
<tr>
2005-10-28 19:58:20 +02:00
<td class="prefsTabs" align="left" valign="bottom">
2005-11-17 06:28:45 +01:00
<input id="genConfigTab" class="prefsTab" type="submit" value="User Preferences"
onclick="selectTab('genConfig')">
2005-10-28 19:58:20 +02:00
<input id="feedConfigTab" class="prefsTab" type="submit" value="Feed Configuration"
onclick="selectTab('feedConfig')">
<input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
onclick="selectTab('filterConfig')">
2005-11-16 18:13:01 +01:00
<? if (get_pref($link, 'ENABLE_LABELS')) { ?>
2005-10-28 19:58:20 +02:00
<input id="labelConfigTab" class="prefsTab" type="submit" value="Label Editor"
onclick="selectTab('labelConfig')">
<? } ?>
</td>
<td class="prefsToolbar" valign="middle" align="right">
2005-10-16 16:10:14 +02:00
<input type="submit" onclick="gotoMain()" class="button" value="Return to main">
</td>
2005-10-28 19:58:20 +02:00
</tr>
2005-08-22 03:17:12 +02:00
</tr>
2005-10-28 19:58:20 +02:00
<td id="prefContent" class="prefContent" valign="top" colspan="2">
2005-10-28 19:58:20 +02:00
<p>Loading, please wait...</p>
2005-09-08 09:43:44 +02:00
2005-08-22 03:17:12 +02:00
</td>
</tr>
2005-11-16 18:13:01 +01:00
<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
2005-08-22 03:17:12 +02:00
<tr>
2005-11-01 10:44:59 +01:00
<td class="footer" colspan="2">
2005-08-25 18:08:32 +02:00
<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
2005-11-16 18:37:45 +01:00
<? if (WEB_DEMO_MODE) { ?>
2005-08-25 18:08:32 +02:00
<br>Running in demo mode, some functionality is disabled.
<? } ?>
2005-08-22 03:17:12 +02:00
</td>
</td>
<? } ?>
2005-08-22 03:17:12 +02:00
</table>
</body>
</html>