DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
Fix for facebook_status.views.inc
View
Fix
January 25, 2009 - 1:39am — Anonymous
<?php
//$Id$
/**
* @file
* Views integration.
*/
/**
* Implementation of hook_views_data().
*/
function
facebook_status_hook_views_data
(
)
{
$data
=
array
(
'facebook_status'
=
>
array
(
'table'
=
>
array
(
'group'
=
>
t
(
'User'
)
,
'base'
=
>
array
(
'field'
=
>
'sid'
,
'title'
=
>
t
(
'Facebook-style Statuses'
)
,
'help'
=
>
t
(
'Each user can have a status.'
)
,
)
,
)
,
'status_time'
=
>
array
(
'title'
=
>
t
(
'Status Time'
)
,
'help'
=
>
t
(
'The time the status was submitted.'
)
,
'field'
=
>
array
(
'handler'
=
>
'views_handler_field_date'
,
'click sortable'
=
>
TRUE
)
,
'argument'
=
>
array
(
'handler'
=
>
'views_handler_argument_date'
)
,
)
,
'status_fb'
=
>
array
(
'title'
=
>
t
(
'Status'
)
,
'help'
=
>
t
(
'The status text.'
)
,
'field'
=
>
array
(
'handler'
=
>
'views_handler_field_markup'
,
'click sortable'
=
>
TRUE
)
,
)
,
)
,
)
;
$data
[
'users'
]
[
'table'
]
[
'join'
]
[
'facebook_status'
]
=
array
(
'field'
=
>
'uid'
,
'left_field'
=
>
'uid'
,
'type'
=
>
'INNER'
,
)
;
}
//In the actual module file, not in facebook_status.views.inc.
/**
* Implementation of hook_views_api().
*/
function
facebook_status_views_api
(
)
{
return
array
(
'api'
=
>
2.000,
)
;
}
views 2
Submit Fix
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
<?php //$Id$ /** * @file * Views integration. */ /** * Implementation of hook_views_data(). */ function facebook_status_hook_views_data() { $data = array( 'facebook_status' => array( 'table' => array( 'group' => t('User'), 'base' => array( 'field' => 'sid', 'title' => t('Facebook-style Statuses'), 'help' => t('Each user can have a status.'), ), ), 'status_time' => array( 'title' => t('Status Time'), 'help' => t('The time the status was submitted.'), 'field' => array('handler' => 'views_handler_field_date', 'click sortable' => TRUE), 'argument' => array('handler' => 'views_handler_argument_date'), ), 'status_fb' => array( 'title' => t('Status'), 'help' => t('The status text.'), 'field' => array('handler' => 'views_handler_field_markup', 'click sortable' => TRUE), ), ), ); $data['users']['table']['join']['facebook_status'] = array( 'field' => 'uid', 'left_field' => 'uid', 'type' => 'INNER', ); } //In the actual module file, not in facebook_status.views.inc. /** * Implementation of hook_views_api(). */ function facebook_status_views_api() { return array( 'api' => 2.000, ); }
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.