API17

JUpdate: Difference between revisions

From Joomla! Documentation

m User contributed notes: bad link repair
m preparing for archive only
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
=={{JVer|11.1}} JUpdate==
=={{JVer|11.1}} JUpdate==
===Description===
===Description===
{{Description:JUpdate}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JUpdate|Edit Descripton]]<nowiki>]</nowiki>
</span>
===Methods===
===Methods===
{| class="wikitable sortable"
{| class="wikitable sortable"
Line 14: Line 12:
|-
|-
|public  
|public  
|[[JUpdate::_characterData/11.1|_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/11.1|_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/11.1|_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/11.1|loadFromXML]]
|[[API17:JUpdate::loadFromXML|loadFromXML]]
|
|
|-
|-
|protected  
|protected  
|[[JUpdate::_getLastTag/11.1|_getLastTag]]
|[[API17:JUpdate::_getLastTag|_getLastTag]]
|Get the last position in stack count.  
|Get the last position in stack count.  
|-
|-
|protected  
|protected  
|[[JUpdate::_getStackLocation/11.1|_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/11.1|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/11.1|Updater]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]]
* [[JUpdate|Other versions of JUpdate]]
* [[API17:JUpdate|Other versions of JUpdate]]
{{SeeAlso:JUpdate}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JUpdate|Edit See Also]]<nowiki>]</nowiki>
</span>
===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JUpdate
category=JUpdate
category=CodeExample
namespace=CodeExample
category=ClassExample
category=ClassExample
include=*
include=*
Line 61: Line 57:
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JUpdate]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:53, 25 March 2017

Joomla 11.1 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


User contributed notes

Code Examples