文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>[Drupal] Editing How to modify the CCK date field, set its to-date to null

[Drupal] Editing How to modify the CCK date field, set its to-date to null

时间:2010-09-07  来源:DavidHHuan

Modify the file, sites/all/modules/date/date_elements.inc

 

function date_combo_validate(), maybe line 521,
after the code

if (empty($errors)) {

 

add these:

if ($to_date_empty) {
$item[$to_field] = null;
}

 

sites/all/modules/date/date.theme

function theme_date_display_combination(), maybe line 126
before the code:

if (empty($date1) && empty($date2))

 

add these :

if (empty($element['#node']->node_data_field_date_1_field_date_1_value2)) {
$date2 = null;
}

 

相关阅读 更多 +
排行榜 更多 +
终极街头格斗

终极街头格斗

休闲益智 下载
大炮轰飞机

大炮轰飞机

飞行射击 下载
像素打僵尸

像素打僵尸

飞行射击 下载