묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 첨부파일 아이콘 삭제가 안됩니다 ㅠㅠ
2013.10.24 12:01
이 글을 보고 첨부파일 아이콘 삭제를 시도하였는데요,
아래 부분을 전부 삭제했는데도, 여전히 image 첨부파일 아이콘이 뜹니다.
어떻게 해야 할까요?
/* $content = $this->get('content'); // Check image files preg_match_all('!<img([^>]*?)>!is', $content, $matches); $cnt = count($matches[0]); for($i=0;$i<$cnt;$i++) { if(preg_match('/editor_component=/',$matches[0][$i])&&!preg_match('/image_(gallery|link)/i',$matches[0][$i])) continue; $buffs[] = "image"; $check_files = true; break; } // Check video files if(preg_match('!<embed([^>]*?)>!is', $content) || preg_match('/editor_component=("|\')*multimedia_link/i', $content) ) { $buffs[] = "movie"; $check_files = true; } */ // Check the attachment if($this->hasUploadedFiles()) $buffs[] = "file"; return $buffs;
|
첨부파일만 없앨것이라면 무식한 방법
/modules/document/tpl/icons/file.gif 을 삭제한다.