Adds metadata to the document. Instead use:
$document=& JFactory::getDocument();
$document->setMetadata('metaName', 'metaValue');
Parameters name Metadata name
content Metadata value
registerEvent( event : string, handler : string ) : void
Registers an event handler with the global event dispatcher. handler must be the name of
a function or the name of a class that has a method of the same name as event.
Parameters event Name of event
handler Function or class name
render( ) : void
Renders the response and adds it to the static JResponse body.
Appendix
[ 406 ]
redirect( url : string, msg : string='', msgType : string='message' ) : void
Redirects to the specified url and, if specified, enqueues msg, ready to be served in the next
request. This method closes the application. If the headers have not been sent an HTTP 301
(Moved Permanently) response will be made, otherwise a JavaScript redirect will be used.
Parameters url Redirect URI
[msg] Optional message to enqueue
[msgType] Type of message
route( ) : void
Route the applictaion.
Pages:
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564