我创建了一个新模块,为我的Drupal站点定义了一个新的字段类型。安装模块时,我在最近的日志消息中收到警告,警告:api_token_field_schema()中的api_token_field_schema()缺少参数1(/sites/all/modules/custom/api_token/api_token.install的第11行)。 “我看不出我的架构定义有什么问题。任何想法为什么我会得到这个错误?这是我的complete.install文件。
<?php
/**
* @file
* Install, update and uninstall functions for the API token module.
*/
/**
* Implements hook_field_schema().
*/
function api_token_field_schema($field) {
$columns = array(
'apitoken' => array(
'type' => 'varchar',
'length' => 64,
'not null' => FALSE,
),
);
$indexes = array(
'apitoken' => array('apitoken'),
);
return array(
'columns' => $columns,
'indexes' => $indexes,
);
}