Froala 에디터로 삽입한 이미지 썸네일 삭제
2024-04-04 08:10
823
0
0
본문
그누보드5 관리자 메뉴에 '썸네일 삭제' 기능이 있습니다만,
프로알라로 넣은 이미지는 적용이 안되는 부분을 개선했습니다.
<그누보드5>
파일 위치 : /adm/thumbnail_file_delete.php
20번 줄
-전-
$dl = array('file', 'editor');}
-후-
$dl = array('file', 'editor', 'froala'); // 'froala' 디렉토리 추가
26번 줄
-전-
foreach($dl as $val) {
if($handle = opendir(G5_DATA_PATH.'/'.$val)) {
while(false !== ($entry = readdir($handle))) {
if($entry == '.' || $entry == '..')
continue;
$path = G5_DATA_PATH.'/'.$val.'/'.$entry;
if(is_dir($path))
$directory[] = $path;
}
}
}
-후-
foreach($dl as $val) {
if($handle = opendir(G5_DATA_PATH.'/'.$val)) {
while(false !== ($entry = readdir($handle))) {
if($entry == '.' || $entry == '..')
continue;
$path = G5_DATA_PATH.'/'.$val.'/'.$entry;
if(is_dir($path))
$directory[] = $path;
// 'froala' 디렉토리의 하위 폴더 추가
if ($val == 'froala' && is_dir($path)) {
foreach(glob($path . '/*', GLOB_ONLYDIR) as $subdir) {
$directory[] = $subdir;
}
}
}
}
}
<Eyoom>
파일 위치 : /adm/eyoom_admin/core/config/thumbnail_file_delete.php
바꾸는 내용은 위에랑 같음
코드 줄은 변경이 있을 수 있음
0
로그인 후 추천 또는 비추천하실 수 있습니다.
댓글목록0