source: trunk/calendar/inc/hook_home_year.inc.php @ 2

Revision 2, 1.4 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2  /**************************************************************************\
3  * eGroupWare - Calendar                                                    *
4  * http://www.egroupware.org                                                *
5  * Based on Webcalendar by Craig Knudsen <cknudsen@radix.net>               *
6  *          http://www.radix.net/~cknudsen                                  *
7  * Written by Mark Peters <skeeter@phpgroupware.org>                        *
8  * --------------------------------------------                             *
9  *  This program is free software; you can redistribute it and/or modify it *
10  *  under the terms of the GNU General Public License as published by the   *
11  *  Free Software Foundation; either version 2 of the License, or (at your  *
12  *  option) any later version.                                              *
13  \**************************************************************************/
14
15
16        $d1 = strtolower(substr(PHPGW_APP_INC,0,3));
17        if($d1 == 'htt' || $d1 == 'ftp' )
18        {
19                echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
20                $GLOBALS['phpgw']->common->phpgw_exit();
21        }
22        unset($d1);
23
24        $GLOBALS['extra_data'] = $GLOBALS['css']."\n".'<td>'."\n".'<table border="0" cols="3"><tr><td align="center" width="100%" valign="top">'
25                . ExecMethod('calendar.uicalendar.get_year')
26                .'</td>'."\n".'</tr>'."\n".'</table>'."\n".'</td>'."\n";
27?>
Note: See TracBrowser for help on using the repository browser.