API15

Difference between revisions of "JApplication/initialise"

From Joomla! Documentation

< API15:JApplication
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>[[Description:JApplication/initialise|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JApplication/initialise}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 50: Line 50:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JApplication/initialise|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JApplication/initialise}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 65: Line 65:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:33, 12 May 2013

The "API15" 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]

Initialise the application.

[<! removed edit link to red link >]

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

Syntax[edit]

initialise($options=array())
Parameter Name Default Value Description
$options array() An optional associative array of configuration settings. public

Defined in[edit]

libraries/joomla/application/application.php

Importing[edit]

jimport( 'joomla.application.application' );

Source Body[edit]

function initialise($options = array())
{
        jimport('joomla.plugin.helper');

        //Set the language in the class
        $config =& JFactory::getConfig();

        // Check that we were given a language in the array (since by default may be blank)
        if(isset($options['language'])) {
                $config->setValue('config.language', $options['language']);
        }

        // Set user specific editor
        $user    =& JFactory::getUser();
        $editor  = $user->getParam('editor', $this->getCfg('editor'));
        $editor = JPluginHelper::isEnabled('editors', $editor) ? $editor : $this->getCfg('editor');
        $config->setValue('config.editor', $editor);
}

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

Examples[edit]

<CodeExamplesForm />