diff --git a/include/datetime.php b/include/datetime.php index b0279492b1..724eec9336 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -196,3 +196,114 @@ function age($dob,$owner_tz = '',$viewer_tz = '') { $year_diff--; return $year_diff; } + + + +// Get days in month +// get_dim($year, $month); +// returns number of days. +// $month[1] = 'January'; +// to match human usage. + +if(! function_exists('get_dim')) { +function get_dim($y,$m) { + + $dim = array( 0, + 31, 28, 31, 30, 31, 30, + 31, 31, 30, 31, 30, 31); + + if($m != 2) + return $dim[$m]; + if(((($y % 4) == 0) && (($y % 100) != 0)) || (($y % 400) == 0)) + return 29; + return $dim[2]; +}} + + +// Returns the first day in month for a given month, year +// get_first_dim($year,$month) +// returns 0 = Sunday through 6 = Saturday +// Months start at 1. + +if(! function_exists('get_first_dim')) { +function get_first_dim($y,$m) { + $d = sprintf('%04d-%02d-01 00:00', intval($y), intval($m)); + return datetime_convert('UTC','UTC',$d,'w'); +}} + +// output a calendar for the given month, year. +// if $links are provided (array), e.g. $links[12] => 'http://mylink' , +// date 12 will be linked appropriately. Today's date is also noted by +// altering td class. +// Months count from 1. + + +// TODO: provide (prev,next) links, define class variations for different size calendars + + +if(! function_exists('cal')) { +function cal($y = 0,$m = 0, $links = false) { + + + // month table - start at 1 to match human usage. + + $mtab = array(' ', + 'January','February','March', + 'April','May','June', + 'July','August','September', + 'October','November','December' + ); + + $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); + $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m'); + if(! $y) + $y = $thisyear; + if(! $m) + $m = intval($thismonth); + + $dn = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'); + $f = get_first_dim($y,$m); + $l = get_dim($y,$m); + $d = 1; + $dow = 0; + $started = false; + + if(($y == $thisyear) && ($m == $thismonth)) + $tddate = intval(datetime_convert('UTC',date_default_timezone_get(),'now','j')); + + $str_month = day_translate($mtab[$m]); + $o = ''; + $o .= ""; + for($a = 0; $a < 7; $a ++) + $o .= ''; + $o .= ''; + + while($d <= $l) { + if(($dow == $f) && (! $started)) + $started = true; + $today = (((isset($tddate)) && ($tddate == $d)) ? "class=\"today\" " : ''); + $o .= "'; + $dow ++; + if(($dow == 7) && ($d <= $l)) { + $dow = 0; + $o .= ''; + } + } + if($dow) + for($a = $dow; $a < 7; $a ++) + $o .= ''; + $o .= '
$str_month $y
' . substr(day_translate($dn[$a]),0,3) . '
"; + $day = str_replace(' ',' ',sprintf('%2.2d', $d)); + if($started) { + if(is_array($links) && isset($links[$d])) + $o .= "$day"; + else + $o .= $day; + $d ++; + } + else + $o .= ' '; + $o .= '
 
