summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4e29546)
raw | patch | inline | side by side (parent: 4e29546)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Mar 2006 07:06:47 +0000 (07:06 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Mar 2006 07:06:47 +0000 (07:06 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2868 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_CopyPasteHandler.inc | patch | blob | history |
index a6d1a8a30fce48c022b6167f1d6697ae159a7fbf..f83b415ba22242efa150765fb19c7f5772c0a676 100644 (file)
var $dialogOpen = false;
var $objectdn = false;
+ var $was_successfull = false;
+
/* Create CP handler
*/
function CopyPasteHandler($config){
/* Clears all copy & paste informations
*/
- function Clear()
+ function Clear($current_too = false)
{
$this->copyCurrent = false;
$this->cutCurrent = false;
$this->dialogOpen = false;
- $this->current = NULL;
+ if($current_too){
+ $this->current = NULL;
+ }
}
foreach($obj->attributes as $attr){
$this->current->by_object[$name]->$attr = $obj->$attr;
}
- foreach(array('is_account','gotoHotplugDevices','gotoLogonScripts','gotoProfileServers','gotoProfileFlag_C','gotoProfileFlag_L','gotoPrinter','useProfile','OrigCn','Categories') as $attr){
- if(isset($obj->$attr)){
- $this->current->by_object[$name]->$attr = $obj->$attr;
- }
- }
-
}
if($this->isCurrentObjectPastAble()){
return(true);
}
- /* Displays a dialog which allows the user to fix all dependencies of this object.
- Create unique names, ids, or what ever
- */
- function execute()
- {
- $this->dialogOpen = true;
-
- /* Cut & paste
- */
- if($this->cutCurrent){
- $this->current->save();
- $this->dialogOpen =false;
- $smarty = get_smarty();
- $smarty->assign("Complete",true);
- $this->Clear();
- return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
-
- /* Copy & paste
- */
- }else{
- if(isset($_POST['PerformCopyPaste'])){
- $msgs = $this->check();
- if(count ($msgs) ){
- foreach( $msgs as $msg){
- print_red($msg);
- }
- }else{
- $this->current->save();
- $this->dialogOpen =false;
- $smarty = get_smarty();
- $smarty->assign("Complete",true);
- $this->Clear();
- return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
- }
- }
- $smarty = get_smarty();
- $smarty->assign("Complete",false);
- $smarty->assign("AttributesToFix",$this->generateAttributesToFix());
- $smarty->assign("objectDN" ,$this->objectdn);
- return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
- }
- }
+ /* Displays a dialog which allows the user to fix all dependencies of this object.
+ Create unique names, ids, or what ever
+ */
+ function execute($displayMessageOnSuccess = true)
+ {
+ $this->dialogOpen = true;
+
+ /* Cut & paste
+ */
+ if($this->cutCurrent){
+ $this->current->save();
+ $this->dialogOpen =false;
+ $smarty = get_smarty();
+ $smarty->assign("Complete",true);
+ $this->Clear();
+ return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
+
+ /* Copy & paste
+ */
+ }else{
+ if(isset($_POST['PerformCopyPaste'])){
+ $msgs = $this->check();
+ if(count ($msgs) ){
+ foreach( $msgs as $msg){
+ print_red($msg);
+ }
+ }else{
+ $this->current->save();
+ $this->dialogOpen =false;
+ $smarty = get_smarty();
+ $smarty->assign("Complete",true);
+ $this->Clear();
+ if($displayMessageOnSuccess){
+ return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
+ }else{
+ return( false);
+ }
+ }
+ }
+ $smarty = get_smarty();
+ $smarty->assign("Complete",false);
+ $smarty->assign("AttributesToFix",$this->generateAttributesToFix());
+ $smarty->assign("objectDN" ,$this->objectdn);
+ return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE)));
+ }
+ }
/* Create dialog which asks unique attributes values ...
* calls tabs -> getCopyDialog()
* which calls tab -> getCopyDialog()
*/
- function generateAttributesToFix()
- {
- return($this->current->getCopyDialog());
- }
+ function generateAttributesToFix()
+ {
+ return($this->current->getCopyDialog());
+ }
/* Set a single attribute to specified value
* example : ("base", $newBase );
*/
- function SetVar($name,$value)
- {
- foreach($this-> current->by_object as $key => $obj){
- if(isset($this->current->by_object[$key]->$name)){
- $this->current->by_object[$key]->$name = $value;
- }
- }
- }
+ function SetVar($name,$value)
+ {
+ foreach($this-> current->by_object as $key => $obj){
+ if(isset($this->current->by_object[$key]->$name)){
+ $this->current->by_object[$key]->$name = $value;
+ }
+ }
+ }
/* Save new values posted by copy & paste dialog
- */
- function save_object()
- {
- /* Assign posted var to all tabs
+ */
+ function save_object()
+ {
+ /* Assign posted var to all tabs
*/
$this->current->saveCopyDialog();
}
/* Returns possible errors returned from all including tabs ..
*/
- function check()
- {
- $ret = array();
- foreach($this-> current->by_object as $obj){
- $ret = array_merge($ret , $obj->check());
- }
-
- return($ret);
- }
+ function check()
+ {
+ $ret = array();
+ foreach($this-> current->by_object as $obj){
+ $ret = array_merge($ret , $obj->check());
+ }
+
+ return($ret);
+ }
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: