Chooses the route through the application to take, based on the
request URI.
setPageTitle( title : string=null ) : void
Deprecated; use of this method is no longer advised.
Sets the title of the document. Instead use:
$document =& JFactory::getDocument();
$document->setTitle($title);
Parameters [title] Document title
setUserState( key : string, value : mixed ) : mixed
Sets a value in the user session registry.
Parameters key Name of the user session registry value
value Key value
Returns Value from the user session registry
triggerEvent( event : string, args : array=null ) : array
Triggers an event. This will notify any registered event handlers associated with the event
that the event has occurred. args is exploded and each element is passed as individual
argument to the handler.
Parameters event Event to trigger
[args] Array of arguments to pass to the handlers
Returns Array of the resultant returns from the event handlers
&_createConfiguration( file : string ) : JConfig
Loads the global configuration.
Pages:
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565