Skip to content
Snippets Groups Projects
Commit 30db1c1f authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#695468 by Caligan: document theme functions generating submission information...

#695468 by Caligan: document theme functions generating submission information for comments and nodes
parent 92dad2bc
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,9 @@ function phptemplate_menu_local_tasks() {
return menu_primary_local_tasks();
}
/**
* Returns the themed submitted-by string for the comment.
*/
function phptemplate_comment_submitted($comment) {
return t('!datetime — !username',
array(
......@@ -76,6 +79,9 @@ function phptemplate_comment_submitted($comment) {
));
}
/**
* Returns the themed submitted-by string for the node.
*/
function phptemplate_node_submitted($node) {
return t('!datetime — !username',
array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment