egroupware/index.php

173 lines
8.0 KiB
PHP
Raw Normal View History

<?php
2000-08-18 05:24:22 +02:00
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* The file written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
2000-11-09 14:21:36 +01:00
if (!isset($sessionid) || !$sessionid) {
2000-08-18 05:24:22 +02:00
Header("Location: login.php");
exit;
2000-08-18 05:24:22 +02:00
}
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home",
"enable_network_class" => True, "enable_calendar_class" => True,
"enable_todo_class" => True, "enable_addressbook_class" => True
);
2000-08-18 05:24:22 +02:00
include("header.inc.php");
// Note: I need to add checks to make sure these apps are installed.
if (($phpgw_info["user"]["preferences"]["common"]["useframes"] && $phpgw_info["server"]["useframes"] == "allowed")
|| ($phpgw_info["server"]["useframes"] == "always")) {
if ($cd == "yes") {
if (! $navbarframe && ! $framebody) {
$tpl = new Template($phpgw_info["server"]["template_dir"]);
$tpl->set_file(array("frames" => "frames.tpl",
"frame_body" => "frames_body.tpl",
"frame_navbar" => "frames_navbar.tpl"
));
$tpl->set_var("navbar_link",$phpgw->link("index.php","navbarframe=True&cd=yes"));
if ($forward) {
$tpl->set_var("body_link",$phpgw->link($phpgw_info["server"]["webserver_url"] . $forward));
} else {
$tpl->set_var("body_link",$phpgw->link("index.php","framebody=True&cd=yes"));
}
if ($phpgw_info["user"]["preferences"]["common"]["frame_navbar_location"] == "bottom") {
$tpl->set_var("frame_size","*,60");
$tpl->parse("frames_","frame_body",True);
$tpl->parse("frames_","frame_navbar",True);
} else {
$tpl->set_var("frame_size","60,*");
$tpl->parse("frames_","frame_navbar",True);
$tpl->parse("frames_","frame_body",True);
}
$tpl->pparse("out","frames");
}
if ($navbarframe) {
$phpgw->common->phpgw_header();
$phpgw->common->navbar(True);
}
}
} else {
$phpgw->common->phpgw_header();
$phpgw->common->navbar();
}
2000-10-12 19:56:44 +02:00
if ($cd=="yes" && $phpgw_info["user"]["preferences"]["common"]["default_app"]
&& $phpgw_info["user"]["apps"][$phpgw_info["user"]["preferences"]["common"]["default_app"]]) {
$phpgw->redirect($phpgw->link($phpgw_info["server"]["webserver_url"] . "/"
. $phpgw_info["user"]["preferences"]["common"]["default_app"] . "/"));
2000-08-18 05:24:22 +02:00
exit;
}
//$phpgw->hooks->proccess("location","mainscreen");
// $phpgw->preferences->read_preferences("addressbook");
// $phpgw->preferences->read_preferences("email");
// $phpgw->preferences->read_preferences("calendar");
// $phpgw->preferences->read_preferences("stocks");
$phpgw->db->query("select app_version from applications where app_name='admin'",__LINE__,__FILE__);
$phpgw->db->next_record();
if ($phpgw_info["server"]["versions"]["phpgwapi"] > $phpgw->db->f("app_version")) {
2000-11-02 00:37:10 +01:00
echo "<p><b>" . lang("Your are running a newer version of phpGroupWare then your database is setup for")
. "<br>" . lang("It is recommend that you run setup to upgrade your tables to the current version")
. "</b>";
}
$phpgw->translation->add_app("mainscreen");
if (lang("mainscreen_message") != "mainscreen_message*") {
echo "<center>" . stripslashes(lang("mainscreen_message")) . "</center>";
}
2000-08-18 05:24:22 +02:00
2000-11-09 14:21:36 +01:00
if ((isset($phpgw_info["user"]["apps"]["admin"]) &&
$phpgw_info["user"]["apps"]["admin"]) &&
(isset($phpgw_info["server"]["checkfornewversion"]) &&
$phpgw_info["server"]["checkfornewversion"])) {
2000-08-26 03:05:04 +02:00
$phpgw->network->set_addcrlf(False);
$lines = $phpgw->network->gethttpsocketfile("http://www.phpgroupware.org/currentversion");
2000-08-18 05:24:22 +02:00
for ($i=0; $i<count($lines); $i++) {
if (ereg("currentversion",$lines[$i])) {
$line_found = explode(":",chop($lines[$i]));
}
}
if ($line_found[1] > $phpgw_info["server"]["versions"]["phpgwapi"]) {
2000-08-18 05:24:22 +02:00
echo "<p>There is a new version of phpGroupWare avaiable. <a href=\""
. "http://www.phpgroupware.org\">http://www.phpgroupware.org</a>";
}
}
2000-11-11 08:10:24 +01:00
echo '<p><table border="0" width="100%">';
2000-08-18 05:24:22 +02:00
?>
<script langague="JavaScript">
function opennotifywindow()
{
window.open("<?php echo $phpgw->link("notify.php")?>", "phpGroupWare", "width=150,height=25,location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=yes");
}
</script>
<?php
//echo '<a href="javascript:opennotifywindow()">Open notify window</a>';
2000-11-11 08:10:24 +01:00
if ($phpgw_info["user"]["apps"]["stocks"] && $phpgw_info["user"]["preferences"]["stocks"]["enabled"]) {
include($phpgw_info["server"]["server_root"] . "/stocks/inc/functions.inc.php");
echo '<tr><td align="right">' . return_quotes($quotes) . '</td></tr>';
}
$phpgw->common->hook();
2000-10-23 21:16:20 +02:00
if ($phpgw_info["user"]["apps"]["addressbook"]
&& $phpgw_info["user"]["preferences"]["addressbook"]["mainscreen_showbirthdays"]) {
2000-08-18 05:24:22 +02:00
echo "<!-- Birthday info -->\n";
2000-12-20 08:37:49 +01:00
$phpgw->db->query("select ab_firstname,ab_lastname from addressbook where "
. "ab_bday like '" . $phpgw->common->show_date(time(),"n/d")
. "/%' and (ab_owner='" . $phpgw_info["user"]["account_id"] . "' or ab_access='"
. "public')",__LINE__,__FILE__);
2000-08-18 05:24:22 +02:00
while ($phpgw->db->next_record()) {
echo "<tr><td>" . lang("Today is x's birthday!", $phpgw->db->f("ab_firstname") . " "
. $phpgw->db->f("ab_lastname")) . "</td></tr>\n";
2000-08-18 05:24:22 +02:00
}
$tommorow = $phpgw->common->show_date(mktime(0,0,0,
$phpgw->common->show_date(time(),"m"),
$phpgw->common->show_date(time(),"d")+1,
$phpgw->common->show_date(time(),"Y")),"n/d" );
$phpgw->db->query("select ab_firstname,ab_lastname from addressbook where "
2000-10-23 21:16:20 +02:00
. "ab_bday like '$tommorow/%' and (ab_owner='"
2000-12-20 08:37:49 +01:00
. $phpgw_info["user"]["account_id"] . "' or ab_access='public')",__LINE__,__FILE__);
2000-08-18 05:24:22 +02:00
while ($phpgw->db->next_record()) {
2000-10-23 21:16:20 +02:00
echo "<tr><td>" . lang("Tommorow is x's birthday.", $phpgw->db->f("ab_firstname") . " "
. $phpgw->db->f("ab_lastname")) . "</td></tr>\n";
2000-08-18 05:24:22 +02:00
}
echo "<!-- Birthday info -->\n";
}
2000-10-23 21:16:20 +02:00
if ($phpgw_info["user"]["apps"]["calendar"]
&& $phpgw_info["user"]["preferences"]["calendar"]["mainscreen_showevents"]) {
2000-08-18 05:24:22 +02:00
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"]));
2000-11-16 13:15:57 +01:00
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>"
2000-11-18 22:59:11 +01:00
. "<tr><td bgcolor=\"".$phpgw_info["theme"]["bg_text"]."\" valign=\"top\">"
. $phpgw->calendar->print_day_at_a_glance($now)."</td></tr></table>\n";
2000-08-18 05:24:22 +02:00
echo "<!-- Calendar info -->\n";
}
2000-11-17 18:00:17 +01:00
//$phpgw->common->debug_phpgw_info();
2000-11-06 01:57:16 +01:00
//$phpgw->common->debug_list_core_functions();
2000-08-18 05:24:22 +02:00
?>
<TR><TD></TD></TR>
</TABLE>
<?php
include($phpgw_info["server"]["api_inc"] . "/footer.inc.php");
?>