API17

Difference between revisions of "JUpdater"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JUpdater::__construct/11.1|__construct]]
+
|[[API17:JUpdater::__construct|__construct]]
 
|Constructor.  
 
|Constructor.  
 
|-
 
|-
 
|public  
 
|public  
|[[JUpdater::arrayUnique/11.1|arrayUnique]]
+
|[[API17:JUpdater::arrayUnique|arrayUnique]]
 
|Multidimensional array safe unique test Borrowed from PHP.net.  
 
|Multidimensional array safe unique test Borrowed from PHP.net.  
 
|-
 
|-
 
|public  
 
|public  
|[[JUpdater::findUpdates/11.1|findUpdates]]
+
|[[API17:JUpdater::findUpdates|findUpdates]]
 
|Finds an update for an extension.  
 
|Finds an update for an extension.  
 
|-
 
|-
 
|public  
 
|public  
|[[JUpdater::update/11.1|update]]
+
|[[API17:JUpdater::update|update]]
 
|
 
|
 
|-
 
|-
 
|public   
 
|public   
|[[JUpdater::getInstance/11.1|getInstance]]
+
|[[API17:JUpdater::getInstance|getInstance]]
 
|Returns a reference to the global Installer object, only creating it if it doesn't already exist.  
 
|Returns a reference to the global Installer object, only creating it if it doesn't already exist.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/updater/updater.php
 
* '''Defined in''' libraries/joomla/updater/updater.php
* '''Extends''' [[JAdapter/11.1|JAdapter]]
+
* '''Extends''' [[API17:JAdapter|JAdapter]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.updater.updater' );</source>
 
<source lang="php">jimport( 'joomla.updater.updater' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JUpdater source code''' on [[jplatform:updater/updater.php|BitBucket]]
 
* {{JVer|11.1}} '''JUpdater source code''' on [[jplatform:updater/updater.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Updater/11.1|Updater]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Updater|Updater]]
* [[JUpdater|Other versions of JUpdater]]
+
* [[API17:JUpdater|Other versions of JUpdater]]
 
{{SeeAlso:JUpdater}}
 
{{SeeAlso:JUpdater}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 21:47, 11 May 2013

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

Description[edit]

Template:Description:JUpdater [Edit Descripton]

Methods[edit]

Visibility Method name Description
public __construct Constructor.
public arrayUnique Multidimensional array safe unique test Borrowed from PHP.net.
public findUpdates Finds an update for an extension.
public update
public getInstance Returns a reference to the global Installer object, only creating it if it doesn't already exist.
  • Defined in libraries/joomla/updater/updater.php
  • Extends JAdapter

Importing[edit]

jimport( 'joomla.updater.updater' );

See also[edit]

Template:SeeAlso:JUpdater [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />