Account Inbox template variables.
This commit is contained in:
parent
8adae35947
commit
1849daa922
2 changed files with 99 additions and 5 deletions
|
|
@ -27,6 +27,33 @@ our $HELP = {
|
||||||
related => [ ],
|
related => [ ],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'view inbox' => {
|
||||||
|
title => 'view inbox template',
|
||||||
|
body => '',
|
||||||
|
isa => [
|
||||||
|
{
|
||||||
|
tag => 'common vars',
|
||||||
|
namespace => 'Account_Inbox',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
fields => [ ],
|
||||||
|
variables => [
|
||||||
|
{ name => 'subject_url', },
|
||||||
|
{ name => 'status_url', },
|
||||||
|
{ name => 'from_url', },
|
||||||
|
{ name => 'dateStamp_url', },
|
||||||
|
{ name => 'rpp_url', },
|
||||||
|
{ name => 'has_messages', },
|
||||||
|
{ name => 'message_total', },
|
||||||
|
{ name => 'new_message_url', },
|
||||||
|
{ name => 'canSendMessages', },
|
||||||
|
{
|
||||||
|
name => 'message_loop',
|
||||||
|
variables => [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
related => [ ],
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
|
|
@ -546,6 +546,73 @@ our $I18N = {
|
||||||
lastUpdated => 0,
|
lastUpdated => 0,
|
||||||
context => "Description of Inbox setting",
|
context => "Description of Inbox setting",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'subject_url' => {
|
||||||
|
message => q{The URL to sort the inbox by subject.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'status_url' => {
|
||||||
|
message => q{The URL to sort the inbox by status.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'from_url' => {
|
||||||
|
message => q{The URL to sort the inbox by who sent the messages.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'dateStamp_url' => {
|
||||||
|
message => q{The URL to sort the inbox by when the message was sent.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'rpp_url' => {
|
||||||
|
message => q{The current URL with sort, sort direction and user filtering params added.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'has_messages' => {
|
||||||
|
message => q{A boolean which is true if the user has messages.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'message_total' => {
|
||||||
|
message => q{The total number of messages the user has in their inbox.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'new_message_url' => {
|
||||||
|
message => q{The URL to take the user to the screen where they can send new messages to other users.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'canSendMessages' => {
|
||||||
|
message => q{A boolean which is true if the user has friends that he can send messages to.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'message_loop' => {
|
||||||
|
message => q{A loop containing all messages, as determined by the sorting and number of messages per page options.},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "template variable for view inbox template",
|
||||||
|
},
|
||||||
|
|
||||||
|
'view inbox template' => {
|
||||||
|
message => q{View Inbox Template},
|
||||||
|
lastUpdated => 1235421123,
|
||||||
|
context => "The template that allows you to view the contents of the Inbox",
|
||||||
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue