0
我已經使用自定義格式化程序(Drupal,CCK)做了一個字段。
現在,我得到這個PHP代碼出口從自定義格式化程序到字段?
/**
* Implements hook_theme().
*/
function product_attribute_theme() {
return array(
'product_attribute_formatter_product_attribute' => array(
'arguments' => array('element' => NULL),
),
);
}
/**
* Implements hook_field_formatter_info().
*/
function product_attribute_field_formatter_info() {
return array(
'product_attribute' => array(
'label' => 'Product Attribute',
'description' => t('an Attribute of a Product'),
'field types' => array('content_taxonomy', 'text'),
'multiple values' => CONTENT_HANDLE_MODULE,
),
);
}
function theme_product_attribute_formatter_product_attribute($element) {
return ($element['#item']['value']);
}
我試着將它添加在CCK一個模塊,但它並沒有將它添加到田間地頭,我該怎麼辦呢?