You are here

function galleries_title in Node Gallery 6

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

File

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

Code

function galleries_title($user) {
  return t('!user\'s Galleries', array(
    '!user' => $user->name,
  ));
}