新版5.x-1.x-dev的多了些功能
* imagecache+thickbox formatters to imagefields (CCK)
by J�rg Hermsdorf (yojoe)
* thickbox_auto.js contributed by Johannes Dillmann (kleingeist).
Provides automated integration with the image module.
* thickbox_login.js contributed by Jeff Miccolis (jmiccolis).
Provides Thickbox login forms.
那個 Thickbox login很讚
回應
Re: Thickbox
現在雖然可以在 drupal 官網下載 thickbox 這個 module,不過它似乎還在開發中,所以連 module help 都沒打上去,而且也只有 HEAD 的版本(for drupal 5.0),如果你也和我一樣,使用 drupal 4.7 的話,可以採取如下的作法:
<?php
/**
* Implementation of hook_menu().
*/
function thickbox_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'admin/settings/thickbox',
'title' => t('Thickbox'),
'callback' => 'drupal_get_form',
'callback arguments' => 'thickbox_admin_settings',
'access' => user_access('administer site configuration')
);
}
else {
if (arg(0) != 'admin' && arg(0) != 'img_assist' && arg(1) != 'add' && arg(2) != 'edit') {
$path = drupal_get_path('module', 'thickbox');
//drupal_add_css($path .'/thickbox.css');
theme_add_style(drupal_get_path('module', 'thickbox').'/thickbox.css');
drupal_add_js($path . '/jquery.js');
drupal_add_js($path . '/thickbox.js');
if (variable_get('thickbox_auto', 0) && module_exists('image')) {
drupal_add_js($path . '/thickbox_auto.js');
}
}
}
return $items;
}
?>
Re: Thickbox
哈,我沒注意到這個,謝謝 Drake :)
Re: Thickbox
新版5.x-1.x-dev的多了些功能
* imagecache+thickbox formatters to imagefields (CCK)
by J�rg Hermsdorf (yojoe)
* thickbox_auto.js contributed by Johannes Dillmann (kleingeist).
Provides automated integration with the image module.
* thickbox_login.js contributed by Jeff Miccolis (jmiccolis).
Provides Thickbox login forms.
那個 Thickbox login很讚
Re: Thickbox
能不能具体说一下,都需要那些模块,怎么配置啊?我用的是drupal6,谢谢了!
Re: Thickbox
今天試用了一下,drupal6直接在module中啟用即可
詳細使用說明及範例參照
http://jquery.com/demo/thickbox/
Re: Thickbox
今天試用了一下,drupal6直接在module中啟用即可
詳細使用說明及範例參照
http://jquery.com/demo/thickbox/
Re: Thickbox
一直卡著不能應用於登入區塊
爬文後,發覺要設定以下項目 (我太肉腳了)
1)管理 ->區塊
使用者登入啟動(我設在右欄,但不關係的)
預設隱藏此區塊,但使用者可以選擇顯示它。
2)管理->Thick box
Enabled for login block
3)管理->選單
加一個"登入"的項目
路徑填
user/login
Re: Thickbox
WOW......
很不错啊。谢谢。Thickbox 和 Lightbox 我都启用了,试一下先。
my blog:http://dupola.commy Drupal:http://my.dupola.com