You are here

function node_gallery_list_title in Node Gallery 6.2

1 string reference to 'node_gallery_list_title'
node_gallery_menu in ./node_gallery.module
Implementation of hook_menu().

File

./node_gallery.module, line 487
Node gallery module file

Code

function node_gallery_list_title($user, $gallery_config = NULL) {
  return t('!user\'s !gallery Galleries', array(
    '!user' => $user->name,
    '!gallery' => $gallery_config['name'],
  ));
}