API15:JApplication/initialise
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Initialise the application.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
initialise($options=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | array() | An optional associative array of configuration settings. public |
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
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
<CodeExamplesForm />
