error="";
$this->path=$path;
$this->url=$url;
// path exist?
if(!is_dir($this->path)){
if($create_if_not_exist){
if(!@mkdir($this->path)){
$this->error=$msg["admin_files_gestion_error_create_folder"].$this->path."
".$msg["admin_files_gestion_error_param_img_folder"];
$this->path="";
return;
}
chmod($this->path, 0777);
} else{
$this->path="";
$this->error=$msg["admin_files_gestion_error_no_path"];
return;
}
}
$this->fetch_data();
}
function fetch_data() {
global $msg;
global $PMBuserid;
$this->error="";
$this->info=array();
$i=0;
if(!is_dir($this->path)){
$this->error=$msg["admin_files_gestion_error_is_no_path"].$this->path;
$this->path="";
return;
}
if(($objects = @scandir($this->path)) !== false) {
foreach ($objects as $object) {
if($object != '.' && $object != '..') {
if (filetype($this->path."/".$object) != "dir") {
$this->info[$i]['name']=$object;
$this->info[$i]['path']=$this->path;
$this->info[$i]['type']=filetype($this->path . $object);
$i++;
}
}
}
}
}
function get_error() {
return $this->error;
}
function get_count_file() {
return count($this->info);
}
function upload($MAX_FILESIZE=0x500000) {
global $msg;
$statut=false;
if (! is_uploaded_file($_FILES['select_file']['tmp_name'])){
$this->error=$msg["admin_files_gestion_error_not_write"].$_FILES['select_file']['name'];
return $statut;
}
if ($_FILES['select_file']['size'] >= $MAX_FILESIZE){
$this->error=$msg["admin_files_gestion_error_to_big"].$_FILES['select_file']['name'];
return $statut;
}
// "/^\.(jpg|jpeg|gif|png|doc|docx|txt|rtf|pdf|xls|xlsx|ppt|pptx){1}$/i";
$no_valid_extension="/^\.(php|PHP){1}$/i";
if(preg_match($no_valid_extension, strrchr($_FILES['select_file']['name'], '.'))){
$this->error=$msg["admin_files_gestion_error_not_valid"].$_FILES['select_file']['name'];
return $statut;
}
// tout semble ok on le déplace au bon endroit
$statut=move_uploaded_file($_FILES["select_file"]["tmp_name"],$this->path.$_FILES['select_file']['name']);
if($statut==false) $this->error=$msg["admin_files_gestion_error_not_loaded"].$_FILES['select_file']['name'];
chmod($this->path.$_FILES['select_file']['name'], 0777);
$this->fetch_data();
return $statut;
}
function delete($filename) {
global $msg;
$statut=false;
foreach($this->info as $elt){
if($filename==$elt['name']){
$file_to_delete=$elt['path'].$filename;
if(file_exists($file_to_delete)){
$statut=unlink($file_to_delete);
if($statut==false) $this->error=$msg["admin_files_gestion_error_not_delete"].$file_to_delete;
}else{
$this->error=$msg["admin_files_gestion_error_is_not_file"].$file_to_delete;
}
break;
}
}
$this->fetch_data();
return($statut);
}
function get_list($post_url="admin.php?categ=mailtpl&sub=img") {
global $files_gestion_list_tpl,$files_gestion_list_line_tpl,$msg;
$tpl=$files_gestion_list_tpl;
$tpl_list="";
$odd_even="odd";
foreach($this->info as $elt){
$tpl_elt=$files_gestion_list_line_tpl;
if($odd_even=='odd')$odd_even="even";
else $odd_even="odd";
$tpl_elt=str_replace('!!odd_even!!',$odd_even, $tpl_elt);
$tpl_elt=str_replace('!!name!!',$elt['name'], $tpl_elt);
$tpl_elt=str_replace('!!path!!',$elt['path'], $tpl_elt);
$tpl_elt=str_replace('!!type!!',$elt['type'], $tpl_elt);
$tpl_elt=str_replace('!!vignette!!',"url.$elt['name']."\" alt=\"\" />", $tpl_elt);
$tpl_list.=$tpl_elt;
}
$tpl=str_replace('!!list!!',$tpl_list, $tpl);
$tpl=str_replace('!!post_url!!',$post_url, $tpl);
return $tpl;
}
function get_sel($sel_name='select_file',$value_tpl="!!path!!!!name!!",$label_tpl="!!name!!") {
global $msg, $pmb_mail_html_format;
$tpl="";
return $tpl;
}
} // files_gestion class end