summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5b2ded5)
raw | patch | inline | side by side (parent: 5b2ded5)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 3 Mar 2010 10:02:07 +0000 (10:02 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 3 Mar 2010 10:02:07 +0000 (10:02 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15886 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/personal/password/main.inc | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-core/plugins/personal/password/main.inc b/gosa-core/plugins/personal/password/main.inc
--- /dev/null
@@ -0,0 +1,62 @@
+<?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id: main.inc 13288 2008-12-12 14:54:13Z hickert $$
+ *
+ * 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
+ */
+
+
+/* Remove locks created by this plugin
+*/
+$lock_msg="";
+if ($remove_lock){
+ if(session::is_set('password')){
+ //Nothing to do here
+ }
+}
+
+/* Remove this plugin from session
+*/
+if ( $cleanup ){
+ session::un_set('password');
+ session::un_set('edit');
+}else{
+
+ /* Reset requested? */
+ if (isset($_POST['edit_cancel'])){
+ session::un_set ('edit');
+ session::un_set ('password');
+ }
+
+ /* Create password object on demand */
+ if (!session::is_set('password') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
+ session::set('password', new password ($config, $ui->dn));
+ }
+ $password = session::get('password');
+
+ /* Execute formular */
+ $display.= $password->execute ();
+
+ /* Page header*/
+ $display= print_header(get_template_path('plugins/password/images/plugin.png'),
+ _("Password settings"), "").$display;
+
+}
+
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>