From: hickert Date: Tue, 21 Aug 2007 08:55:51 +0000 (+0000) Subject: Removed Expert mode. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=84bf8d2c25259402cf38885fc84496f1f81de593;p=gosa.git Removed Expert mode. Moved schedule options out of table. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7085 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/addons/gotomasses/class_goto_task.inc b/plugins/addons/gotomasses/class_goto_task.inc index a4b540561..0fd58f422 100644 --- a/plugins/addons/gotomasses/class_goto_task.inc +++ b/plugins/addons/gotomasses/class_goto_task.inc @@ -7,7 +7,6 @@ class goto_task extends plugin var $plDescription = "This does something"; var $parent = NULL; - var $Expert = FALSE; var $Minute = "*"; var $Hour = "*"; @@ -39,11 +38,6 @@ class goto_task extends plugin trigger_error("Missing parameter: '".$attr."' for goto_task contruction."); }else{ $this->$attr = $data[$attr]; - - /* Check if given value will be selectable via dropdown menus, else enable expert mode */ - if(in_array($attr, array("Minute","Hour","Day","Month","Weekday")) && !isset($tmp[$attr][$data[$attr]])){ - $this->Expert = TRUE; - } } } }else{ @@ -153,7 +147,6 @@ class goto_task extends plugin $smarty->assign("Months" , $tmp['Month']); $smarty->assign("Weekdays", $tmp['Weekday']); $smarty->assign("OGroups" , $this->OGroups); - $smarty->assign("Expert" , $this->Expert); $smarty->assign("Actions" , $this->Actions); $smarty->assign("Target_list" , $divlist->DrawList()); $smarty->assign("new" , $this->new); @@ -192,10 +185,6 @@ class goto_task extends plugin { if(isset($_POST['goto_task_posted'])){ plugin::save_object(); - - if(isset($_POST['ToggleExpertMode'])){ - $this->Expert = !$this->Expert; - } } } diff --git a/plugins/addons/gotomasses/goto_task.tpl b/plugins/addons/gotomasses/goto_task.tpl index ccd46024b..ee47505d0 100644 --- a/plugins/addons/gotomasses/goto_task.tpl +++ b/plugins/addons/gotomasses/goto_task.tpl @@ -59,96 +59,36 @@ - {if $Expert} - - - - - - - - - -
- {t}Minute{/t}  - {render acl=$MinuteACL} - - {/render} - - {render acl=$HourACL} - {t}Hour{/t}  - - {/render} - - {t}Day{/t}  - {render acl=$DayACL} - - {/render} - - {t}Month{/t}  - {render acl=$MonthACL} - - {/render} - - {t}Week day{/t}  - {render acl=$WeekdayACL} - - {/render} -
- {else} - - - - - - - - - - - - - - - -
{t}Minute{/t} - - {render acl=$MinuteACL} - - {/render} - {t}Hour{/t} - - {render acl=$HourACL} - - {/render} - {t}Day{/t} - - {render acl=$DayACL} - - {/render} - {t}Month{/t} - - {render acl=$MonthACL} - - {/render} - {t}Week day{/t} - - {render acl=$WeekdayACL} - - {/render} -
- {/if} - + {t}Minute{/t} + {render acl=$MinuteACL} + + {/render} + {t}Hour{/t} + {render acl=$HourACL} + + {/render} + {t}Day{/t} + {render acl=$DayACL} + + {/render} + {t}Month{/t} + {render acl=$MonthACL} + + {/render} + {t}Week day{/t} + {render acl=$WeekdayACL} + + {/render}