summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 69dcf98)
raw | patch | inline | side by side (parent: 69dcf98)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 Jul 2006 06:08:43 +0000 (06:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 Jul 2006 06:08:43 +0000 (06:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4302 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/connectivity/class_pptpAccount.inc | patch | blob | history |
diff --git a/plugins/personal/connectivity/class_pptpAccount.inc b/plugins/personal/connectivity/class_pptpAccount.inc
index 1f0627488d830a25d4d778986638a8be9749f16a..622fc0126105694f8217f3c37e4dc4a2b4e4162c 100644 (file)
<?php
/*
- This code is part of GOsa (https://gosa.gonicus.de)
- Copyright (C) 2005 Guillaume Delecourt
- Copyright (C) 2005 Benoit Mortier
+ This code is part of GOsa (https://gosa.gonicus.de)
+ Copyright (C) 2005 Guillaume Delecourt
+ Copyright (C) 2005 Benoit Mortier
- 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 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.
+ 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
-*/
+ 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
+ */
class pptpAccount extends plugin
{
function execute()
{
- /* Call parent execute */
-// plugin::execute();
+ /* Call parent execute */
+ // plugin::execute();
/* Show tab dialog headers */
$display= "";
$smarty->assign("wstate", "disabled");
}
-
-
if(($this->is_account && $this->acl_is_removeable()) || (!$this->is_account && $this->acl_is_createable())) {
$smarty->assign('gosapptpACL', "");
}else{
function remove_from_parent()
{
- if($this->acl_is_removeable())
+ if($this->acl_is_removeable()){
/* Cancel if there's nothing to do here */
if (!$this->initially_was_account){
return;
"plShortName" => _("PPTP"),
"plDescription" => _("PPTP account"),
"plSelfModify" => TRUE,
- "plDepends" => array("connectivity"),
+ "plDepends" => array("user"),
"plPriority" => 1, // Position in tabs
"plSection" => "personal", // This belongs to personal
- "plCategory" => array("gosaAccount"),
+ "plCategory" => array("users"),
"plOptions" => array(),
- "plProvidedAcls" => array(
+ "plProvidedAcls" => array()
));
}
}