大家好 我想再drupal 中加入簡繁轉換功能
我參考http://drupaltaiwan.org/forum/20100406/4178 這個網址的教學
但是我不知道如何在網頁 body前面加上程式碼
2 在 < /body > 前加入 javascript:
<?php
if (strtoupper(substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,5)) == "ZH-CN") :
?>
var targetEncoding = ( getCookie(targetEncodingCookie) == null ? 2 : getCookie(targetEncodingCookie) );
<?php else: ?>
var targetEncoding = ( getCookie(targetEncodingCookie) == null ? defaultEncoding : getCookie(targetEncodingCookie) );
<?php endif; ?>
var cookieDomain = "http://yourdomain";
translateInitilization();
跟第3點 如何將js 加入到根目錄