-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (25 loc) · 1.14 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**************************************************************************\
* eGroupWare - Bookmarks *
* http://www.egroupware.org *
* Based on Bookmarker Copyright (C) 1998 Padraic Renaghan *
* http://www.renaghan.com/bookmarker *
* -------------------------------------------- *
* 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. *
\**************************************************************************/
use EGroupware\Api;
/* $Id$ */
$GLOBALS['egw_info'] = array(
'flags' => array(
'currentapp' => 'bookmarks',
'nonavbar' => True,
'noheader' => True
)
);
include('../header.inc.php');
Api\Auth::check_password_age('bookmarks','index');
ExecMethod('bookmarks.bookmarks_ui.init');
?>