Difference between revisions of "Resource getJournal"
(→Examples) |
|||
Line 1: | Line 1: | ||
= Resource_getJournal = | = Resource_getJournal = | ||
− | Get journal information from a resource. | + | Get journal information from a resource. |
− | === Syntax === | + | === Syntax === |
− | Resource_getJournal(ResourceID) | + | Resource_getJournal(ResourceID) <br> |
− | <br> | ||
− | === Arguments === | + | === Arguments === |
− | |||
− | |||
− | + | ResourceID: is a number. It is the resource id of questionnaire, report, task....etc. <br> | |
− | |||
− | |||
− | |||
− | + | === Return type === | |
− | + | An array of ResourceJournalEntry. | |
− | array journal=Resource_getJournal(37257114); | + | See [http://wiki.catglobe.com/index.php/ResourceJournalEntry_class [ResourceJournalEntry]] for more inf. |
+ | |||
+ | <br> | ||
+ | |||
+ | === Examples === | ||
+ | |||
+ | array journal=Resource_getJournal(37257114); | ||
for(number i=0; i<arrayCount(journal); i++) | for(number i=0; i<arrayCount(journal); i++) | ||
− | { | + | { |
print(journal[i].CommentType); | print(journal[i].CommentType); | ||
Line 35: | Line 35: | ||
print(journal[i].CreatedDate); | print(journal[i].CreatedDate); | ||
− | print(journal[i].ModifiedByUserResourceId); | + | print(journal[i].ModifiedByUserResourceId); |
print(journal[i].ModifiedDate); | print(journal[i].ModifiedDate); | ||
Line 41: | Line 41: | ||
print(journal[i].ObjectTypeName); | print(journal[i].ObjectTypeName); | ||
− | print(journal[i].TypeInformation); | + | print(journal[i].TypeInformation); |
print("\n"); | print("\n"); | ||
Line 47: | Line 47: | ||
} | } | ||
+ | Result is: | ||
+ | Description // Comment type | ||
− | + | phong questionnaire 2 // Content | |
− | |||
− | |||
− | |||
− | phong questionnaire 2 // Content | ||
− | 25455 | + | 25455 // Create By User Resource Id |
− | 2011-08-08 04:24:55 // create date | + | 2011-08-08 04:24:55 // create date |
− | 25455 | + | 25455 // Create By User Resource Id |
− | 2011-08-08 04:25:54 // ModifiedDate | + | 2011-08-08 04:25:54 // ModifiedDate |
− | ResourceJournalEntry // Object Type Name | + | ResourceJournalEntry // Object Type Name |
− | TypeInformation | + | TypeInformation // TypeInformation |
__NOTOC__ | __NOTOC__ | ||
[[Category:Resource_Functions]] | [[Category:Resource_Functions]] |
Revision as of 11:18, 10 November 2011
Resource_getJournal
Get journal information from a resource.
Syntax
Resource_getJournal(ResourceID)
Arguments
ResourceID: is a number. It is the resource id of questionnaire, report, task....etc.
Return type
An array of ResourceJournalEntry.
See [ResourceJournalEntry] for more inf.
Examples
array journal=Resource_getJournal(37257114);
for(number i=0; i<arrayCount(journal); i++)
{
print(journal[i].CommentType);
print(journal[i].Content);
print(journal[i].CreatedByUserResourceId);
print(journal[i].CreatedDate);
print(journal[i].ModifiedByUserResourceId);
print(journal[i].ModifiedDate);
print(journal[i].ObjectTypeName);
print(journal[i].TypeInformation);
print("\n");
}
Result is:
Description // Comment type
phong questionnaire 2 // Content
25455 // Create By User Resource Id
2011-08-08 04:24:55 // create date
25455 // Create By User Resource Id
2011-08-08 04:25:54 // ModifiedDate
ResourceJournalEntry // Object Type Name
TypeInformation // TypeInformation