Here is a backtrace

backtrace_error_handler (Array, 2 elements)
function (String, 23 characters ) backtrace_error_handler | (Callback) backtrace_error_handler();
args (Array, 5 elements)
0 (Integer) 2
1 (String, 60 characters ) class_exists() expects parameter 1 to be string...
class_exists() expects parameter 1 to be string, array given

2 (String, 85 characters ) path/to/mysite...
path/to/mysiteib/contrib/views/includes/handlers.inc

3 (Integer) 16
4 (Array, 2 elements)
definition (Array, 4 elements)
handler (Array, 2 elements)
0 (String, 24 characters ) views_handler_field_date
1 (String, 24 characters ) views_handler_field_date

group (Array, 2 elements)
0 (String, 15 characters ) Big Blue Button
1 (String, 15 characters ) Big Blue Button

title (Array, 2 elements)
0 (String, 7 characters ) Created
1 (String, 7 characters ) Created

help (Array, 2 elements)
0 (String, 23 characters ) The creation timestamp.
1 (String, 23 characters ) The creation timestamp.

type (String, 7 characters ) handler

class_exists (Array, 4 elements)
file (String, 85 characters ) path/to/mysite...
path/to/mysiteib/contrib/views/includes/handlers.inc

line (Integer) 16
function (String, 12 characters ) class_exists | (Callback) class_exists();
args (Array, 1 element)
0 (Array, 2 elements)
0 (String, 24 characters ) views_handler_field_date
1 (String, 24 characters ) views_handler_field_date

_views_create_handler (Array, 4 elements)
file (String, 85 characters ) path/to/mysite...
path/to/mysiteib/contrib/views/includes/handlers.inc

line (Integer) 100
function (String, 21 characters ) _views_create_handler | (Callback) _views_create_handler();
args (Array, 1 element)
0 (Array, 4 elements)
handler (Array, 2 elements)
0 (String, 24 characters ) views_handler_field_date
1 (String, 24 characters ) views_handler_field_date

group (Array, 2 elements)
0 (String, 15 characters ) Big Blue Button
1 (String, 15 characters ) Big Blue Button

title (Array, 2 elements)
0 (String, 7 characters ) Created
1 (String, 7 characters ) Created

help (Array, 2 elements)
0 (String, 23 characters ) The creation timestamp.
1 (String, 23 characters ) The creation timestamp.

_views_prepare_handler (Array, 4 elements)
file (String, 76 characters ) path/to/mysite...
line (Integer) 667
function (String, 22 characters ) _views_prepare_handler | (Callback) _views_prepare_handler();
args (Array, 3 elements)
0 (Array, 1 element)
1 (Array, 12 elements)
table (Array, 2 elements)
meetingToken (Array, 5 elements)
name (Array, 5 elements)
title (Array, 2 elements)
0 (String, 8 characters ) Username
1 (String, 8 characters ) Username

help (Array, 2 elements)
0 (String, 38 characters ) The username displayed in the meeting.
1 (String, 38 characters ) The username displayed in the meeting.

field (Array, 1 element)
handler (Array, 2 elements)
0 (String, 19 characters ) views_handler_field
1 (String, 19 characters ) views_handler_field

filter (Array, 1 element)
sort (Array, 1 element)

meetingID (Array, 5 elements)
attendeePW (Array, 3 elements)
moderatorPW (Array, 3 elements)
welcome (Array, 3 elements)
dialNumber (Array, 3 elements)
logoutURL (Array, 3 elements)
created (Array, 5 elements)
join_attendee (Array, 1 element)
join_moderator (Array, 1 element)

2 (String, 7 characters ) created

views_get_handler (Array, 4 elements)
file (String, 91 characters ) path/to/mysite...
line (Integer) 29
function (String, 17 characters ) views_get_handler | (Callback) views_get_handler();
args (Array, 3 elements)
0 (String, 12 characters ) bbb_meetings
1 (String, 7 characters ) created
2 (String, 5 characters ) field

_date_api_fields (Array, 4 elements)
file (String, 90 characters ) path/to/mysite...
line (Integer) 167
function (String, 16 characters ) _date_api_fields | (Callback) _date_api_fields();
args (Array, 1 element)
0 (String, 4 characters ) node

date_api_fields (Array, 4 elements)
file (String, 99 characters ) path/to/mysite...
line (Integer) 553
function (String, 15 characters ) date_api_fields | (Callback) date_api_fields();
args (Array, 1 element)
0 (String, 4 characters ) node

get_query_fields (Array, 7 elements)
set_relationship (Array, 7 elements)
_build (Array, 7 elements)
build (Array, 7 elements)
execute (Array, 7 elements)
execute_display (Array, 7 elements)
views_page (Array, 2 elements)
call_user_func_array (Array, 4 elements)
menu_execute_active_handler (Array, 4 elements)

CommentFileSizeAuthor
#4 946038.patch901 bytesOwen Barton
#3 946038.patch901 bytesOwen Barton
#2 946038.patch901 bytesOwen Barton
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

SocialNicheGuru’s picture

I think this might be related but I am not sure

http://drupal.org/node/946652

Owen Barton’s picture

Version: » 6.x-1.x-dev
Status: Active » Needs review
FileSize
901 bytes

This is occurring because no hook_views_handlers() is being declared, which is neccessary for Views to know of the existence of the views_handler_field_bbb_join_attendee.inc and views_handler_field_bbb_join_moderator.inc files, so that it can load them when these handlers are used.

Attached patch adds this hook and works for me.

Owen Barton’s picture

FileSize
901 bytes

I also discovered that the URLs generated by the handlers are incorrect, so attached patch fixes that too.

Owen Barton’s picture

FileSize
901 bytes

There was another issue too...

SocialNicheGuru’s picture

the patch in #4 works

Owen Barton’s picture

Status: Needs review » Reviewed & tested by the community
dawehner’s picture

In general the patch looks fine but the code in the module looks somehow funny :)

There is bbb.views.inc, bbb_views.views.inc and bbb_ views.module.

sanduhrs’s picture

Status: Reviewed & tested by the community » Fixed

Thanks for the patch.

  • sanduhrs committed 4efc34e on 6.x-1.x authored by Owen Barton
    Issue #946038 by Owen Barton: Warnings from views handlers because of...
  • sanduhrs committed bb1f57d on 6.x-1.x authored by Owen Barton
    Issue #946038 by Owen Barton: Warnings from views handlers because of...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.