基本上我想创建一个自定义处理程序来反序列化名为birthday的数据库字段。
我已设法使用默认的views_handler_field正确输出序列化的字段。不幸的是,当我尝试创建自定义处理程序时,我收到此消息:
错误:drappsprofiles的处理程序>生日不存在!
这是文件结构:
all/modules/drapps/drappsprofile/
|->drappsprofiles.views.inc
|->drappsprofiles.module
|->drappsprofiles.install
|->drappsprofiles.info
|->drappsprofiles.inc
|->drappsprofiles_handler_field_birthday.inc
这是drappsprofiles.module
/**
* VIEWS2 MODULE
* Implementation hook_views_api
**/
function drappsprofiles_views_api() {
$info['api'] = 2;
return $info;
}
/*****************************************************************************
* INCLUDES
**/
// Loads Google Apps Profile Integration
module_load_include('inc', 'drappsprofiles');
(...)
这里是drappsprofiles.views.inc
/**
*
* Implementation of hook_views_handlers().
*
**/
function drappsprofiles_views_handlers() {
return array(
'handlers' => array(
'drappsprofiles_handler_field_birthday' => array(
'parent' => 'views_handler_field',
)
)
);
}
/**
* Implementation of hook_views_data().
*
* @return array
**/
function drappsprofiles_views_data() {
(...)
$data['drappsprofiles']['birthday'] = array(
'title' => t('Birthday'),
'help' => t('Users birthday'),
'field' => array(
'handler' => 'drappsprofiles_handler_field_birthday',
'click sortable' => FALSE,
),
);
return $data;
}
drappsprofiles_handler_field_birthday.inc
<?php
/**
*
* Custom views handler for Birthday
*
*/
class drappsprofiles_handler_field_birthday extends views_handler_field {
function render($values) {
$val = unserialize($values->{$this->field_alias});
return ($val);
}
}
似乎drappsprofiles_handler_field_birthday.inc没有被阅读,虽然我无法弄清楚原因。
任何帮助将不胜感激。 (我已经在这里待了两个星期!)
答案 0 :(得分:1)
假设你的(...)在.views.inc中隐藏了代码:
$data['drappsprofiles']['table']['group'] = t('drappsprofiles');
$data['drappsprofiles']['table']['base'] = array(
'field' => 'birthday',
);
$data['drappsprofiles']['table']['join'] = array(
'#global' => array(),
);
我假设它确实如此,因为你的字段有一个组可以从中选择它以便它可以查找丢失的处理程序..
接下来要看的还是在module_views_handlers()中的.views.inc {:
return array(
++ 'info' => array(
++ 'path' => drupal_get_path('module','drappsprofilse'),
++ ),
'handlers' => array(
除此之外,我不想这么说,但卸载并重新安装模块显然会刷新最近的代码调整到.views.inc ..我知道我必须多次,你可能也注意到了这一点。