API17

JUpdate: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Bulk upload by Doxiki2
 
m preparing for archive only
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
<span class="editsection" style="font-size:76%;">
=={{JVer|11.1}} JUpdate==
<nowiki>[</nowiki>[[Description:JUpdate|Edit Descripton]]<nowiki>]</nowiki>
===Description===
</span>
 
{{Description:JUpdate}}
 
===Defined in===
libraries/joomla/updater/update.php
===Subpackage===
[[Subpackage Updater/11.1|Updater]]
===Extends===
[[JObject/11.1|JObject]]
===Extended by===
===Methods===
===Methods===
{| class="wikitable sortable"
{| class="wikitable sortable"
|-
|-
!Visibility
!Method name
!Method name
!Description
!Description
|-
|-
|[[JUpdate::_characterData/11.1|_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/11.1|_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/11.1|_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/11.1|loadFromXML]]
|public
|[[API17:JUpdate::loadFromXML|loadFromXML]]
|
|
|-
|-
|[[JUpdate::_getLastTag/11.1|_getLastTag]]
|protected
|[[API17:JUpdate::_getLastTag|_getLastTag]]
|Get the last position in stack count.  
|Get the last position in stack count.  
|-
|-
|[[JUpdate::_getStackLocation/11.1|_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===
* [[JUpdate|Other versions of this class]]
* {{JVer|11.1}} '''JUpdate source code''' on [[jplatform:updater/update.php|BitBucket]]
{{SeeAlso:JUpdate}}
* {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]]
<span class="editsection" style="font-size:76%;">
* [[API17:JUpdate|Other versions of JUpdate]]
<nowiki>[</nowiki>[[SeeAlso:JUpdate|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
===Examples===
===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=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:Platform]][[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