Code

Starting move
[gosa.git] / plugins / addons / addressbook / main.inc
diff --git a/plugins/addons/addressbook/main.inc b/plugins/addons/addressbook/main.inc
deleted file mode 100644 (file)
index dbfd760..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/*
-  This code is part of GOsa (https://gosa.gonicus.de)
-  Copyright (C) 2003  Cajus Pollmeier
-
-  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.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-*/
-
-if (!$remove_lock){
-       /* Create phonelist object on demand */
-       if (!isset($_SESSION['addressbook']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){
-               $_SESSION['addressbook']= new addressbook ($config);
-               $_SESSION['addressbook']->set_acl_base($ui->dn);
-               $_SESSION['addressbook']->set_acl_category("addressbook");
-               unset($_SESSION['show_info']);
-       }
-       $addressbook= $_SESSION['addressbook'];
-
-       /* Execute formular */
-       $display= $addressbook->execute ();
-       $display.= "<input type=\"hidden\" name=\"ignore\">\n";
-
-       /* Page header*/
-       $display= print_header(get_template_path('images/addressbook.png'), _("Address book")).$display;
-
-       /* Store changes  in session */
-       $_SESSION['addressbook']= $addressbook;
-}
-?>