blob: c695c41c36cc7f35f16b44437a6e6f23d89179a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* Provides page owner and context functions
*
* @todo This is a stub. Page owners can't be fully implemented until
* the 4 types are finished.
*/
/**
* @return {number} The GUID of the page owner entity or 0 for no owner
*/
elgg.get_page_owner_guid = function() {
if (elgg.page_owner !== undefined) {
return elgg.page_owner.guid;
} else {
return 0;
}
};
|