JUpdate: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 2: | Line 2: | ||
=={{JVer|11.1}} JUpdate== | =={{JVer|11.1}} JUpdate== | ||
===Description=== | ===Description=== | ||
===Methods=== | ===Methods=== | ||
| Line 44: | Line 44: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]] | ||
* [[API17:JUpdate|Other versions of JUpdate]] | * [[API17:JUpdate|Other versions of JUpdate]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JUpdate | category=JUpdate | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
Latest revision as of 03:53, 25 March 2017
JUpdate
Description
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | _characterData | Character Parser Function Note: This is public because its called externally. |
| public | _endElement | Callback for closing the element Note: This is public because it is called externally. |
| public | _startElement | XML Start Element callback Note: This is public because it is called externally. |
| public | loadFromXML | |
| protected | _getLastTag | Get the last position in stack count. |
| protected | _getStackLocation | Gets the reference to the current direct parent. |
- Defined in libraries/joomla/updater/update.php
- Extends JObject
Importing
jimport( 'joomla.updater.update' );
See also
JUpdate source code on BitBucket
Subpackage Updater- Other versions of JUpdate
User contributed notes
Code Examples