芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/clients/canaldegap.fr/modules/FileManager/action.chmodfile.php
AccessAllowed() && !$this->AdvancedAccessAllowed()) exit; if(!isset($params["filename"]) || !isset($params["path"])) { $this->Redirect($id, 'defaultadmin'); } if ($this->IntruderCheck($params["path"])) { $this->Redirect($id, 'defaultadmin',$returnid,array("module_error"=>$this->Lang("fileoutsideuploads"))); } $config =& $gCms->GetConfig(); $fullname=$this->Slash($params["path"],$params["filename"]); $fullname=$this->Slash($config["root_path"],$fullname); if (isset($params["newmode"])) { //echo deleting;die(); if (isset($params["cancel"])) { $this->Redirect($id,"defaultadmin",$returnid,array("path"=>$params["path"],"module_message"=>$this->Lang("chmodcancelled"))); } else { $newmode=$this->GetModeFromTable($params); if (isset($params["quickmode"]) && ($params["quickmode"]!="")) { $newmode=$params["quickmode"]; } //echo $newmode;die(); if ($this->SetMode($newmode,$fullname)) { $this->Redirect($id,"defaultadmin",$returnid,array("path"=>$params["path"],"module_message"=>$this->Lang("chmodsuccess"))); } else { $this->Redirect($id,"defaultadmin",$returnid,array("path"=>$params["path"],"module_error"=>$this->Lang("chmodfailure"))); } } } else { $currentmode=$this->GetMode($params["path"],$params["filename"]); $this->smarty->assign('startform', $this->CreateFormStart($id, 'chmodfile', $returnid)); $this->smarty->assign('filename', $this->CreateInputHidden($id,"filename",$params["filename"])); $this->smarty->assign('path', $this->CreateInputHidden($id,"path",$params["path"])); $this->smarty->assign('endform', $this->CreateFormEnd()); $this->smarty->assign('newmodetext', $this->Lang("newpermissions")); $this->smarty->assign('newmode', $this->CreateInputHidden($id,"newmode","newset")); $this->smarty->assign('modetable', $this->GetModeTable($id,$this->GetPermissions($params["path"],$params["filename"]))); $this->smarty->assign('quickmodetext', $this->Lang("quickmode")); $this->smarty->assign('quickmodeinput', $this->CreateInputText($id,"quickmode","",3,3)); $this->smarty->assign('submit', $this->CreateInputSubmit($id, 'submit', $this->Lang('setpermissions'))); $this->smarty->assign('cancel', $this->CreateInputSubmit($id, 'cancel', $this->Lang('cancel'))); echo $this->ProcessTemplate('chmodfile.tpl'); } ?>