summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-28 08:43:03 +0100
committerAndrew Dolgov <[email protected]>2005-11-28 08:43:03 +0100
commitbe773442d23f8038549f23ed012101a86270451c (patch)
tree122a404857ee4564cadacf301a165a754614818b
parent63186cdb788724f02e8401e9f3b2f1d57ba438b3 (diff)
option HEADLINES_SMART_DATE
-rw-r--r--backend.php9
-rw-r--r--functions.php20
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
4 files changed, 31 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 81f566b01..c81e1ccb1 100644
--- a/backend.php
+++ b/backend.php
@@ -1098,8 +1098,13 @@
print "</td>";
}
- $updated_fmt = date(get_pref($link, 'SHORT_DATE_FORMAT'),
- strtotime($line["updated"]));
+ if (get_pref($link, 'HEADLINES_SMART_DATE')) {
+ $updated_fmt = smart_date_time(strtotime($line["updated"]));
+ } else {
+ $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
+ $updated_fmt = date($short_date, strtotime($line["updated"]));
+ }
+
print "<td class=\"hlUpdated\"><nobr>$updated_fmt</nobr></td>";
print "</tr>";
diff --git a/functions.php b/functions.php
index f0077efae..7a09b9d86 100644
--- a/functions.php
+++ b/functions.php
@@ -737,4 +737,24 @@
return null;
}
}
+
+ function smart_date_time($timestamp) {
+ if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
+ return date("G:i", $timestamp);
+ } else if (date("Y.m", $timestamp) == date("Y.m")) {
+ return date("M d, G:i", $timestamp);
+ } else {
+ return date("Y/m/d G:i");
+ }
+ }
+
+ function smart_date($timestamp) {
+ if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
+ return "Today";
+ } else if (date("Y.m", $timestamp) == date("Y.m")) {
+ return date("D m", $timestamp);
+ } else {
+ return date("Y/m/d");
+ }
+ }
?>
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index b7a9686b1..932e6f3a2 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -200,6 +200,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHOW_CONTENT_PREVIEW', 1, 'true', 'Show content preview in headlines list',2);
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HEADLINES_SMART_DATE', 1, 'true', 'Use more accessible date/time format for headlines',3);
+
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 9204b6573..e4e01f1b0 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -185,6 +185,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHORT_DATE_FORMAT', 2, 'M d, G:i', 'Short date format',3);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('LONG_DATE_FORMAT', 2, 'D, M d Y - G:i', 'Long date format',3);
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HEADLINES_SMART_DATE', 1, 'true', 'Use more accessible date/time format for headlines',3);
+
create table ttrss_user_prefs (
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,