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 Example of using 'title callback' and 'title arguments' in Drupal 6
View
Fix
January 23, 2009 - 9:29am — Anonymous
/**
* Implementation of hook_menu().
*/
function
cck_gallery_menu
(
)
{
$items
[
'cck-galleries/%user'
]
=
array
(
//define the function that generates the page title
'title callback'
=
>
'cck_gallery_user_titles'
,
//pass it the loaded $user object from the wildcard loader - see http://drupal.org/node/224170
'title arguments'
=
>
array
(
1
)
,
'description'
=
>
t
(
'A list of galleries created by @user.'
,
array
(
'@user'
=
>
user_load
(
arg
(
2
)
)
-
>
name
)
)
,
'page callback'
=
>
'views_embed_view'
,
'page arguments'
=
>
array
(
variable_get
(
'cck_gallery_list_view'
,
'gallery_list_page'
)
,
variable_get
(
'cck_gallery_list_view_display'
,
'default'
)
)
,
'access arguments'
=
>
array
(
'view cck galleries'
)
,
)
;
return
$items
;
}
/**
* Function loading the gallery titles per user
*
* @param $thisuser
* Drupal user object received from hook_menu()
*
* @return
* text string for hook_menu() to use as the page title
*/
function
cck_gallery_user_titles
(
$thisuser
)
{
return
t
(
'@user
\'
s galleries'
,
array
(
'@user'
=
>
$thisuser
-
>
name
)
)
;
}
Drupal 6
hook_menu
title arguments
title callback
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
/** * Implementation of hook_menu(). */ function cck_gallery_menu() { $items['cck-galleries/%user'] = array( //define the function that generates the page title 'title callback' => 'cck_gallery_user_titles', //pass it the loaded $user object from the wildcard loader - see http://drupal.org/node/224170 'title arguments' => array(1), 'description' => t('A list of galleries created by @user.', array('@user' => user_load(arg(2))->name)), 'page callback' => 'views_embed_view', 'page arguments' => array(variable_get('cck_gallery_list_view', 'gallery_list_page'), variable_get('cck_gallery_list_view_display', 'default')), 'access arguments' => array('view cck galleries'), ); return $items; } /** * Function loading the gallery titles per user * * @param $thisuser * Drupal user object received from hook_menu() * * @return * text string for hook_menu() to use as the page title */ function cck_gallery_user_titles($thisuser) { return t('@user\'s galleries', array('@user' => $thisuser->name)); }
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
.