API16

Difference between revisions of "JArchive/getAdapter"

From Joomla! Documentation

< API16:JArchive
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JArchive/getAdapter}...)
 
m (removing red link to edit, no existant pages)
Line 1: Line 1:
 
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JArchive/getAdapter|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JArchive/getAdapter}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 57: Line 56:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JArchive/getAdapter|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JArchive/getAdapter}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 72: Line 71:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 21:49, 12 May 2013

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.

[<! removed edit link to red link >]

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

Syntax[edit]

getAdapter($type)
Parameter Name Default Value Description
$type

Defined in[edit]

libraries/joomla/filesystem/archive.php

Importing[edit]

jimport( 'joomla.filesystem.archive' );

Source Body[edit]

function getAdapter($type)
{
        static $adapters;

        if (!isset($adapters)) {
                $adapters = array();
        }

        if (!isset($adapters[$type]))
        {
                // Try to load the adapter object
                $class = 'JArchive'.ucfirst($type);

                if (!class_exists($class))
                {
                        $path = dirname(__FILE__).DS.'archive'.DS.strtolower($type).'.php';
                        if (file_exists($path)) {
                                require_once $path;
                        } else {
                                JError::raiseError(500,JText::_('Unable to load archive'));
                        }
                }

                $adapters[$type] = new $class();
        }
        return $adapters[$type];
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />