JUpdate: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
m preparing for archive only |
||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
=={{JVer|11.1}} JUpdate== | |||
===Description=== | |||
{{ | |||
=== | |||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
!Visibility | |||
!Method name | !Method name | ||
!Description | !Description | ||
|- | |- | ||
|[[JUpdate::_characterData | |public | ||
|[[API17:JUpdate::_characterData|_characterData]] | |||
|Character Parser Function Note: This is public because its called externally. | |Character Parser Function Note: This is public because its called externally. | ||
|- | |- | ||
|[[JUpdate::_endElement | |public | ||
|[[API17:JUpdate::_endElement|_endElement]] | |||
|Callback for closing the element Note: This is public because it is called externally. | |Callback for closing the element Note: This is public because it is called externally. | ||
|- | |- | ||
|[[JUpdate::_startElement | |public | ||
|[[API17:JUpdate::_startElement|_startElement]] | |||
|XML Start Element callback Note: This is public because it is called externally. | |XML Start Element callback Note: This is public because it is called externally. | ||
|- | |- | ||
|[[JUpdate::loadFromXML | |public | ||
|[[API17:JUpdate::loadFromXML|loadFromXML]] | |||
| | | | ||
|- | |- | ||
|[[JUpdate::_getLastTag | |protected | ||
|[[API17:JUpdate::_getLastTag|_getLastTag]] | |||
|Get the last position in stack count. | |Get the last position in stack count. | ||
|- | |- | ||
|[[JUpdate::_getStackLocation | |protected | ||
|[[API17:JUpdate::_getStackLocation|_getStackLocation]] | |||
|Gets the reference to the current direct parent. | |Gets the reference to the current direct parent. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/updater/update.php | |||
* '''Extends''' [[API17:JObject|JObject]] | |||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.updater.update' );</source> | <source lang="php">jimport( 'joomla.updater.update' );</source> | ||
===See also=== | ===See also=== | ||
* [[ | * {{JVer|11.1}} '''JUpdate source code''' on [[jplatform:updater/update.php|BitBucket]] | ||
{{ | * {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]] | ||
* [[API17:JUpdate|Other versions of JUpdate]] | |||
===Examples=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JUpdate | category=JUpdate | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude> | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
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