add_stylesheet로 추가한 스타일 제거하기 함수 추가
제가 작업하던중에 head를 공통으로 쓰다가
어떤 페이지에서는 스타일이 중복되어서 head에 추가된 스타일을 빼야 되는 경우가 생겼습니다.
그래서 수정해봤습니다.
/lib/common.lib.php 수정해주셔야 합니다.
"class html_process"
이걸 찾으셔서 위쪽에 추가해 줍니다. 아마 2493줄에 있을꺼예요.
function del_stylesheet($stylesheet)
{
global $html_process;
if(trim($stylesheet) && method_exists($html_process, 'split_stylesheet') )
$html_process->split_stylesheet($stylesheet);
}
class html_process 안에
function split_stylesheet($stylesheet) {
$links = $this->css;
$has_item = false;
for($i=0;$i<count($links);$i++) {
$link = $links[$i];
if($link[1] == $stylesheet) {
$has_item = true;
break;
}
}
if($has_item)
array_splice($this->css, $i,1);
}
를 추가해 줍니다.
================================================
function del_stylesheet($stylesheet)
{
global $html_process;
if(trim($stylesheet) && method_exists($html_process, 'split_stylesheet') )
$html_process->split_stylesheet($stylesheet);
}
class html_process {
protected $css = array();
protected $js = array();
......
function split_stylesheet($stylesheet) {
$links = $this->css;
$has_item = false;
for($i=0;$i<count($links);$i++) {
$link = $links[$i];
if($link[1] == $stylesheet) {
$has_item = true;
break;
}
}
if($has_item)
array_splice($this->css, $i,1);
}
......
}
============================================
이런 모양이 될 것 같습니다.
사용법은
del_stylesheet('<link rel="stylesheet" href="'.G5_URL.'/adm/css/admin.css">');
본인이 add_stylesheet로 추가했던 내용 그대로 입력하시면 됩니다.
댓글 5개
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4402 | ||
| 24 | 12년 전 | 7368 | ||
| 23 | 12년 전 | 5223 | ||
| 22 |
JMoon
|
12년 전 | 6243 | |
| 21 |
오늘도망했다
|
12년 전 | 13478 | |
| 20 | 12년 전 | 4320 | ||
| 19 | 12년 전 | 8044 | ||
| 18 | 12년 전 | 6510 | ||
| 17 | 12년 전 | 5414 | ||
| 16 | 12년 전 | 6132 | ||
| 15 | 12년 전 | 5612 | ||
| 14 | 12년 전 | 9229 | ||
| 13 | 12년 전 | 8199 | ||
| 12 | 12년 전 | 4949 | ||
| 11 | 12년 전 | 7265 | ||
| 10 |
|
12년 전 | 8958 | |
| 9 | 12년 전 | 7552 | ||
| 8 | 12년 전 | 8128 | ||
| 7 | 12년 전 | 7327 | ||
| 6 | 12년 전 | 7457 | ||
| 5 | 12년 전 | 7374 | ||
| 4 | 12년 전 | 7462 | ||
| 3 | 12년 전 | 6956 | ||
| 2 | 12년 전 | 5801 | ||
| 1 | 12년 전 | 12121 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기