JFactory/getConfig: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Get a configuration object
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
... |
m removing red link to edit, no existant pages |
||
| Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 52: | Line 52: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
| Line 67: | Line 67: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Revision as of 05:06, 13 May 2013
Description
Get a configuration object
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
static getConfig($file=null, $type= 'PHP')
| Parameter Name | Default Value | Description |
|---|---|---|
| $file | null | The path to the configuration file |
| $type | 'PHP' | The type of the configuration file |
Returns
object
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
public static function getConfig($file = null, $type = 'PHP')
{
if (!is_object(JFactory::$config))
{
if ($file === null) {
$file = dirname(__FILE__).DS.'config.php';
}
JFactory::$config = JFactory::_createConfig($file, $type);
}
return JFactory::$config;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />