File Manager

Current Path : /webspace/www.promiel.be/html/modules/FileManager/
Upload File :
Current File : //webspace/www.promiel.be/html/modules/FileManager/action.chmodfile.php

<?php

if (!function_exists("cmsms")) exit;
if (!$this->AccessAllowed() && !$this->AdvancedAccessAllowed()) exit;

if (!isset($params["filename"]) || !isset($params["path"])) {
  $this->Redirect($id, 'defaultadmin');
}

if( filemanager_utils::test_invalid_path($params['path']) ) {
  $this->Redirect($id, 'defaultadmin', $returnid, array("fmerror" => "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"], "fmmessage" => "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"], "fmmessage" => "chmodsuccess"));
    } else {
      $this->Redirect($id, "defaultadmin", $returnid, array("path" => $params["path"], "fmerror" => "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');
}
?>

File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com