blob: 8a7a8b7eb6657ec9b2ed938ee487c0ea1bce83bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* Create a new ElggUser
*
* @param {Object} o
* @extends ElggEntity
* @class Represents an ElggUser
* @property {string} name
* @property {string} username
*/
elgg.ElggUser = function(o) {
elgg.ElggEntity.call(this, o);
};
elgg.inherit(elgg.ElggUser, elgg.ElggEntity);
|