File: D:/web/itpartnership.net (cms)/modules/FileManager/action.chmodfile.php
<?php
if (!isset($gCms)) exit;
if (!$this->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');
}
?>