Difference between revisions of "Site (Application)"

From Joomla! Documentation

m (another tagged)
(Marked this version for translation)
Line 1: Line 1:
 
<languages/>
 
<languages/>
 
<translate>
 
<translate>
 +
<!--T:1-->
 
The '''Site''' [[S:MyLanguage/application]], also known as the '''''Front-end''''', is the main part of a Joomla website. This is where the general traffic occurs: when a visitor uses your site, he will be using the Site application. You can manipulate this (add/remove [[S:MyLanguage/content]], [[S:MyLanguage/Switching templates|switch templates]] etc.) from the [[S:MyLanguage/Administrator (Application)|Administrator application]]. Users with appropriate [[S:MyLanguage/:Category:Access Control|access levels]] will also be able to edit some aspects of the site from the Front-end.
 
The '''Site''' [[S:MyLanguage/application]], also known as the '''''Front-end''''', is the main part of a Joomla website. This is where the general traffic occurs: when a visitor uses your site, he will be using the Site application. You can manipulate this (add/remove [[S:MyLanguage/content]], [[S:MyLanguage/Switching templates|switch templates]] etc.) from the [[S:MyLanguage/Administrator (Application)|Administrator application]]. Users with appropriate [[S:MyLanguage/:Category:Access Control|access levels]] will also be able to edit some aspects of the site from the Front-end.
  
 +
<!--T:2-->
 
The Site application is implemented in the JSite class, which is a subclass of the generic JApplication. The JSite object can be retrieved in all versions that support JSite using the following code. The variable <code>$app</code> will be a JSite object when this code is run in the Site application.
 
The Site application is implemented in the JSite class, which is a subclass of the generic JApplication. The JSite object can be retrieved in all versions that support JSite using the following code. The variable <code>$app</code> will be a JSite object when this code is run in the Site application.
 
</translate>
 
</translate>
  
 
<translate>
 
<translate>
 +
<!--T:3-->
 
<source lang="php">$app = JFactory::getApplication();</source>
 
<source lang="php">$app = JFactory::getApplication();</source>
 
</translate>
 
</translate>
  
 
<translate>
 
<translate>
==Example==
+
==Example== <!--T:4-->
 
</translate>
 
</translate>
[[File:Home page example.png|frame|left|<center><translate>An example Home Page, the first page of the Site application</translate></center>]]
+
[[File:Home page example.png|frame|left|<center><translate><!--T:5-->
 +
An example Home Page, the first page of the Site application</translate></center>]]
 
<translate>
 
<translate>
 +
<!--T:6-->
 
<noinclude>[[Category:Application]][[Category:Landing Pages]]</noinclude>
 
<noinclude>[[Category:Application]][[Category:Landing Pages]]</noinclude>
 
</translate>
 
</translate>

Revision as of 20:09, 23 June 2014

Other languages:
Bahasa Indonesia • ‎Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎中文(台灣)‎

The Site S:MyLanguage/application, also known as the Front-end, is the main part of a Joomla website. This is where the general traffic occurs: when a visitor uses your site, he will be using the Site application. You can manipulate this (add/remove S:MyLanguage/content, switch templates etc.) from the Administrator application. Users with appropriate access levels will also be able to edit some aspects of the site from the Front-end.

The Site application is implemented in the JSite class, which is a subclass of the generic JApplication. The JSite object can be retrieved in all versions that support JSite using the following code. The variable $app will be a JSite object when this code is run in the Site application.

$app = JFactory::getApplication();

Example[edit]

An example Home Page, the first page of the Site application