
CPG-Nuke SDR ((Source) Development Resources)
This documentation is based on CPG-Dragonfly™ CMS (aka CPG-Nuke 9.0) and up.
Most parts are also in previous releases of CPG-Nuke and PHP-Nuke, although they could be in different files.
Icons used by the CPG-Nuke Source Help are detailed below.
Properties |
 |
Private property
A private property is accessible only from inside the class where it's declared.
That means subclasses are barred from access as well.
If you create a subclass, you can declare variables with the same name, but they will be separate entities from those declared in the parent.
If the property is in the global scope ( like a define() ) the value shouldn't/can't be changed by anything. |
 |
Protected property. A protected variable is available to a subclass. |
 |
Public property |
Methods & Functions |
 |
Constructor |
 |
Destructor |
 |
Private function or method.
A private function is accessible only from inside the class where it's declared.
That means subclasses are barred from access as well.
If you create a subclass, you can declare methods and variables with the same name, but they will be separate entities from those declared in the parent. |
 |
Protected function or method.
A protected function (or method) is available to a subclass. |
 |
Public function or method |
Classes |
 |
Documented class |
 |
Undocumented class. This class is referenced as a class ancestor, but its declaration has not been found. |
Messages |
 |
Hint |
 |
Information |
 |
Warning |
 |
Error |
 |
Fatal Error |