We should always bear in mind that if there isn't something appropriate within the
Joomla! library to handle a specific task, we can always turn to the other libraries
with which we are provided.
If we are still unable to find a solution we can always turn to other libraries outside
of the Joomla! sphere. A good resource for such libraries is PHP classes
(http://www.phpclasses.org/), a repository of freely available PHP classes.
Appendix
The appendix consists of three main sections:
Classes
Parameters
Configuration
There is also some official documentation available from the Joomla! help site
(http://help.joomla.org), developers site (http://dev.joomla.org), and API
site (http://api.joomla.org).
Classes
This section details a number of the core classes. Additional documentation can be
found at the official API site: http://api.joomla.org.
This reference uses standard UML notation:
methodOrFunctionName(paramsList) : returnType
The following example describes a method called someMethod with two parameters,
anArray and xyz, which returns a string.
Pages:
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509