'."\r\n"; + + return $o; +}} diff --git a/mod/notifications.php b/mod/notifications.php index 49157c4442..93ca82bb0c 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -108,6 +108,9 @@ function notifications_content(&$a) { '$intro_id' => $rr['intro_id'], '$friend_selected' => $friend_selected, '$fan_selected' => $fan_selected, + '$approve_as' => t('Approve as: '), + '$as_friend' => t('Friend'), + '$as_fan' => t('Fan/Admirer') )); } diff --git a/util/strings.php b/util/strings.php index 8dabb064d2..747d8ef48f 100644 --- a/util/strings.php +++ b/util/strings.php @@ -276,6 +276,9 @@ $a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests'; $a->strings['Claims to be known to you: '] = 'Claims to be known to you: '; $a->strings['yes'] = 'yes'; $a->strings['no'] = 'no'; +$a->strings['Approve as: '] = 'Approve as: '; +$a->strings['Friend'] = 'Friend'; +$a->strings['Fan/Admirer'] = 'Fan/Admirer'; $a->strings['Notification type: '] = 'Notification type: '; $a->strings['Friend/Connect Request'] = 'Friend/Connect Request'; $a->strings['New Follower'] = 'New Follower'; diff --git a/view/de/netfriend.tpl b/view/de/netfriend.tpl deleted file mode 100644 index 79a7a0940a..0000000000 --- a/view/de/netfriend.tpl +++ /dev/null @@ -1,14 +0,0 @@ -
Genehmigen als:
- -
- - -
-
-
-
- - -
-
-
diff --git a/view/de/strings.php b/view/de/strings.php index ef6892e8d0..cc03196066 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -274,6 +274,9 @@ $a->strings['Hide Ignored Requests'] = 'Verberge ignorierte Anfragen'; $a->strings['Claims to be known to you: '] = 'Behauptet dich zu kennen: '; $a->strings['yes'] = 'ja'; $a->strings['no'] = 'nein'; +$a->strings['Approve as: '] = 'Genehmigen als: '; +$a->strings['Friend'] = 'Freund'; +$a->strings['Fan/Admirer'] = 'Fan/Verehrer'; $a->strings['Notification type: '] = 'Benachrichtigungs Typ: '; $a->strings['Friend/Connect Request'] = 'Kontakt-/Freundschaftsanfrage'; $a->strings['New Follower'] = 'Neuer Bewunderer'; diff --git a/view/fr/netfriend.tpl b/view/fr/netfriend.tpl deleted file mode 100644 index b041ec49f7..0000000000 --- a/view/fr/netfriend.tpl +++ /dev/null @@ -1,14 +0,0 @@ -
Approve as:
- -
- - -
-
-
-
- - -
-
-
diff --git a/view/fr/strings.php b/view/fr/strings.php index 8bac6347f9..cbcf11ead8 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -262,6 +262,9 @@ $a->strings['Hide Ignored Requests'] = 'Cacher les demandes ignorées'; $a->strings['Claims to be known to you: '] = 'Prétend que vous le connaissez: '; $a->strings['yes'] = 'oui'; $a->strings['no'] = 'non'; +$a->strings['Approve as: '] = 'Approuver en tant que: '; +$a->strings['Friend'] = 'Ami'; +$a->strings['Fan/Admirer'] = 'Fan/Admirateur'; $a->strings['Notification type: '] = 'Type de notification: '; $a->strings['Friend/Connect Request'] = 'Demande de connexion/relation'; $a->strings['New Follower'] = 'Nouvel abonné'; diff --git a/view/it/netfriend.tpl b/view/it/netfriend.tpl deleted file mode 100644 index d1cdf1a98d..0000000000 --- a/view/it/netfriend.tpl +++ /dev/null @@ -1,14 +0,0 @@ -
Approva come:
- -
- - -
-
-
-
- - -
-
-
diff --git a/view/it/strings.php b/view/it/strings.php index d04e021675..2b4a84d052 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -236,6 +236,9 @@ $a->strings['Hide Ignored Requests'] = 'Nascondi richieste ignorate'; $a->strings['Claims to be known to you: '] = 'Dice di conoscerti: '; $a->strings['yes'] = 'si'; $a->strings['no'] = 'no'; +$a->strings['Approve as: '] = 'Approva come: '; +$a->strings['Friend'] = 'Amico'; +$a->strings['Fan/Admirer'] = 'Fan/Admiratore'; $a->strings['Notification type: '] = 'Tipo di notifica: '; $a->strings['Friend/Connect Request'] = 'Richiesta Amicizia/Connessione'; $a->strings['New Follower'] = 'Nuovo Seguace'; diff --git a/view/en/netfriend.tpl b/view/netfriend.tpl similarity index 83% rename from view/en/netfriend.tpl rename to view/netfriend.tpl index b041ec49f7..c2a92ce9ed 100644 --- a/view/en/netfriend.tpl +++ b/view/netfriend.tpl @@ -1,13 +1,13 @@ -
Approve as:
+
$approve_as
- +
- +
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 35ffe3a897..a820c381cf 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2019,3 +2019,9 @@ a.mail-list-link { } +.calendar { + font-family: Courier, monospace; +} +.today { + color: #FF0000; +} diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index e4ebeda7eb..145123aaf6 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2065,3 +2065,11 @@ a.mail-list-link { .tool-link { cursor: pointer; } + + +.calendar { + font-family: Courier, monospace; +} +.today { + color: #FF0000; +}