답변:
당신은 배치 할 수 있습니다 favicon.ico
테마 폴더에 (your_theme.info와 같은 수준) 및 자동으로 사용됩니다.
Drupal 6, 7 및 8에서 작동합니다.
참고 : 일부 브라우저 는 즐겨 찾기 아이콘을 많이 캐시하므로 새 브라우저를 보려면 추가 길이로 이동해야 할 수도 있습니다.
Drupal 8에서는 다음 settings.yml
위치에 있는 파일을 사용할 수 있습니다.themes/YOURTHEME/config/install/YOURTHEME.settings.yml
테마 로고 / favicon 사용자 정의에 대한 예는 다음과 같습니다.
logo:
use_default: false
path: 'themes/YOURTHEME/logo.png'
favicon:
use_default: false
path: 'themes/YOURTHEME/favicon.png'
그러나 Drupal 관리에 테마가 이미 설치되어있는 동안 이러한 설정을 변경하면 테마를 제거한 후 다시 설치해야합니다. 그렇지 않으면 모든 캐시를 지우더라도 Drupal은 변경 사항을 고려하지 않습니다.
<?php
function hook_page_alter(&$pages) {
$favicon = "http://example.com/sites/default/files/favicon.ico";
$type = theme_get_setting('favicon_mimetype');
drupal_add_html_head_link(array('rel' => 'shortcut icon', 'href' => drupal_strip_dangerous_protocols($favicon), 'type' => $type));
}
?>
/**
* Implements hook_html_head_alter().
*/
function MYTHEME_html_head_alter(&$head_elements) {
// Remove existing favicon location
global $base_url;
$default_favicon_element = 'drupal_add_html_head_link:shortcut icon:' . $base_url . '/misc/favicon.ico';
unset($head_elements[$default_favicon_element]);
// Specify new favicon location
$element = array(
'rel' => 'shortcut icon',
'href' => '/path-to-favicon/favicon.ico',
);
drupal_add_html_head_link($element);
}
/**
* Implements hook_html_head_alter().
*/
// Remove existing favicon location
function MODULENAME_html_head_alter(&$head_elements) {
global $base_url;
$default_favicon_element = 'drupal_add_html_head_link:shortcut icon:' . $base_url . '/misc/favicon.ico';
unset($head_elements[$default_favicon_element]);
// Specify new favicon location
$element = array(
'rel' => 'shortcut icon',
'href' => '/path-to-favicon/favicon.ico',
);
drupal_add_html_head_link($element);
}
자세한 내용은 hook_html_head_alter 를 참조하십시오 .
참고 :에 새 즐겨 찾기 아이콘 위치를 나열 할 필요는 없습니다 hook_html_head_alter()
. 나는 보통 THEMENAME_preprocess_html()
또는로 지정합니다 MODULENAME_init()
.
다음 코드 (사용자 정의 모듈에서)는 추가 아이콘 대신 즐겨 찾기 아이콘을 대체합니다.
/**
* Implements hook_html_head_alter().
*
* Replaces the favicon.
*
* @param array $head_elements
*/
function MYMODULE_html_head_alter(&$head_elements) {
foreach ($head_elements as $key => $element) {
if (1
// The array key can vary, depending on the original favicon setting.
&& 0 === strpos($key, 'drupal_add_html_head_link:shortcut icon:')
&& !empty($element['#attributes']['href'])
&& 'shortcut icon' === $element['#attributes']['rel']
) {
// Make sure to use a file that actually exists!
$favicon_path = drupal_get_path('module', 'MYMODULE') . '/img/favicon_32.png';
$favicon_url = file_create_url($favicon_path);
// If the favicon path came from a user-provided setting, we would also need drupal_strip_dangerous_protocols().
$element['#attributes']['href'] = $favicon_url;
$element['#attributes']['type'] = 'image/png';
$head_elements[$key] = $element;
}
}
}
favicon 파일 위치의 경우 MYMODULE의 모듈 폴더 또는 sites / default / favicon.ico를 제안합니다. 목표는 파일을 버전 제어에 있고 공용 파일 폴더에는없는 것입니다. 우리는 그것이 웹 쓰기가되기를 원하지 않습니다.
대부분의 사람들은 * .png 대신 * .ico를 사용한다고 가정합니다.이 경우 'type'은 원래 값을 유지할 수 있습니다.