function theme_gallery_assist_item_submitted in Gallery Assist 6
Theme the output from the submited line. Multilingual.
File
- ./
gallery_assist.module, line 4105 - Drupal content type with gallery functionality.
Code
function theme_gallery_assist_item_submitted($node) {
return t('Submitted by !username on @datetime', array(
'!username' => theme('username', $node),
'@datetime' => format_date($node->file_created, 'custom', t('D, m/d/Y - h:i')),
));
}