JUpdate: Difference between revisions
From Joomla! Documentation
m →User contributed notes: moving preparation |
m moving preparation |
||
| Line 14: | Line 14: | ||
|- | |- | ||
|public | |public | ||
|[[JUpdate::_characterData | |[[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. | ||
|- | |- | ||
|public | |public | ||
|[[JUpdate::_endElement | |[[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. | ||
|- | |- | ||
|public | |public | ||
|[[JUpdate::_startElement | |[[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. | ||
|- | |- | ||
|public | |public | ||
|[[JUpdate::loadFromXML | |[[API17:JUpdate::loadFromXML|loadFromXML]] | ||
| | | | ||
|- | |- | ||
|protected | |protected | ||
|[[JUpdate::_getLastTag | |[[API17:JUpdate::_getLastTag|_getLastTag]] | ||
|Get the last position in stack count. | |Get the last position in stack count. | ||
|- | |- | ||
|protected | |protected | ||
|[[JUpdate::_getStackLocation | |[[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 | * '''Defined in''' libraries/joomla/updater/update.php | ||
* '''Extends''' [[JObject | * '''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}} '''JUpdate source code''' on [[jplatform:updater/update.php|BitBucket]] | ||
* {{JVer|11.1}} Subpackage [[Subpackage Updater | * {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]] | ||
* [[JUpdate|Other versions of JUpdate]] | * [[API17:JUpdate|Other versions of JUpdate]] | ||
{{SeeAlso:JUpdate}} | {{SeeAlso:JUpdate}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
Revision as of 02:47, 12 May 2013
JUpdate
Description
Template:Description:JUpdate [Edit Descripton]
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
Template:SeeAlso:JUpdate [Edit See Also]
User contributed notes
<CodeExamplesForm />