Code

Starting move
[gosa.git] / plugins / personal / scalix / main.inc
diff --git a/plugins/personal/scalix/main.inc b/plugins/personal/scalix/main.inc
deleted file mode 100644 (file)
index 0d2558a..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-<?php
-/*
-   This code is part of GOsa (https://gosa.gonicus.de)
-   Copyright (C) 2006  Jörn Dreyer, based on work by
-                       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){
-  /* Reset requested? */
-  if (isset($_POST['edit_cancel']) || 
-      (isset($_GET['reset']) && $_GET['reset'] == 1)){
-    del_lock ($ui->dn);
-    sess_del ('edit');
-    sess_del ('scalixAccount');
-  }
-
-  /* Create mail object on demand */
-  if (!isset($_SESSION['scalixAccount']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){
-    $_SESSION['scalixAccount']= new scalixAccount ($config, $ui->dn);
-    $_SESSION['scalixAccount']->enable_CSN_check();
-    $_SESSION['scalixAccount']->set_acl_base($ui->dn);
-    $_SESSION['scalixAccount']->set_acl_category("users");
-  }
-  $scalixAccount= $_SESSION['scalixAccount'];
-
-  /* save changes back to object */
-  if (isset ($_SESSION['edit'])){
-    $scalixAccount->save_object ();
-  }
-
-  /* Enter edit mode? */
-  if (isset($_POST['edit'])){
-
-    /* Check locking */
-    if (($username= get_lock($ui->dn)) != ""){
-      $_SESSION['back_plugin']= $plug;
-      $_SESSION['LOCK_VARS_TO_USE'] = array("/^edit$/","/^plug$/");
-      $lock_msg =  gen_locked_message ($username, $ui->dn);
-
-    }else{
-
-      /* Lock the current entry */
-      add_lock ($ui->dn, $ui->dn);
-      $_SESSION['dn']= $ui->dn;
-      $_SESSION['edit']= TRUE;
-    }
-  }
-
-  /* save changes to LDAP and disable edit mode */
-  if (isset($_POST['edit_finish'])){
-
-    /* Perform checks */
-    $message= $scalixAccount->check ();
-
-    /* No errors, save object */
-    if (count ($message) == 0){
-      $scalixAccount->save ();
-      gosa_log ("User/scalix object'".$ui->dn."' has been saved");
-      $scalixAccount->acl= "#none#";
-      del_lock ($ui->dn);
-      sess_del ('edit');
-
-      /* Remove object */
-      sess_del ('scalixAccount');
-    } else {
-      /* Errors found, show message */
-      show_errors ($message);
-    }
-  }
-
-  /* Execute formular */
-  $display= $scalixAccount->execute ();
-
-  /* Store changes  in session */
-  if (isset ($_SESSION['edit'])){
-    $_SESSION['scalixAccount']= $scalixAccount;
-  }
-
- /* Show page footer depending on the mode */
-  if ($scalixAccount->is_account){
-
-    $display.= "<p class=\"plugbottom\">";
-
-    /* Are we in edit mode? */
-    if (isset($_SESSION['edit'])){
-      $display.= "<input type=submit name=\"edit_finish\" value=\""._("Save")."\">\n";
-      $display.= "&nbsp;";
-      $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
-      $info= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/closedlock.png').
-             "\"> ".$ui->dn."&nbsp;";
-    } else {
-      $info= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/openlock.png').
-             "\"> ".$ui->dn."&nbsp;";
-
-      if(preg_match("/w/",$ui->get_permissions($ui->dn,"users/scalix"))){
-        $info.= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lamp.png')."\"> ".
-                _("Click the 'Edit' button below to change informations in this dialog");
-
-        $display.= "<input type=submit name=\"edit\" value=\""._("Edit")."\">\n";
-      }
-      $display.= "<input type=\"hidden\" name=\"ignore\">\n";
-    }
-    $display.= "</p>\n";
-  }
-
-
-  $info= "";
-
-  /* Page header*/
-  $display= print_header(get_template_path('images/scalix.png'), _("Scalix settings"), $info).$display;
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>