API17

Difference between revisions of "JUpdate"

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__
<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 22:53, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JUpdate[edit]

Description[edit]

Methods[edit]

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[edit]

jimport( 'joomla.updater.update' );

See also[edit]


User contributed notes[edit]

Code Examples[edit]