API16

Difference between revisions of "JLanguage/getOrphans"

From Joomla! Documentation

< API16:JLanguage
(New page: ===Description=== Get the list of orphaned strings if being tracked <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLanguage/getOrphans|Edit Descrip...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Get the list of orphaned strings if being tracked
 
Get the list of orphaned strings if being tracked
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JLanguage/getOrphans|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JLanguage/getOrphans}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 28: Line 26:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JLanguage/getOrphans|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JLanguage/getOrphans}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=getOrphans
 
  category=getOrphans
 
  category=JLanguage
 
  category=JLanguage
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:52, 24 March 2017

The "API16" 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.

Description[edit]

Get the list of orphaned strings if being tracked


<! removed transcluded page call, red link never existed >

Syntax[edit]

getOrphans()


Returns[edit]

array Orphaned text

Defined in[edit]

libraries/joomla/language/language.php

Importing[edit]

jimport( 'joomla.language.language' );

Source Body[edit]

public function getOrphans()
{
        return $this->_orphans;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]