API17

Difference between revisions of "JRegistryFormat"

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}} JRegistryFormat==
 
=={{JVer|11.1}} JRegistryFormat==
 
===Description===
 
===Description===
{{Description:JRegistryFormat}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JRegistryFormat|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
Line 14: Line 12:
 
|-
 
|-
 
|public  
 
|public  
|[[JRegistryFormat::objectToString/11.1|objectToString]]
+
|[[API17:JRegistryFormat::objectToString|objectToString]]
 
|Converts an object into a formatted string.  
 
|Converts an object into a formatted string.  
 
|-
 
|-
 
|public  
 
|public  
|[[JRegistryFormat::stringToObject/11.1|stringToObject]]
+
|[[API17:JRegistryFormat::stringToObject|stringToObject]]
 
|Converts a formatted string into an object.  
 
|Converts a formatted string into an object.  
 
|-
 
|-
 
|public static  
 
|public static  
|[[JRegistryFormat::getInstance/11.1|getInstance]]
+
|[[API17:JRegistryFormat::getInstance|getInstance]]
 
|Returns a reference to a Format object, only creating it if it doesn't already exist.  
 
|Returns a reference to a Format object, only creating it if it doesn't already exist.  
 
|-
 
|-
Line 28: Line 26:
 
* '''Defined in''' libraries/joomla/registry/format.php
 
* '''Defined in''' libraries/joomla/registry/format.php
 
* '''Extended by'''
 
* '''Extended by'''
** [[JRegistryFormatIni/11.1|JRegistryFormatIni]]
+
** [[API17:JRegistryFormatIni|JRegistryFormatIni]]
** [[JRegistryFormatJson/11.1|JRegistryFormatJson]]
+
** [[API17:JRegistryFormatJson|JRegistryFormatJson]]
** [[JRegistryFormatPhp/11.1|JRegistryFormatPhp]]
+
** [[API17:JRegistryFormatPhp|JRegistryFormatPhp]]
** [[JRegistryFormatXml/11.1|JRegistryFormatXml]]
+
** [[API17:JRegistryFormatXml|JRegistryFormatXml]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.registry.format' );</source>
 
<source lang="php">jimport( 'joomla.registry.format' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JRegistryFormat source code''' on [[jplatform:registry/format.php|BitBucket]]
 
* {{JVer|11.1}} '''JRegistryFormat source code''' on [[jplatform:registry/format.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Registry/11.1|Registry]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Registry|Registry]]
* [[JRegistryFormat|Other versions of JRegistryFormat]]
+
* [[API17:JRegistryFormat|Other versions of JRegistryFormat]]
{{SeeAlso:JRegistryFormat}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JRegistryFormat|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JRegistryFormat
 
category=JRegistryFormat
category=CodeExample
+
namespace=CodeExample
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
Line 53: Line 49:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JRegistryFormat]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:34, 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 JRegistryFormat[edit]

Description[edit]

Methods[edit]

Visibility Method name Description
public objectToString Converts an object into a formatted string.
public stringToObject Converts a formatted string into an object.
public static getInstance Returns a reference to a Format object, only creating it if it doesn't already exist.

Importing[edit]

jimport( 'joomla.registry.format' );

See also[edit]


User contributed notes[edit]

Code Examples[edit]