summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 59b6262)
raw | patch | inline | side by side (parent: 59b6262)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Jan 2010 17:36:37 +0000 (17:36 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 29 Jan 2010 17:36:37 +0000 (17:36 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15477 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/gofon/admin/systems/gofon/class_phoneGeneric.inc | patch | blob | history | |
gosa-plugins/gofon/admin/systems/gofon/phone.tpl | patch | blob | history |
diff --git a/gosa-plugins/gofon/admin/systems/gofon/class_phoneGeneric.inc b/gosa-plugins/gofon/admin/systems/gofon/class_phoneGeneric.inc
index bb6bcad4ca7d90699e0586b091d7fa0417297ae8..09a0d272d9f659a067d708e70aef4b1a8ac35cee 100644 (file)
var $selected_categorie = 0;
var $netConfigDNS;
var $view_logged = FALSE;
+ var $baseSelector;
/* attribute list for save action */
var $attributes= array("cn", "description",
$this->orig_dn= $this->dn;
$this->orig_base= $this->base;
$this->orig_cn= $this->cn;
+
+ /* Instanciate base selector */
+ $this->baseSelector= new baseSelector($this->get_allowed_bases(), $this->base);
+ $this->baseSelector->setSubmitButton(false);
+ $this->baseSelector->setHeight(300);
+ $this->baseSelector->update(true);
}
function set_acl_base($base)
return($display);
}
- /* Base select dialog */
- $once = true;
- foreach($_POST as $name => $value){
- if(preg_match("/^chooseBase/",$name) && $once){
- $once = false;
- $this->dialog = new baseSelectDialog($this->config,$this,$this->get_allowed_bases());
- $this->dialog->setCurrentBase($this->base);
- }
- }
-
- /* Dialog handling */
- if(is_object($this->dialog)){
- /* Must be called before save_object */
- $this->dialog->save_object();
-
- if($this->dialog->isClosed()){
- $this->dialog = false;
- }elseif($this->dialog->isSelected()){
-
- /* A new base was selected, check if it is a valid one */
- $tmp = $this->get_allowed_bases();
- if(isset($tmp[$this->dialog->isSelected()])){
- $this->base = $this->dialog->isSelected();
- }
-
- $this->dialog= false;
- }else{
- return($this->dialog->execute());
- }
- }
-
/* handle Permit Add*/
if(isset($_POST['goFonPermitAdd']) && $this->acl_is_writeable("goFonPermit")){
if(isset($_POST['goFonPermitNew'])){
/* Fill templating stuff */
$smarty= get_smarty();
-
- $smarty->assign("bases", $this->get_allowed_bases());
+ $smarty->assign("usePrototype", "true");
$tmp = $this->plInfo();
foreach($tmp['plProvidedAcls'] as $name => $translation){
$smarty->assign("selected_categorie",$this->selected_categorie);
/* Assign attributes */
- $smarty->assign("base_select", $this->base);
+ $smarty->assign("base", $this->baseSelector->render());
$smarty->assign("goFonDefaultIPs",array("dynamic"=>_("dynamic"),"network"=>_("Networksettings")));
/* Show main page */
$this->netConfigDNS->save_object();
- /* Set new base if allowed */
- $tmp = $this->get_allowed_bases();
- if(isset($_POST['base'])){
- if(isset($tmp[$_POST['base']])){
- $this->base= $_POST['base'];
+ /* Refresh base */
+ if ($this->acl_is_moveable($this->base)){
+ if (!$this->baseSelector->update()) {
+ msg_dialog::display(_("Error"), msgPool::permMove(), ERROR_DIALOG);
+ }
+ if ($this->base != $this->baseSelector->getBase()) {
+ $this->base= $this->baseSelector->getBase();
+ $this->is_modified= TRUE;
}
}
+
}
diff --git a/gosa-plugins/gofon/admin/systems/gofon/phone.tpl b/gosa-plugins/gofon/admin/systems/gofon/phone.tpl
index 691a06fe7b51bc82c79e2412e6b076d156b8871d..ddbfb7cf2c53048d61d94d86b468f94683dab1f6 100644 (file)
<td><LABEL for="base">{t}Base{/t}</LABEL>{$must}</td>
<td>
{render acl=$baseACL}
- <select id="base" size="1" name="base" title="{t}Choose subtree to place group in{/t}">
- {html_options options=$bases selected=$base_select}
- </select>
-{/render}
-{render acl=$baseACL disable_picture='images/lists/folder_grey.png'}
- <input type="image" name="chooseBase" src="images/lists/folder.png" class="center" title="{t}Select a base{/t}">
+ {$base}
{/render}
</td>
</tr>