Returns Array of errors associated with the object
getPublicProperties( assoc : boolean=false ) : array
Gets the names of all the public properties of the object; this includes run-time properties,
not just class properties. Names of private properties will not be returned; private
properties are identified by an underscore at the start of the name. If assoc is true, gets an
associative array including the property values.
Parameters [assoc] Get associative array with values; default is false
Returns Array of public property names or associative array of object property values
set( property : string, value : mixed=null ) : void
Mutator; sets the value of the property in the object.
Parameters property Name of the property
[value] Value of the property
Appendix
[ 368 ]
setError( error : mixed ) : void
Adds an error to the object's error history.
Parameters [error] String or error object
toString( ) : string
Gets a string representation of the object. This method gets the name of the class.
Returns String representation of the object
JUser
extends JObject
Handles a site user.
Pages:
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513