forked from extern/egroupware
added calendar hook for home app
This commit is contained in:
parent
0d342d2916
commit
7d4eb35da4
25
calendar/inc/hook_home.inc.php
Executable file
25
calendar/inc/hook_home.inc.php
Executable file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
$d1 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
|
||||
if($d1 == "htt" || $d1 == "ftp" ) {
|
||||
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
||||
$phpgw->common->phpgw_exit();
|
||||
} unset($d1);
|
||||
|
||||
$tmp_app_inc = $phpgw_info["server"]["app_inc"];
|
||||
$phpgw_info["server"]["app_inc"] = $phpgw_info["server"]["server_root"]."/calendar/inc";
|
||||
|
||||
if ($phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
|
||||
include($phpgw_info["server"]["app_inc"] . "/functions.inc.php");
|
||||
echo "<!-- Calendar info -->\n";
|
||||
$now = $phpgw->calendar->splitdate(mktime (0, 0, 0, $phpgw->calendar->today["month"], $phpgw->calendar->today["day"], $phpgw->calendar->today["year"]) - ((60 * 60) * $phpgw_info["user"]["preferences"]["common"]["tz_offset"]));
|
||||
|
||||
echo "<table border=\"0\" width=\"70%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\">"
|
||||
. lang(date("F",$phpgw->calendar->today["raw"])) . " " .$phpgw->calendar->today["day"] . ", " . $phpgw->calendar->today["year"] ."</tr></td>"
|
||||
. "<tr><td bgcolor=\"".$phpgw_info["theme"]["bg_text"]."\" valign=\"top\">"
|
||||
. $phpgw->calendar->print_day_at_a_glance($now)."</td></tr></table>\n";
|
||||
echo "<!-- Calendar info -->\n";
|
||||
unset($phpgw->calendar);
|
||||
}
|
||||
|
||||
$phpgw_info["server"]["app_inc"] = $tmp_app_inc;
|
||||
?>
|
16
index.php
16
index.php
@ -125,7 +125,7 @@
|
||||
include($phpgw_info["server"]["server_root"] . "/stocks/inc/functions.inc.php");
|
||||
echo '<tr><td align="right">' . return_quotes($quotes) . '</td></tr>';
|
||||
}
|
||||
$phpgw->common->hook();
|
||||
$phpgw->common->hook("",array("email","calendar"));
|
||||
if ($phpgw_info["user"]["apps"]["addressbook"]
|
||||
&& $phpgw_info["user"]["preferences"]["addressbook"]["mainscreen_showbirthdays"]) {
|
||||
echo "<!-- Birthday info -->\n";
|
||||
@ -150,20 +150,6 @@
|
||||
}
|
||||
echo "<!-- Birthday info -->\n";
|
||||
}
|
||||
|
||||
if ($phpgw_info["user"]["apps"]["calendar"]
|
||||
&& $phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
|
||||
include($phpgw_info["server"]["server_root"]."/calendar/inc/functions.inc.php");
|
||||
echo "<!-- Calendar info -->\n";
|
||||
$now = $phpgw->calendar->splitdate(mktime (0, 0, 0, $phpgw->calendar->today["month"], $phpgw->calendar->today["day"], $phpgw->calendar->today["year"]) - ((60 * 60) * $phpgw_info["user"]["preferences"]["common"]["tz_offset"]));
|
||||
|
||||
echo "<table border=\"0\" width=\"70%\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"center\">"
|
||||
. lang(date("F",$phpgw->calendar->today["raw"])) . " " .$phpgw->calendar->today["day"] . ", " . $phpgw->calendar->today["year"] ."</tr></td>"
|
||||
. "<tr><td bgcolor=\"".$phpgw_info["theme"]["bg_text"]."\" valign=\"top\">"
|
||||
. $phpgw->calendar->print_day_at_a_glance($now)."</td></tr></table>\n";
|
||||
echo "<!-- Calendar info -->\n";
|
||||
}
|
||||
|
||||
//$phpgw->common->debug_phpgw_info();
|
||||
//$phpgw->common->debug_list_core_functions();
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user