<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eraser</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eraser"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Eraser"/>
	<updated>2026-05-15T19:45:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032347</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032347"/>
		<updated>2024-09-28T16:37:34Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Taustad ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Tutvustus ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Joomla vaikimisi otseteed ==&lt;br /&gt;
&lt;br /&gt;
* J + A - Salvesta praegune sisu&lt;br /&gt;
* J + S - Salvesta ja sulge&lt;br /&gt;
* J + Q - Tühistab praeguse lehe muutmise&lt;br /&gt;
* J + N - Vajutab nupule &#039;Uus&#039;&lt;br /&gt;
* J + F - Paneb fookuse otsingulahtrile&lt;br /&gt;
* J + O - Avab seaded&lt;br /&gt;
* J + H - Avab abiinfo akna (võib näidata veebilehitseja hüpikakende blokeerija veateadet)&lt;br /&gt;
* J + M - Lülitab menüüriba näitamist&lt;br /&gt;
* J + X - Näitab nimekirja saadaolevatest otseteedest&lt;br /&gt;
* J + D - Läheb adminiliidese avalehele&lt;br /&gt;
&lt;br /&gt;
== Kolmanda osapoole klaviatuuri otseteed ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Taustad ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/13/et&amp;diff=1032346</id>
		<title>Translations:Keyboard Shortcuts/13/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/13/et&amp;diff=1032346"/>
		<updated>2024-09-28T16:37:33Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Taustad ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Taustad ==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032345</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032345"/>
		<updated>2024-09-28T16:37:12Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Kolmanda osapoole klaviatuuri otseteed ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Tutvustus ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Joomla vaikimisi otseteed ==&lt;br /&gt;
&lt;br /&gt;
* J + A - Salvesta praegune sisu&lt;br /&gt;
* J + S - Salvesta ja sulge&lt;br /&gt;
* J + Q - Tühistab praeguse lehe muutmise&lt;br /&gt;
* J + N - Vajutab nupule &#039;Uus&#039;&lt;br /&gt;
* J + F - Paneb fookuse otsingulahtrile&lt;br /&gt;
* J + O - Avab seaded&lt;br /&gt;
* J + H - Avab abiinfo akna (võib näidata veebilehitseja hüpikakende blokeerija veateadet)&lt;br /&gt;
* J + M - Lülitab menüüriba näitamist&lt;br /&gt;
* J + X - Näitab nimekirja saadaolevatest otseteedest&lt;br /&gt;
* J + D - Läheb adminiliidese avalehele&lt;br /&gt;
&lt;br /&gt;
== Kolmanda osapoole klaviatuuri otseteed ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Backgrounds ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/6/et&amp;diff=1032344</id>
		<title>Translations:Keyboard Shortcuts/6/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/6/et&amp;diff=1032344"/>
		<updated>2024-09-28T16:37:12Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Kolmanda osapoole klaviatuuri otseteed ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Kolmanda osapoole klaviatuuri otseteed ==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032343</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032343"/>
		<updated>2024-09-28T16:36:51Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;* J + A - Salvesta praegune sisu * J + S - Salvesta ja sulge * J + Q - Tühistab praeguse lehe muutmise * J + N - Vajutab nupule &amp;#039;Uus&amp;#039; * J + F - Paneb fookuse otsingulahtrile...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Tutvustus ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Joomla vaikimisi otseteed ==&lt;br /&gt;
&lt;br /&gt;
* J + A - Salvesta praegune sisu&lt;br /&gt;
* J + S - Salvesta ja sulge&lt;br /&gt;
* J + Q - Tühistab praeguse lehe muutmise&lt;br /&gt;
* J + N - Vajutab nupule &#039;Uus&#039;&lt;br /&gt;
* J + F - Paneb fookuse otsingulahtrile&lt;br /&gt;
* J + O - Avab seaded&lt;br /&gt;
* J + H - Avab abiinfo akna (võib näidata veebilehitseja hüpikakende blokeerija veateadet)&lt;br /&gt;
* J + M - Lülitab menüüriba näitamist&lt;br /&gt;
* J + X - Näitab nimekirja saadaolevatest otseteedest&lt;br /&gt;
* J + D - Läheb adminiliidese avalehele&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Third Party Shortcuts ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Backgrounds ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/5/et&amp;diff=1032342</id>
		<title>Translations:Keyboard Shortcuts/5/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/5/et&amp;diff=1032342"/>
		<updated>2024-09-28T16:36:51Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;* J + A - Salvesta praegune sisu * J + S - Salvesta ja sulge * J + Q - Tühistab praeguse lehe muutmise * J + N - Vajutab nupule &amp;#039;Uus&amp;#039; * J + F - Paneb fookuse otsingulahtrile...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* J + A - Salvesta praegune sisu&lt;br /&gt;
* J + S - Salvesta ja sulge&lt;br /&gt;
* J + Q - Tühistab praeguse lehe muutmise&lt;br /&gt;
* J + N - Vajutab nupule &#039;Uus&#039;&lt;br /&gt;
* J + F - Paneb fookuse otsingulahtrile&lt;br /&gt;
* J + O - Avab seaded&lt;br /&gt;
* J + H - Avab abiinfo akna (võib näidata veebilehitseja hüpikakende blokeerija veateadet)&lt;br /&gt;
* J + M - Lülitab menüüriba näitamist&lt;br /&gt;
* J + X - Näitab nimekirja saadaolevatest otseteedest&lt;br /&gt;
* J + D - Läheb adminiliidese avalehele&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032341</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032341"/>
		<updated>2024-09-28T16:34:15Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Joomla vaikimisi otseteed ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Tutvustus ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Joomla vaikimisi otseteed ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* J + A - Save current content&lt;br /&gt;
* J + S - For Save &amp;amp; Close&lt;br /&gt;
* J + Q - Cancels the current page&lt;br /&gt;
* J + N - Presses the &#039;&#039;New&#039;&#039; button&lt;br /&gt;
* J + F - Sets focus on the Search field&lt;br /&gt;
* J + O - Goes to Options&lt;br /&gt;
* J + H - Help window opens (could trigger a browser pop-up warning)&lt;br /&gt;
* J + M - Toggles the menu bar&lt;br /&gt;
* J + X - Displays a list of available Shortcuts&lt;br /&gt;
* J + D - Goes directly to the Home Dashboard&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Third Party Shortcuts ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Backgrounds ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/4/et&amp;diff=1032340</id>
		<title>Translations:Keyboard Shortcuts/4/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/4/et&amp;diff=1032340"/>
		<updated>2024-09-28T16:34:14Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Joomla vaikimisi otseteed ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Joomla vaikimisi otseteed ==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032339</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032339"/>
		<updated>2024-09-28T16:33:36Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Tutvustus ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Tutvustus ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Default Shortcuts in Joomla ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* J + A - Save current content&lt;br /&gt;
* J + S - For Save &amp;amp; Close&lt;br /&gt;
* J + Q - Cancels the current page&lt;br /&gt;
* J + N - Presses the &#039;&#039;New&#039;&#039; button&lt;br /&gt;
* J + F - Sets focus on the Search field&lt;br /&gt;
* J + O - Goes to Options&lt;br /&gt;
* J + H - Help window opens (could trigger a browser pop-up warning)&lt;br /&gt;
* J + M - Toggles the menu bar&lt;br /&gt;
* J + X - Displays a list of available Shortcuts&lt;br /&gt;
* J + D - Goes directly to the Home Dashboard&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Third Party Shortcuts ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Backgrounds ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/1/et&amp;diff=1032338</id>
		<title>Translations:Keyboard Shortcuts/1/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/1/et&amp;diff=1032338"/>
		<updated>2024-09-28T16:33:34Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;== Tutvustus ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tutvustus ==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032337</id>
		<title>Keyboard Shortcuts/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Keyboard_Shortcuts/et&amp;diff=1032337"/>
		<updated>2024-09-28T16:33:29Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Klaviatuuri otsetee&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Since Joomla! 4.2.0 (and a GSoC project in 2021) users can use their keyboard on the Administrator site to cause certain actions. For example, saving the current page, going to the home dashboard or opening the options. There is also an overview with all the possible shortcuts, which opens up by pressing &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039; and &#039;&#039;&#039;&#039;&#039;X&#039;&#039;&#039;&#039;&#039; sequentially (not at the same time!). Unless you change the plugin settings you must press the keys within 2 seconds.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
The feature is enabled by default. It can be disabled or configured under {{rarr|Administrator,System,Plugins,System - Keyboard Shortcuts}}. Currently the only configuration is the timeout how long the system will wait for your next key input. By default it waits for 2000 milliseconds (2 seconds).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Default Shortcuts in Joomla ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* J + A - Save current content&lt;br /&gt;
* J + S - For Save &amp;amp; Close&lt;br /&gt;
* J + Q - Cancels the current page&lt;br /&gt;
* J + N - Presses the &#039;&#039;New&#039;&#039; button&lt;br /&gt;
* J + F - Sets focus on the Search field&lt;br /&gt;
* J + O - Goes to Options&lt;br /&gt;
* J + H - Help window opens (could trigger a browser pop-up warning)&lt;br /&gt;
* J + M - Toggles the menu bar&lt;br /&gt;
* J + X - Displays a list of available Shortcuts&lt;br /&gt;
* J + D - Goes directly to the Home Dashboard&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Third Party Shortcuts ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Other developers can add their shortcuts too. The Joomla plugin calls the &#039;&#039;onLoadShortcuts&#039;&#039; Event, which can be used by other plugins as well. The event needs to be added to the list of &#039;&#039;getSubscribedEvents&#039;&#039; inside the plugin. The assigned function could look like this:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
public function onLoadShortcuts(EventInterface $event): void {&lt;br /&gt;
   $shortcuts = $event-&amp;gt;getArgument(&#039;shortcuts&#039;);&lt;br /&gt;
   $exampleShortcuts = array(&#039;example&#039; =&amp;gt; (object)[&#039;shortcut&#039; =&amp;gt; &#039;E&#039;, &#039;title&#039; =&amp;gt; &#039;Great Example&#039;, &#039;selector&#039; =&amp;gt; &#039;#menu-collapse&#039;]);&lt;br /&gt;
   $event-&amp;gt;setArgument(&#039;shortcuts&#039;,  array_merge($shortcuts, $exampleShortcuts));&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Pay close attention to the array_merge part: When the already existing shortcuts are not merged with the new ones, the old ones are overwritten.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Developers can provide an array with shortcut objects:&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;{ shortcut: string, selector: string, title: string }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
* The &#039;&#039;Shortcut&#039;&#039; needs to be a keyboard input, separated by a plus e.g. &amp;quot;Y&amp;quot; or &amp;quot;ALT + Z + 7&amp;quot; (currently there is really no filtering). Keep in mind that every shortcut sequence will start with &#039;&#039;&#039;&#039;&#039;J&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
* &#039;&#039;Selectors&#039;&#039; are CSS-selectors or URLs to specify the target. When it is an input element, the shortcut gives focus as it is the case for the search field. Otherwise the element will be clicked or the URL will be called.&lt;br /&gt;
* The &#039;&#039;Title&#039;&#039; will be displayed in the overview. It could be the name of the target for example.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
== Backgrounds ==&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Some may wonder about the decision to use sequential shortcuts or the &#039;&#039;J&#039;&#039; as the start instead of Ctrl or something else. The main reasons are accessibility and the avoidance of interruption by other software. For example Ctrl + S would be nice for saving an article, but is already used by browsers. The same can happen for screen readers or password managers etc. So the safer option was to use something Joomla specific like the J at the start.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div lang=&amp;quot;en&amp;quot; dir=&amp;quot;ltr&amp;quot; class=&amp;quot;mw-content-ltr&amp;quot;&amp;gt;&lt;br /&gt;
Now the other problem is that it is not always possible to press more than one key at once. Windows has the Sticky Key mode for this, but it is only working for modifier keys like Shift, Ctrl and Alt. So the plugin uses sequentially input right from the start which makes it usable by more people even without the help of OS-modes.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla!_4.x]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/Page_display_title/et&amp;diff=1032336</id>
		<title>Translations:Keyboard Shortcuts/Page display title/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Keyboard_Shortcuts/Page_display_title/et&amp;diff=1032336"/>
		<updated>2024-09-28T16:33:29Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Klaviatuuri otsetee&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Klaviatuuri otsetee&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Article/et&amp;diff=661442</id>
		<title>Article/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Article/et&amp;diff=661442"/>
		<updated>2020-04-13T06:03:23Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{{Chunk:Article/en}}&lt;br /&gt;
== Soovitatav lugemine ==&lt;br /&gt;
&lt;br /&gt;
===Sisu haldamine===&lt;br /&gt;
* [[S:MyLanguage/Adding a new article|Uue artikli lisamine]]&lt;br /&gt;
* [[S:MyLanguage/Adding a menu item which points to an Article|Artiklile viitava menüülingi lisamine]]&lt;br /&gt;
* [[S:MyLanguage/Managing the front page|Avalehe haldamine]]&lt;br /&gt;
* [[S:MyLanguage/Scheduling an Article to be available only between certain dates|Artikli ajastamine, et see oleks nähtav ainult teatud kuupäevadel]]&lt;br /&gt;
* [[S:MyLanguage/Restricting access to an Article|Artiklile ligipääsu piiramine]]&lt;br /&gt;
* [[S:MyLanguage/Restricting access to &amp;quot;read more&amp;quot;|Ligipääsu piiramine &amp;quot;Loe edasi&amp;quot; taga olevale tekstile]]&lt;br /&gt;
* [[S:MyLanguage/Removing email, print or PDF icons from all Articles|E-postiga saatmise lingi eemaldamine]]&lt;br /&gt;
* [[S:MyLanguage/Removing author name, creation date or update date from all Articles|Autori nime eemaldamine]]&lt;br /&gt;
* [[S:MyLanguage/Moving an Article to the archive|Artikli arhiveerimine]]&lt;br /&gt;
* [[S:MyLanguage/Deleting an Article|Artikli kustutamine]]&lt;br /&gt;
&lt;br /&gt;
===Artikli muutmine===&lt;br /&gt;
* [[S:MyLanguage/Adding an image to an article|Pildi lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a heading into an Article|Pealkirja lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a list into an Article|Loetelu lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a table into an Article|Tabeli lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Modifying a table in an Article|Tabeli muutmine artiklis]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a link to another website into an Article|Kuidas lisada artiklisse linki, mis viib mõnele teisele veebisaidile]]&lt;br /&gt;
* [[S:MyLanguage/Removing a link from an Article|Lingi eemaldamine artiklist]]&lt;br /&gt;
* [[S:MyLanguage/Splitting an Article into an introduction with a link to read more|Artikli jagamine kaheks &#039;Loe lisa&#039; lingiga]]&lt;br /&gt;
* [[S:MyLanguage/Removing author name, creation date or update date from an Article|Autori nime eemaldamine]]&lt;br /&gt;
* [[S:MyLanguage/Previewing an Article|Artikli eelvaade]]&lt;br /&gt;
* [[S:MyLanguage/Splitting a long Article into multiple linked pages|Pika artikli mitmeks osaks jagamine]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Landing Pages/et]][[Category:Glossary/et]]&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Article/5/et&amp;diff=661441</id>
		<title>Translations:Article/5/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Article/5/et&amp;diff=661441"/>
		<updated>2020-04-13T06:03:23Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Artikli muutmine===&lt;br /&gt;
* [[S:MyLanguage/Adding an image to an article|Pildi lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a heading into an Article|Pealkirja lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a list into an Article|Loetelu lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a table into an Article|Tabeli lisamine artiklisse]]&lt;br /&gt;
* [[S:MyLanguage/Modifying a table in an Article|Tabeli muutmine artiklis]]&lt;br /&gt;
* [[S:MyLanguage/Inserting a link to another website into an Article|Kuidas lisada artiklisse linki, mis viib mõnele teisele veebisaidile]]&lt;br /&gt;
* [[S:MyLanguage/Removing a link from an Article|Lingi eemaldamine artiklist]]&lt;br /&gt;
* [[S:MyLanguage/Splitting an Article into an introduction with a link to read more|Artikli jagamine kaheks &#039;Loe lisa&#039; lingiga]]&lt;br /&gt;
* [[S:MyLanguage/Removing author name, creation date or update date from an Article|Autori nime eemaldamine]]&lt;br /&gt;
* [[S:MyLanguage/Previewing an Article|Artikli eelvaade]]&lt;br /&gt;
* [[S:MyLanguage/Splitting a long Article into multiple linked pages|Pika artikli mitmeks osaks jagamine]]&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660917</id>
		<title>J3.x:Installing a template/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660917"/>
		<updated>2020-04-10T14:01:38Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
=== Läbi adminiliidese paigaldamine (pakitud kujunduse fail) ===&lt;br /&gt;
Logi oma saidi adminiliidesesse sisse (&#039;&#039;www.sinu-sait.ee&#039;&#039;/administrator/)&lt;br /&gt;
&lt;br /&gt;
Vali: Lisaprogrammid -&amp;gt; Haldamine&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-navigate-en.png]]&lt;br /&gt;
&lt;br /&gt;
Sulle näidatakse &amp;quot;Lisaprogrammide haldamise lehekülge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Siit saad paigaldada oma kujundusi, pluginaid, mooduleid, komponente ja keelefaile. Sul on need valikud:&lt;br /&gt;
# Paigalda veebist - vali lisaprogramm Joomla! lisade kataloogist&lt;br /&gt;
# Lae pakifail üles - (vali oma arvutist fail, laadi see üles ja paigalda)&lt;br /&gt;
# Paigalda kaustast - sisesta kaustatee, kus pakk sinu serveris on&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda aadressilt - (sisesta paki URL)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
Option 4 does everything for you, your environment needs to be properly configured to allow this. Option 2 requires you to download the extension to your PC. Option 3 requires you to unzip and move the folders/files to your webserver. All options require the webserver to have write access to the webspace.&lt;br /&gt;
&lt;br /&gt;
Antud hetkel valime teise meetodi: Lae pakifail üles&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Vali oma arvutist pakifail klikkides nuppu &#039;&#039;Või otsi faili&#039;&#039;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-upload-package-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Kui pakifail ei anna mingeid veateateid, siis ongi kõik valmis ning sulle antakse teade eduka installimise kohta nagu all näidatud.&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-install-success-en.png]]&lt;br /&gt;
&lt;br /&gt;
=== Verify installation ===&lt;br /&gt;
Go from tab &#039;Install&#039; to tab &#039;Manage&#039;, set the &#039;Type&#039; filter to &#039;Template&#039;. The installed template should appear in the list. If it does, the template is properly installed. Now you can assign one of styles to a menu item or set the style as default. For administrator templates make sure you have two windows of the template manager. Activate the new template in one of them and reset it in the other one if something went wrong.&lt;br /&gt;
&lt;br /&gt;
=== Install via FTP (unpacked template file) ===&lt;br /&gt;
Templates can also be installed via FTP without packaging them. Simply select the template folder on your PC and upload it to your server, using your favourite FTP software. Be sure you upload the template folder to the directory: /&#039;&#039;path_to_joomla&#039;&#039;/templates/ - where /&#039;&#039;path_to_joomla&#039;&#039;/ is the location of your Joomla! installation on the server. This method is mostly used when you have created a template yourself, and do not want to have to package it to install the template, or if you want to upload more than one template at once. You must then go into extension manager and click on &#039;&#039;Discover&#039;&#039; in the sub menu. Click on &amp;quot;Discover&amp;quot; in the toolbar if your template doesn&#039;t immediately appear. A list of uninstalled items in the FTP should then appear. Click the checkbox to the left of your template and click on the button &#039;Install&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: Do not try to use FTP to install Components, Modules and Plugins if you are a beginner/novice. These items need database entries which have to be inserted manually if you bypass the package installer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Beginners{{#translation:}}]]&lt;br /&gt;
[[Category:Template Management{{#translation:}}]]&lt;br /&gt;
[[Category:Tutorials{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/7/et&amp;diff=660916</id>
		<title>Translations:J3.x:Installing a template/7/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/7/et&amp;diff=660916"/>
		<updated>2020-04-10T14:01:37Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Paigalda kaustast - sisesta kaustatee, kus pakk sinu serveris on&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660915</id>
		<title>J3.x:Installing a template/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660915"/>
		<updated>2020-04-10T14:01:26Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
=== Läbi adminiliidese paigaldamine (pakitud kujunduse fail) ===&lt;br /&gt;
Logi oma saidi adminiliidesesse sisse (&#039;&#039;www.sinu-sait.ee&#039;&#039;/administrator/)&lt;br /&gt;
&lt;br /&gt;
Vali: Lisaprogrammid -&amp;gt; Haldamine&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-navigate-en.png]]&lt;br /&gt;
&lt;br /&gt;
Sulle näidatakse &amp;quot;Lisaprogrammide haldamise lehekülge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Siit saad paigaldada oma kujundusi, pluginaid, mooduleid, komponente ja keelefaile. Sul on need valikud:&lt;br /&gt;
# Paigalda veebist - vali lisaprogramm Joomla! lisade kataloogist&lt;br /&gt;
# Lae pakifail üles - (vali oma arvutist fail, laadi see üles ja paigalda)&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda kaustast - (sisesta kaustatee, kus pakk sinu serveris on)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda aadressilt - (sisesta paki URL)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
Option 4 does everything for you, your environment needs to be properly configured to allow this. Option 2 requires you to download the extension to your PC. Option 3 requires you to unzip and move the folders/files to your webserver. All options require the webserver to have write access to the webspace.&lt;br /&gt;
&lt;br /&gt;
Antud hetkel valime teise meetodi: Lae pakifail üles&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Vali oma arvutist pakifail klikkides nuppu &#039;&#039;Või otsi faili&#039;&#039;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-upload-package-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Kui pakifail ei anna mingeid veateateid, siis ongi kõik valmis ning sulle antakse teade eduka installimise kohta nagu all näidatud.&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-install-success-en.png]]&lt;br /&gt;
&lt;br /&gt;
=== Verify installation ===&lt;br /&gt;
Go from tab &#039;Install&#039; to tab &#039;Manage&#039;, set the &#039;Type&#039; filter to &#039;Template&#039;. The installed template should appear in the list. If it does, the template is properly installed. Now you can assign one of styles to a menu item or set the style as default. For administrator templates make sure you have two windows of the template manager. Activate the new template in one of them and reset it in the other one if something went wrong.&lt;br /&gt;
&lt;br /&gt;
=== Install via FTP (unpacked template file) ===&lt;br /&gt;
Templates can also be installed via FTP without packaging them. Simply select the template folder on your PC and upload it to your server, using your favourite FTP software. Be sure you upload the template folder to the directory: /&#039;&#039;path_to_joomla&#039;&#039;/templates/ - where /&#039;&#039;path_to_joomla&#039;&#039;/ is the location of your Joomla! installation on the server. This method is mostly used when you have created a template yourself, and do not want to have to package it to install the template, or if you want to upload more than one template at once. You must then go into extension manager and click on &#039;&#039;Discover&#039;&#039; in the sub menu. Click on &amp;quot;Discover&amp;quot; in the toolbar if your template doesn&#039;t immediately appear. A list of uninstalled items in the FTP should then appear. Click the checkbox to the left of your template and click on the button &#039;Install&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: Do not try to use FTP to install Components, Modules and Plugins if you are a beginner/novice. These items need database entries which have to be inserted manually if you bypass the package installer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Beginners{{#translation:}}]]&lt;br /&gt;
[[Category:Template Management{{#translation:}}]]&lt;br /&gt;
[[Category:Tutorials{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660914</id>
		<title>J3.x:Installing a template/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660914"/>
		<updated>2020-04-10T14:01:23Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
=== Läbi adminiliidese paigaldamine (pakitud kujunduse fail) ===&lt;br /&gt;
Logi oma saidi adminiliidesesse sisse (&#039;&#039;www.sinu-sait.ee&#039;&#039;/administrator/)&lt;br /&gt;
&lt;br /&gt;
Vali: Lisaprogrammid -&amp;gt; Haldamine&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-navigate-en.png]]&lt;br /&gt;
&lt;br /&gt;
Sulle näidatakse &amp;quot;Lisaprogrammide haldamise lehekülge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Siit saad paigaldada oma kujundusi, pluginaid, mooduleid, komponente ja keelefaile. Sul on need valikud:&lt;br /&gt;
# Paigalda veebist - vali lisaprogramm Joomla! lisade kataloogist&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Lae pakifail üles - (vali oma arvutist fail, laadi see üles ja paigalda)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda kaustast - (sisesta kaustatee, kus pakk sinu serveris on)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda aadressilt - (sisesta paki URL)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
Option 4 does everything for you, your environment needs to be properly configured to allow this. Option 2 requires you to download the extension to your PC. Option 3 requires you to unzip and move the folders/files to your webserver. All options require the webserver to have write access to the webspace.&lt;br /&gt;
&lt;br /&gt;
Antud hetkel valime teise meetodi: Lae pakifail üles&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Vali oma arvutist pakifail klikkides nuppu &#039;&#039;Või otsi faili&#039;&#039;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-upload-package-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Kui pakifail ei anna mingeid veateateid, siis ongi kõik valmis ning sulle antakse teade eduka installimise kohta nagu all näidatud.&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-install-success-en.png]]&lt;br /&gt;
&lt;br /&gt;
=== Verify installation ===&lt;br /&gt;
Go from tab &#039;Install&#039; to tab &#039;Manage&#039;, set the &#039;Type&#039; filter to &#039;Template&#039;. The installed template should appear in the list. If it does, the template is properly installed. Now you can assign one of styles to a menu item or set the style as default. For administrator templates make sure you have two windows of the template manager. Activate the new template in one of them and reset it in the other one if something went wrong.&lt;br /&gt;
&lt;br /&gt;
=== Install via FTP (unpacked template file) ===&lt;br /&gt;
Templates can also be installed via FTP without packaging them. Simply select the template folder on your PC and upload it to your server, using your favourite FTP software. Be sure you upload the template folder to the directory: /&#039;&#039;path_to_joomla&#039;&#039;/templates/ - where /&#039;&#039;path_to_joomla&#039;&#039;/ is the location of your Joomla! installation on the server. This method is mostly used when you have created a template yourself, and do not want to have to package it to install the template, or if you want to upload more than one template at once. You must then go into extension manager and click on &#039;&#039;Discover&#039;&#039; in the sub menu. Click on &amp;quot;Discover&amp;quot; in the toolbar if your template doesn&#039;t immediately appear. A list of uninstalled items in the FTP should then appear. Click the checkbox to the left of your template and click on the button &#039;Install&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: Do not try to use FTP to install Components, Modules and Plugins if you are a beginner/novice. These items need database entries which have to be inserted manually if you bypass the package installer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Beginners{{#translation:}}]]&lt;br /&gt;
[[Category:Template Management{{#translation:}}]]&lt;br /&gt;
[[Category:Tutorials{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/31/et&amp;diff=660913</id>
		<title>Translations:J3.x:Installing a template/31/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/31/et&amp;diff=660913"/>
		<updated>2020-04-10T14:01:23Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Paigalda veebist - vali lisaprogramm Joomla! lisade kataloogist&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660912</id>
		<title>J3.x:Installing a template/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Installing_a_template/et&amp;diff=660912"/>
		<updated>2020-04-10T14:01:07Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
=== Läbi adminiliidese paigaldamine (pakitud kujunduse fail) ===&lt;br /&gt;
Logi oma saidi adminiliidesesse sisse (&#039;&#039;www.sinu-sait.ee&#039;&#039;/administrator/)&lt;br /&gt;
&lt;br /&gt;
Vali: Lisaprogrammid -&amp;gt; Haldamine&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-navigate-en.png]]&lt;br /&gt;
&lt;br /&gt;
Sulle näidatakse &amp;quot;Lisaprogrammide haldamise lehekülge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Siit saad paigaldada oma kujundusi, pluginaid, mooduleid, komponente ja keelefaile. Sul on need valikud:&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda veebist - (vali lisaprogramm Joomla! lisade kataloogist)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Lae pakifail üles - (vali oma arvutist fail, laadi see üles ja paigalda)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda kaustast - (sisesta kaustatee, kus pakk sinu serveris on)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
# &amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Paigalda aadressilt - (sisesta paki URL)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
Option 4 does everything for you, your environment needs to be properly configured to allow this. Option 2 requires you to download the extension to your PC. Option 3 requires you to unzip and move the folders/files to your webserver. All options require the webserver to have write access to the webspace.&lt;br /&gt;
&lt;br /&gt;
Antud hetkel valime teise meetodi: Lae pakifail üles&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mw-translate-fuzzy&amp;quot;&amp;gt;&lt;br /&gt;
Vali oma arvutist pakifail klikkides nuppu &#039;&#039;Või otsi faili&#039;&#039;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-upload-package-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Kui pakifail ei anna mingeid veateateid, siis ongi kõik valmis ning sulle antakse teade eduka installimise kohta nagu all näidatud.&lt;br /&gt;
&lt;br /&gt;
[[Image:30-Installing-template-install-success-en.png]]&lt;br /&gt;
&lt;br /&gt;
=== Verify installation ===&lt;br /&gt;
Go from tab &#039;Install&#039; to tab &#039;Manage&#039;, set the &#039;Type&#039; filter to &#039;Template&#039;. The installed template should appear in the list. If it does, the template is properly installed. Now you can assign one of styles to a menu item or set the style as default. For administrator templates make sure you have two windows of the template manager. Activate the new template in one of them and reset it in the other one if something went wrong.&lt;br /&gt;
&lt;br /&gt;
=== Install via FTP (unpacked template file) ===&lt;br /&gt;
Templates can also be installed via FTP without packaging them. Simply select the template folder on your PC and upload it to your server, using your favourite FTP software. Be sure you upload the template folder to the directory: /&#039;&#039;path_to_joomla&#039;&#039;/templates/ - where /&#039;&#039;path_to_joomla&#039;&#039;/ is the location of your Joomla! installation on the server. This method is mostly used when you have created a template yourself, and do not want to have to package it to install the template, or if you want to upload more than one template at once. You must then go into extension manager and click on &#039;&#039;Discover&#039;&#039; in the sub menu. Click on &amp;quot;Discover&amp;quot; in the toolbar if your template doesn&#039;t immediately appear. A list of uninstalled items in the FTP should then appear. Click the checkbox to the left of your template and click on the button &#039;Install&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: Do not try to use FTP to install Components, Modules and Plugins if you are a beginner/novice. These items need database entries which have to be inserted manually if you bypass the package installer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Beginners{{#translation:}}]]&lt;br /&gt;
[[Category:Template Management{{#translation:}}]]&lt;br /&gt;
[[Category:Tutorials{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/5/et&amp;diff=660911</id>
		<title>Translations:J3.x:Installing a template/5/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Installing_a_template/5/et&amp;diff=660911"/>
		<updated>2020-04-10T14:01:07Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Siit saad paigaldada oma kujundusi, pluginaid, mooduleid, komponente ja keelefaile. Sul on need valikud:&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Category:Components/et&amp;diff=660910</id>
		<title>Category:Components/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Category:Components/et&amp;diff=660910"/>
		<updated>2020-04-10T14:00:45Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Chunk:Component/en}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions/et]]&lt;br /&gt;
[[Category:User Action Logs/et]]&lt;br /&gt;
[[Category:Privacy/et]]&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Components/2/et&amp;diff=660909</id>
		<title>Translations:Category:Components/2/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Components/2/et&amp;diff=660909"/>
		<updated>2020-04-10T14:00:45Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Extensions/et]]&lt;br /&gt;
[[Category:User Action Logs/et]]&lt;br /&gt;
[[Category:Privacy/et]]&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Joomla_3.8.8_notes_about_the_changed_default_settings/et&amp;diff=660908</id>
		<title>J3.x:Joomla 3.8.8 notes about the changed default settings/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Joomla_3.8.8_notes_about_the_changed_default_settings/et&amp;diff=660908"/>
		<updated>2020-04-10T13:59:41Z</updated>

		<summary type="html">&lt;p&gt;Eraser: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
== Uuendatud soovitused saidi turvamiseks ==&lt;br /&gt;
&lt;br /&gt;
=== Tekstifiltrid ===&lt;br /&gt;
Alates Joomla versioonist 3.8.8 ei luba vaikimisi tekstifiltri seaded sisestada administraatoril filtreerimata teksti. Soovitame saidiomanikel vaadata üle oma tekstifiltri seaded ning rakendada mainitud muudatused, et teha oma sait turvalisemaks.&amp;lt;br&amp;gt;&lt;br /&gt;
Oma praegu kehtivad tekstifiltrite seaded leiad adminiliidesest.&amp;lt;br&amp;gt;&lt;br /&gt;
Adminiliides {{rarr}} Süsteem {{rarr}} Üldised seaded {{rarr}} Tekstifiltrid&lt;br /&gt;
&lt;br /&gt;
Nüüd on soovitatud panna Administraatori grupile valiku &#039;Filtreerimist pole&#039; asemel valik &#039;Vaikimisi must nimekiri&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Text Filters-en.jpg|800px]]&lt;br /&gt;
&lt;br /&gt;
=== Ära saada parooli e-postiga lihttekstina ===&lt;br /&gt;
Alates Joomla versioonist 3.8.8 pole kasutajate halduri  valik “Saada parool” enam vaikimisi sisse lülitatud. Soovitame seda muuta ka olemasolevatel saitidel. Selle tegemiseks mine siia:&amp;lt;br&amp;gt;&lt;br /&gt;
Adminiliides {{rarr}} Süsteem {{rarr}} Üldised seaded {{rarr}} Kasutajad {{rarr}} Saada parool&lt;br /&gt;
&lt;br /&gt;
[[File:Send Password-en.jpg|800px]]&lt;br /&gt;
&lt;br /&gt;
=== Üleslaadimise seaded ===&lt;br /&gt;
Soovitame sul vaadata üle failitüübid ja -laiendid, mida on lubatud üles laadida. &lt;br /&gt;
Alates Joomla versioonist 3.7.3 oleme lubanud määrata faililaiendid ja -tüübid, mida võib üles laadida. Flash failid pole enam lubatud, kuna ilma korraliku kontrollita võivad need olla turvariskiks. Soovitame keelata Joomlas Flash failide üleslaadimise.&amp;lt;br&amp;gt;&lt;br /&gt;
Seega soovitame sul eemaldada järgmised väärtused oma üleslaadimiste seadetest, et failihalduris ei saaks laadida üles Flash faile:&amp;lt;br&amp;gt;&lt;br /&gt;
* Lubatud piltide faililaiendid (failitüübid): &amp;quot;swf&amp;quot;&lt;br /&gt;
* Lubatud failitüübid: &amp;quot;application/x-shockwave-flash&amp;quot;&lt;br /&gt;
Nende väärtuste eemaldamiseks mine siia:&amp;lt;br&amp;gt;&lt;br /&gt;
Adminiliides {{rarr}} Süsteem {{rarr}} Üldised seaded {{rarr}} Failid&lt;br /&gt;
&lt;br /&gt;
[[File:Flash Options-en.jpg|800px]]&lt;br /&gt;
&lt;br /&gt;
=== Lingi saatmine e-postiga ===&lt;br /&gt;
Lisaks ülalmainitud muudatustele lülitatakse uutel saitidel välja ka artikli saatmine e-postiga.&amp;lt;br&amp;gt;&lt;br /&gt;
Soovitame mõelda, kas sa vajad oma saidil seda funktsiooni või mitte. &amp;lt;br /&amp;gt;&lt;br /&gt;
Pea meeles, et seda saab muuta kolmest erinevast kohast:&lt;br /&gt;
# Artikli ja menüülingi vahekaardilt &amp;quot;Valikud&amp;quot;. &lt;br /&gt;
# Ning samuti artiklite komponendi seadetest.&lt;br /&gt;
Kui soovid seda valikut kogu lehel välja lülitada, siis tee seda siit:&amp;lt;br /&amp;gt;&lt;br /&gt;
Adminiliides {{rarr}} Süsteem {{rarr}} Üldised seaded {{rarr}} Artiklid (Sa pead seal veidi allapoole kerima)&lt;br /&gt;
&lt;br /&gt;
[[File:Mailto-en.jpg|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla! 3.8{{#translation:}}]]&lt;br /&gt;
[[Category:Version 3.8 FAQ{{#translation:}}]]&lt;br /&gt;
[[Category:Version 3.8.8 FAQ{{#translation:}}]]&lt;br /&gt;
[[Category:Security{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Category:Joomla!_user_profiles/et&amp;diff=660907</id>
		<title>Category:Joomla! user profiles/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Category:Joomla!_user_profiles/et&amp;diff=660907"/>
		<updated>2020-04-10T13:58:27Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;See kategooria on Joomla! kasutajate kasutajaprofiilide jaoks. Joomla! kasutajaprofiilide kohta vaata lisainfot kasutajate portaalist.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See kategooria on Joomla! kasutajate kasutajaprofiilide jaoks. Joomla! kasutajaprofiilide kohta vaata lisainfot [[S:MyLanguage/User Management|kasutajate portaalist]].&lt;br /&gt;
[[Category:Documentation Working Group{{#translation:}}]]&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Joomla!_user_profiles/1/et&amp;diff=660906</id>
		<title>Translations:Category:Joomla! user profiles/1/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Joomla!_user_profiles/1/et&amp;diff=660906"/>
		<updated>2020-04-10T13:58:26Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;See kategooria on Joomla! kasutajate kasutajaprofiilide jaoks. Joomla! kasutajaprofiilide kohta vaata lisainfot kasutajate portaalist.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See kategooria on Joomla! kasutajate kasutajaprofiilide jaoks. Joomla! kasutajaprofiilide kohta vaata lisainfot [[S:MyLanguage/User Management|kasutajate portaalist]].&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Help_screens/et&amp;diff=660905</id>
		<title>Help310:Help screens/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Help_screens/et&amp;diff=660905"/>
		<updated>2020-04-10T13:38:05Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Kui soovid aidata dokumentatsiooni töörühmal adminiliidese abiinfo koostamisel, siis pead vaatama üle Help30:Help_screens_styleguide|Joomla! {{CurrentSTSVer|minor}} abii...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
&lt;br /&gt;
See lehekülg on abiks dokumentatsiooni tüürühmale ning siin on kõik Joomla {{CurrentSTSVer|Minor}} abiinfo lehed ning nende praegune staatus, lõpetamata, ülevaatamiseks valmis või lõpetatud.&lt;br /&gt;
&lt;br /&gt;
{{tip|title=Pane tähele&lt;br /&gt;
|text = Kui soovid aidata dokumentatsiooni töörühmal adminiliidese abiinfo koostamisel, siis pead vaatama üle [[Help30:Help_screens_styleguide|Joomla! {{CurrentSTSVer|minor}} abiinfo lehekülgede stiilijuhend]] et saada aru nende lehekülgede ülesehitust. --- Aitäh! Dokumentatsiooni meeskond.&lt;br /&gt;
}}&lt;br /&gt;
==Süsteemi menüü ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=21%|Abiinfo leht&lt;br /&gt;
!width=25%|Asukoht kasutajaliideses&lt;br /&gt;
!width=15%|Komponent/vaade&lt;br /&gt;
!width=22%|Keele võti&lt;br /&gt;
!width=12%|Staatus&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site Control Panel|Site_Control_Panel]]&lt;br /&gt;
| {{rarr|Süsteem,Juhtpaneel|size=1.5}} &lt;br /&gt;
| com_cpanel/cpanel&lt;br /&gt;
| No help screen.&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site Global Configuration|Site_Global_Configuration]]&lt;br /&gt;
| {{rarr|Süsteem,Üldised seaded|size=1.5}}&lt;br /&gt;
| com_config/application&lt;br /&gt;
| JHELP_SITE_GLOBAL_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site Maintenance Global Check-in|Site_Maintenance_Global_Check-in]]&lt;br /&gt;
| {{rarr|Süsteem,Kasutusel olevate (lukustatud) kirjete vabastamine|size=1.5}}&lt;br /&gt;
| com_checkin/checkin&lt;br /&gt;
| JHELP_SITE_MAINTENANCE_GLOBAL_CHECK-IN&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site Maintenance Clear Cache|Site_Maintenance_Clear_Cache]]&lt;br /&gt;
| {{rarr|Süsteem,Tühjenda puhvermälu|size=1.5}}&lt;br /&gt;
| com_cache/cache&lt;br /&gt;
| JHELP_SITE_MAINTENANCE_CLEAR_CACHE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site Maintenance Purge Expired Cache|Site_Maintenance_Purge_Expired_Cache]]&lt;br /&gt;
| {{rarr|Süsteem,Aegunud vahemälu kustutamine|size=1.5}}&lt;br /&gt;
| com_cache/purge&lt;br /&gt;
| JHELP_SITE_MAINTENANCE_PURGE_EXPIRED_CACHE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site System Information|Site_System_Information]]&lt;br /&gt;
| {{rarr|Süsteem,Süsteemi info|size=1.5}}&lt;br /&gt;
| com_admin/sysinfo&lt;br /&gt;
| JHELP_SITE_SYSTEM_INFORMATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Kasutajate menüü==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=21%|Abiinfo leht&lt;br /&gt;
!width=25%|Asukoht kasutajaliideses&lt;br /&gt;
!width=15%|Komponent/vaade&lt;br /&gt;
!width=22%|Keele võti&lt;br /&gt;
!width=12%|Staatus&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Site My Profile|Site_My_Profile]]&lt;br /&gt;
| {{rarr|Kasutaja ikoon,Muuda kontot|size=1.5}}&lt;br /&gt;
| com_admin/profile&lt;br /&gt;
| JHELP_ADMIN_USER_PROFILE_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Manager|Users_User_Manager]]&lt;br /&gt;
| {{rarr|Kasutajad,Haldamine|size=1.5}}&lt;br /&gt;
| com_users/users{{rarr|Users,&lt;br /&gt;
| JHELP_USERS_USER_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Manager_Edit|Users_User_Manager_Edit]]&lt;br /&gt;
| {{rarr|Kasutajad,Haldamine,Lisa uus kasutaja|size=1.5}}&lt;br /&gt;
| com_users/user&lt;br /&gt;
| JHELP_USERS_USER_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Groups|Users_Groups]]&lt;br /&gt;
| {{rarr|Kasutajad,Grupid|size=1.5}}&lt;br /&gt;
| com_users/groups&lt;br /&gt;
| JHELP_USERS_GROUPS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Groups_Edit|Users_Groups_Edit]]&lt;br /&gt;
| {{rarr|Kasutajad,Grupid,Lisa uus grupp|size=1.5}}&lt;br /&gt;
| com_users/group&lt;br /&gt;
| JHELP_USERS_GROUPS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Access_Levels|Users_Access_Levels]]&lt;br /&gt;
| {{rarr|Kasutajad,Juurdepääsu tasemed|size=1.5}}&lt;br /&gt;
| com_users/levels&lt;br /&gt;
| JHELP_USERS_ACCESS_LEVELS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Access_Levels_Edit|Users_Access_Levels_Edit]]&lt;br /&gt;
| {{rarr|Kasutajad,Juurdepääsu tasemed,Lisa uus juurdepääsu tase|size=1.5}}&lt;br /&gt;
| com_users/level&lt;br /&gt;
| JHELP_USERS_ACCESS_LEVELS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Notes|Users_User_Notes]]&lt;br /&gt;
| {{rarr|Kasutajad,Kasutaja märkus|size=1.5}}&lt;br /&gt;
| com_users/notes&lt;br /&gt;
| JHELP_USERS_USER_NOTES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Notes_Edit|Users_User_Notes_Edit]]&lt;br /&gt;
| {{rarr|Kasutajad,Kasutaja märkus,Lisa uus kasutaja märkus|size=1.5}}&lt;br /&gt;
| com_users/note&lt;br /&gt;
| JHELP_USERS_USER_NOTES_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Note_Categories|Users_User_Note_Categories]]&lt;br /&gt;
| {{rarr|Kasutajad,Kasutaja märkuste kategooriad|size=1.5}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_USERS_NOTES_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_User_Note_Category_Edit|Users_User_Note_Category_Edit]]&lt;br /&gt;
| {{rarr|Kasutajad,Kasutaja märkuste kategooriad,Lisa uus kategooria|size=1.5}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_USERS_NOTES_CATEGORY_ADD&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Mass_Mail_Users|Users_Mass_Mail_Users]]&lt;br /&gt;
| {{rarr|Kasutajad,Masspostitus|size=1.5}}&lt;br /&gt;
| com_users/mail&lt;br /&gt;
| JHELP_USERS_MASS_MAIL_USERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Debug_Users|Users_Debug_Users]]&lt;br /&gt;
| {{rarr|Kasutajad,Halda,Õiguste aruanne|size=1.5}}&lt;br /&gt;
| com_users/debuguser&lt;br /&gt;
| JHELP_USERS_DEBUG_USERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Users_Debug_Groups|Users_Debug_Groups]]&lt;br /&gt;
| {{rarr|Kasutajad,Kasutajagrupid,Õiguste aruanne|size=1.5}}&lt;br /&gt;
| com_users/debuggroup&lt;br /&gt;
| JHELP_USERS_DEBUG_GROUPS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Actionlogs|Components_Actionlogs]]&lt;br /&gt;
| {{rarr|Users,User Actions Log|size=1.5}}&lt;br /&gt;
| com_actionlogs/actionlogs&lt;br /&gt;
| JHELP_COMPONENTS_ACTIONLOGS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Dashboard|Components_Privacy_Dashboard]]&lt;br /&gt;
| {{rarr|Users,Privacy|size=1.5}}&lt;br /&gt;
| com_privacy/dashboard &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_DASHBOARD &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Requests|Components_Privacy_Requests]]&lt;br /&gt;
| {{rarr|Users,Privacy,Request|size=1.5}}&lt;br /&gt;
| com_privacy/requests &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_REQUESTS &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Request|Components_Privacy_Request]]&lt;br /&gt;
| {{rarr|Users,Privacy,Request|size=1.5}}&lt;br /&gt;
| com_privacy/request &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_REQUEST &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Request_Edit|Components_Privacy_Request_Edit]]&lt;br /&gt;
| {{rarr|Users,Privacy,Request,Edit|size=1.5}}&lt;br /&gt;
| com_privacy/request &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_REQUEST_EDIT &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Capabilities|Components_Privacy_Capabilities]]&lt;br /&gt;
| {{rarr|Users,Privacy,Capabilities|size=1.5}}&lt;br /&gt;
| com_privacy/capabilities &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_CAPABILITIES &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Consents|Components_Privacy_Consents]]&lt;br /&gt;
| {{rarr|Users,Privacy,Consents|size=1.5}}&lt;br /&gt;
| com_privacy/consents &lt;br /&gt;
| JHELP_COMPONENTS_PRIVACY_CONSENTS &lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Menüüde menüü==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=21%|Abiinfo leht&lt;br /&gt;
!width=25%|Asukoht kasutajaliideses&lt;br /&gt;
!width=15%|Komponent/vaade&lt;br /&gt;
!width=22%|Keele võti&lt;br /&gt;
!width=12%|Staatus&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Manager|Menus_Menu_Manager]]&lt;br /&gt;
| {{rarr|Menüüd,Halda|size=1.5}}&lt;br /&gt;
| com_menus/menus&lt;br /&gt;
| JHELP_MENUS_MENU_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Manager_Edit|Menus_Menu_Manager_Edit]]&lt;br /&gt;
| {{rarr|Menüüd,Halda,Lisa uus menüü|size=1.5}}&lt;br /&gt;
| com_menus/menu&lt;br /&gt;
| JHELP_MENUS_MENU_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Manager|Menus_Menu_Item_Manager]]&lt;br /&gt;
| {{rarr|Menüüd,Kõik menüülingid|size=1.5}}&lt;br /&gt;
| com_menus/items&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Manager_Edit|Menus_Menu_Item_Manager_Edit]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Menüülingi tüübid ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=21%|Abiinfo leht&lt;br /&gt;
!width=25%|Asukoht kasutajaliideses&lt;br /&gt;
!width=15%|Komponent/vaade&lt;br /&gt;
!width=22%|Keele võti&lt;br /&gt;
!width=12%|Status&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Contact_Categories|Menus_Menu_Item_Contact_Categories]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kõik kontaktide kategooriad|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_CONTACT_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;| 3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Contact_Category|Menus_Menu_Item_Contact_Category]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kontaktid kategoorias|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_CONTACT_CATEGORY&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Contact_Single_Contact|Menus_Menu_Item_Contact_Single_Contact]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kontakt,Üks kontakt|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_CONTACT_SINGLE_CONTACT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Contact_Featured|Menus_Menu_Item_Contact_Featured]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kontakt,Esiletõstetud kontaktid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_CONTACT_FEATURED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Newsfeed_Categories|Menus_Menu_Item_Newsfeed_Categories]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Uudisvood,Kõik uudisvoogude kategooriad|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_NEWSFEED_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Newsfeed_Category|Menus_Menu_Item_Newsfeed_Category]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Uudisvoogude kategooria|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_NEWSFEED_CATEGORY&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Newsfeed_Single_Newsfeed|Menus_Menu_Item_Newsfeed_Single_Newsfeed]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Üks uudisvoog|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_NEWSFEED_SINGLE_NEWSFEED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Menus_Menu_Item_Privacy_Confirm_Request|Menus_Menu_Item_Privacy_Confirm_Request]]&lt;br /&gt;
| {{rarr|Menus,[Menu name],Add New Menu Item,Privacy, Confirm Request|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_PRIVACY_CONFIRM_REQUEST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Menus_Menu_Item_Privacy_Create_Request|Menus_Menu_Item_Privacy_Create_Request]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Privaatsus,Loo päring|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_PRIVACY_CREATE_REQUEST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Menus_Menu_Item_Privacy_Remind_Request|Menus_Menu_Item_Privacy_Remind_Request]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Privaatsus,Pikenda nõusolekut|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_PRIVACY_REMIND_REQUEST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Weblink_Categories|Menus_Menu_Item_Weblink_Categories]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kõik veebilinkide kategooriad|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_WEBLINK_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Weblink_Category|Menus_Menu_Item_Weblink_Category]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Veebilinkide kategooria|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_WEBLINK_CATEGORY&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Weblink_Submit|Menus_Menu_Item_Weblink_Submit]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Lisa veebilink|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_WEBLINK_SUBMIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_External_URL|Menus_Menu_Item_External_URL]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Väline link|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_EXTERNAL_URL&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Menu_Item_Alias|Menus_Menu_Item_Menu_Item_Alias]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Menüülingi alias|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_MENU_ITEM_ALIAS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Text_Separator|Menus_Menu_Item_Text_Separator]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Tekstieraldaja|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_TEXT_SEPARATOR&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Menu_Item_Heading|Menus_Menu_Item_Menu_Item_Heading]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Menüülingi pealkiri|size=1.5}}&lt;br /&gt;
| com_menus/heading&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_MENU_ITEM_HEADING&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Archived|Menus_Menu_Item_Article_Archived]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Arhiveeritud artiklid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_ARCHIVED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Single_Article|Menus_Menu_Item_Article_Single_Article]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Üks artikkel|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_SINGLE_ARTICLE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Categories|Menus_Menu_Item_Article_Categories]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kõik kategooriad|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Category_Blog|Menus_Menu_Item_Article_Category_Blog]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kategooria blogi|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_CATEGORY_BLOG&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Category_List|Menus_Menu_Item_Article_Category_List]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Kategooria nimekiri|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_CATEGORY_LIST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Featured|Menus_Menu_Item_Article_Featured]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Esiletõstetud artiklid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_FEATURED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Article_Create|Menus_Menu_Item_Article_Create]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Loo artikkel|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_ARTICLE_CREATE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Search_Results|Menus_Menu_Item_Search_Results]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Lisa uus menüülink,Otsinguvorm või otsingutulemused|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_SEARCH_RESULTS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Tags_Items_List|Menus_Menu_Item_Tags_Items_List]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Siltidega kirjed|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_TAGS_ITEMS_LIST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Tags_Items_Compact_List|Menus_Menu_Item_Tags_Items_Compact_List]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Kompaktne nimekiri siltidega kirjetest|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_TAGS_ITEMS_COMPACT_LIST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Tags_Items_List_All|Menus_Menu_Item_Tags_Items_List_All]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Kõik sildid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_TAGS_ITEMS_LIST_ALL&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Login|Menus_Menu_Item_User_Login]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Sisselogimisvorm|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_LOGIN&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Profile|Menus_Menu_Item_User_Profile]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Kasutajaprofiil|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_PROFILE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Profile_Edit|Menus_Menu_Item_User_Profile_Edit]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Uus kasutajaprofiil|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_PROFILE_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Registration|Menus_Menu_Item_User_Registration]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Registreerumine|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_REGISTRATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Reminder|Menus_Menu_Item_User_Reminder]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Kasutajanime meenutamine|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_REMINDER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_User_Password_Reset|Menus_Menu_Item_User_Password_Reset]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Parooli taastamine|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_USER_PASSWORD_RESET&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Wrapper|Menus_Menu_Item_Wrapper]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Raam|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_WRAPPER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Menus_Menu_Item_Finder_Search|Menus_Menu_Item_Finder_Search]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Nutikas otsing|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_FINDER_SEARCH&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis&lt;br /&gt;
|-&lt;br /&gt;
| [[Help32:Menus_Menu_Item_Display_Template_Options|Menus_Menu_Item_Display_Template_Options]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Näita kujunduse valikuid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_DISPLAY_TEMPLATE_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis &lt;br /&gt;
|-&lt;br /&gt;
| [[Help32:Menus_Menu_Item_Display_Site_Configuration|Menus_Menu_Item_Display_Site_Configuration]]&lt;br /&gt;
| {{rarr|Menüüd,[Menüü nimi],Uus,Näita saidi seadeid|size=1.5}}&lt;br /&gt;
| com_menus/item&lt;br /&gt;
| JHELP_MENUS_MENU_ITEM_DISPLAY_SITE_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|3.9 jaoks valmis &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Content Menu ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=15%|Help screen&lt;br /&gt;
!width=30%|Path in user interface&lt;br /&gt;
!width=17%|Component/view&lt;br /&gt;
!width=15%|Language key&lt;br /&gt;
!width=18%|Status&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Content_Article_Manager|Content_Article_Manager]]&lt;br /&gt;
| {{rarr|Content,Articles}}&lt;br /&gt;
| com_content/articles&lt;br /&gt;
| JHELP_CONTENT_ARTICLE_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Content_Article_Manager_Edit|Content_Article_Manager_Edit]]&lt;br /&gt;
| {{rarr|Content,Articles,Add New Article}}&lt;br /&gt;
| com_content/article&lt;br /&gt;
| JHELP_CONTENT_ARTICLE_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Content_Categories|Components_Content_Categories]]&lt;br /&gt;
| {{rarr|Content,Categories}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_CONTENT_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Content_Categories_Edit|Components_Content_Categories_Edit]]&lt;br /&gt;
| {{rarr|Content,Categories,Add New Category}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_CONTENT_CATEGORY_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Fields_Field_Groups|Components_Fields_Field_Groups]]&lt;br /&gt;
| {{rarr|Content/Users/Contacts,Field Groups}}&lt;br /&gt;
| com_fields/fields&lt;br /&gt;
| JHELP_COMPONENTS_FIELDS_FIELD_GROUPS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Fields_Field_Groups_Edit|Components_Fields_Field_Groups_Edit]]&lt;br /&gt;
| {{rarr|Content/Users/Contacts,Field Groups,New/Edit}}&lt;br /&gt;
| com_fields/fields&lt;br /&gt;
| JHELP_COMPONENTS_FIELDS_FIELD_GROUPS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Fields_Fields|Components_Fields_Fields]]&lt;br /&gt;
| {{rarr|Content/Users/Contacts,Fields}}&lt;br /&gt;
| com_fields/fields&lt;br /&gt;
| JHELP_COMPONENTS_FIELDS_FIELDS&lt;br /&gt;
|style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Fields_Fields_Edit|Components_Fields_Fields_Edit]]&lt;br /&gt;
| {{rarr|Content/Users/Contacts,Fields,New/Edit}}&lt;br /&gt;
| com_fields/fields&lt;br /&gt;
| JHELP_COMPONENTS_FIELDS_FIELDS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Content_Featured_Articles|Content_Featured_Articles]]&lt;br /&gt;
| {{rarr|Content,Featured Articles}}&lt;br /&gt;
| com_content/featured&lt;br /&gt;
| JHELP_CONTENT_FEATURED_ARTICLES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Content_Media_Manager|Content_Media_Manager]]&lt;br /&gt;
| {{rarr|Content,Media}}&lt;br /&gt;
| com_media/media&lt;br /&gt;
| JHELP_CONTENT_MEDIA_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Components Menu ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=21%|Help screen&lt;br /&gt;
!width=25%|Path in user interface&lt;br /&gt;
!width=15%|Component/view&lt;br /&gt;
!width=22%|Language key&lt;br /&gt;
!width=12%|Status&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Associations|Components_Associations]]&lt;br /&gt;
| {{rarr|Components,Multilingual Associations}}&lt;br /&gt;
| com_associations/associations&lt;br /&gt;
| JHELP_COMPONENTS_ASSOCIATIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Associations_Edit|Components_Associations_Edit]]&lt;br /&gt;
| {{rarr|Components,Multilingual Associations,Edit Associations}}&lt;br /&gt;
| com_associations/association&lt;br /&gt;
| JHELP_COMPONENTS_ASSOCIATIONS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Banners|Components_Banners_Banners]]&lt;br /&gt;
| {{rarr|Components,Banners,Banners}}&lt;br /&gt;
| com_banners/banners&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_BANNERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Banners_Edit|Components_Banners_Banners_Edit]]&lt;br /&gt;
| {{rarr|Components,Banners,Banners,New/Edit}}&lt;br /&gt;
| com_banners/banner&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_BANNERS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Categories|Components_Banners_Categories]]&lt;br /&gt;
| {{rarr|Components,Banners,Categories}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Categories_Edit|Components_Banners_Categories_Edit]]&lt;br /&gt;
| {{rarr|Components,Banners,Categories,New/Edit}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_CATEGORY_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Clients|Components_Banners_Clients]]&lt;br /&gt;
| {{rarr|Components,Banners,Clients}}&lt;br /&gt;
| com_banners/clients&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_CLIENTS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Clients_Edit|Components_Banners_Clients_Edit]]&lt;br /&gt;
| {{rarr|Components,Banners,Clients,New/Edit}}&lt;br /&gt;
| com_banners/client&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_CLIENTS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banners_Tracks|Components_Banners_Tracks]]&lt;br /&gt;
| {{rarr|Components,Banners,Tracks}}&lt;br /&gt;
| com_banners/tracks&lt;br /&gt;
| JHELP_COMPONENTS_BANNERS_TRACKS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Contacts_Contacts|Components_Contacts_Contacts]]&lt;br /&gt;
| {{rarr|Components,Contacts,Contacts}}&lt;br /&gt;
| com_contact/contacts&lt;br /&gt;
| JHELP_COMPONENTS_CONTACTS_CONTACTS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Contacts_Contacts_Edit|Components_Contacts_Contacts_Edit]]&lt;br /&gt;
| {{rarr|Components,Contacts,Contacts,New/Edit}}&lt;br /&gt;
| com_contact/contact&lt;br /&gt;
| JHELP_COMPONENTS_CONTACTS_CONTACTS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Contacts_Categories|Components_Contact_Categories]]&lt;br /&gt;
| {{rarr|Components,Contacts,Categories}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_CONTACTS_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Contacts_Categories_Edit|Components_Contact_Categories_Edit]]&lt;br /&gt;
| {{rarr|Components,Contacts,Categories,New/Edit}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_CONTACTS_CATEGORY_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Joomla_Update|Components_Joomla_Update]]&lt;br /&gt;
| {{rarr|Components,Joomla! Update}}&lt;br /&gt;
| com_joomlaupdate&lt;br /&gt;
| JHELP_COMPONENTS_JOOMLA_UPDATE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Messaging_Write|Components_Messaging_Write]]&lt;br /&gt;
| {{rarr|Components,Messaging,New Private Message}}&lt;br /&gt;
| com_messages/message&lt;br /&gt;
| JHELP_COMPONENTS_MESSAGING_WRITE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Messaging_Inbox|Components_Messaging_Inbox]]&lt;br /&gt;
| {{rarr|Components,Messaging,Read Private Messages}}&lt;br /&gt;
| com_messages/messages&lt;br /&gt;
| JHELP_COMPONENTS_MESSAGING_INBOX&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Messaging_Read|Components_Messaging_Read]]&lt;br /&gt;
| {{rarr|Components,Messaging,Read Private Messages,[Message]}}&lt;br /&gt;
| com_messages/message&lt;br /&gt;
| JHELP_COMPONENTS_MESSAGING_READ&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Newsfeeds_Feeds|Components_Newsfeeds_Feeds]]&lt;br /&gt;
| {{rarr|Components,Newsfeeds,Feeds}}&lt;br /&gt;
| com_newsfeeds/newsfeeds&lt;br /&gt;
| JHELP_COMPONENTS_NEWSFEEDS_FEEDS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Newsfeeds_Feeds_Edit|Components_Newsfeeds_Feeds_Edit]]&lt;br /&gt;
| {{rarr|Components,Newsfeeds,Feeds,New/Edit}}&lt;br /&gt;
| com_newsfeeds/newsfeed&lt;br /&gt;
| JHELP_COMPONENTS_NEWSFEEDS_FEEDS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Newsfeeds_Categories|Components_Newsfeeds_Categories]]&lt;br /&gt;
| {{rarr|Components,Newsfeeds,Categories}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_NEWSFEEDS_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Newsfeeds_Categories_Edit|Components_Newsfeeds_Categories_Edit]]&lt;br /&gt;
| {{rarr|Components,Newsfeeds,Categories,New/Edit}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_NEWSFEEDS_CATEGORY_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Redirect_Manager|Components_Redirect_Manager]]&lt;br /&gt;
| {{rarr|Components,Redirects}}&lt;br /&gt;
| com_redirect/links&lt;br /&gt;
| JHELP_COMPONENTS_REDIRECT_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Redirect_Manager_Edit|Components_Redirect_Manager_Edit]]&lt;br /&gt;
| {{rarr|Components,Redirects,New/Edit}}&lt;br /&gt;
| com_redirect/link&lt;br /&gt;
| JHELP_COMPONENTS_REDIRECT_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Search|Components_Search]]&lt;br /&gt;
| {{rarr|Components,Search}}&lt;br /&gt;
| com_search/searches&lt;br /&gt;
| JHELP_COMPONENTS_SEARCH&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Tags_Manager|Components_Tags_Manager]]&lt;br /&gt;
| {{rarr|Components,Tags}}&lt;br /&gt;
| com_tags/tags&lt;br /&gt;
| JHELP_COMPONENT_TAGS_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Tags_Manager_Edit|Components_Tags_Manager_Edit]]&lt;br /&gt;
| {{rarr|Components,Tags,New/Edit}}&lt;br /&gt;
| com_tags/tag&lt;br /&gt;
| JHELP_COMPONENT_TAGS_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Finder_Manage_Indexed_Content|Components_Finder_Manage_Indexed_Content]]&lt;br /&gt;
| {{rarr|Components,Smart Search}}&lt;br /&gt;
| com_finder/index&lt;br /&gt;
| JHELP_COMPONENTS_FINDER_MANAGE_INDEXED_CONTENT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Finder_Manage_Content_Maps|Components_Finder_Manage_Content_Maps]]&lt;br /&gt;
| {{rarr|Components,Smart Search,Content Maps}}&lt;br /&gt;
| com_finder/maps&lt;br /&gt;
| JHELP_COMPONENTS_FINDER_MANAGE_CONTENT_MAPS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Finder_Manage_Search_Filters|Components_Finder_Manage_Search_Filters]]&lt;br /&gt;
| {{rarr|Components,Smart Search,Search Filters}}&lt;br /&gt;
| com_finder/filters&lt;br /&gt;
| JHELP_COMPONENTS_FINDER_MANAGE_SEARCH_FILTERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Finder_Manage_Search_Filters_Edit|Components_Finder_Manage_Search_Filters_Edit]]&lt;br /&gt;
| {{rarr|Components,Smart Search,Search Filters,New/Edit}}&lt;br /&gt;
| com_finder/filter&lt;br /&gt;
| JHELP_COMPONENTS_FINDER_MANAGE_SEARCH_FILTERS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Weblinks_Links|Components_Weblinks_Links]]&lt;br /&gt;
| {{rarr|Components,Weblinks,Links}}&lt;br /&gt;
| com_weblinks/weblinks&lt;br /&gt;
| JHELP_COMPONENTS_WEBLINKS_LINKS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Weblinks_Links_Edit|Components_Weblinks_Links_Edit]]&lt;br /&gt;
| {{rarr|Components,Weblinks,Links,New/Edit}}&lt;br /&gt;
| com_weblinks/weblink&lt;br /&gt;
| JHELP_COMPONENTS_WEBLINKS_LINKS_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Weblinks_Categories|Components_Weblinks_Categories]]&lt;br /&gt;
| {{rarr|Components,Weblinks,Categories}}&lt;br /&gt;
| com_categories/categories&lt;br /&gt;
| JHELP_COMPONENTS_WEBLINKS_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Weblinks_Categories_Edit|Components_Weblinks_Categories_Edit]]&lt;br /&gt;
| {{rarr|Components,Weblinks,Categories,New/Edit}}&lt;br /&gt;
| com_categories/category&lt;br /&gt;
| JHELP_COMPONENTS_WEBLINKS_CATEGORY_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Components Options==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.85em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=15%|Help screen&lt;br /&gt;
!width=30%|Path in user interface&lt;br /&gt;
!width=17%|Component/view&lt;br /&gt;
!width=15%|Language key&lt;br /&gt;
!width=18%|Status&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Components_Associations_Options|Components_Associations_Options]]&lt;br /&gt;
| {{rarr|Multilingual Associations,Options}}&lt;br /&gt;
| com_config/associations&lt;br /&gt;
| JHELP_COMPONENTS_ASSOCIATIONS_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Banner_Manager_Options|Components_Banner_Manager_Options]]&lt;br /&gt;
| {{rarr|Banners,Options}}&lt;br /&gt;
| com_config/banners&lt;br /&gt;
| JHELP_COMPONENT_BANNER_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Cache_Manager_Settings|Components_Cache_Manager_Settings]]&lt;br /&gt;
| {{rarr|Cache,Options}}&lt;br /&gt;
| com_config/cache&lt;br /&gt;
| JHELP_COMPONENT_CACHE_MANAGER_SETTINGS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Check-in_Configuration|Components_Check-in_Configuration]]&lt;br /&gt;
| {{rarr|Check-in,Options}}&lt;br /&gt;
| com_config/checkin&lt;br /&gt;
| JHELP_COMPONENT_CHECK-IN_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Contact_Manager_Options|Components_Contact_Manager_Options]]&lt;br /&gt;
| {{rarr|Contacts,Options}}&lt;br /&gt;
| com_config/contact&lt;br /&gt;
| JHELP_COMPONENT_CONTACT_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Article_Manager_Options|Components_Article_Manager_Options]]&lt;br /&gt;
| {{rarr|Articles,Options}}&lt;br /&gt;
| com_config/content&lt;br /&gt;
| JHELP_COMPONENT_ARTICLE_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Smart_Search_Configuration|Components_Smart_Search_Configuration]]&lt;br /&gt;
| {{rarr|Smart Search,Options}}&lt;br /&gt;
| com_config/finder&lt;br /&gt;
| JHELP_COMPONENT_SMART_SEARCH_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Installer_Configuration|Components_Installer_Configuration]]&lt;br /&gt;
| {{rarr|Extensions,Options}}&lt;br /&gt;
| com_config/installer&lt;br /&gt;
| JHELP_COMPONENT_INSTALLER_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Joomla_Update_Configuration|Components_Joomla_Update_Configuration]]&lt;br /&gt;
| {{rarr|Joomla! Update,Options}}&lt;br /&gt;
| com_config/joomlaupdate&lt;br /&gt;
| JHELP_COMPONENT_JOOMLA_UPDATE_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Language_Manager_Options|Components_Language_Manager_Options]]&lt;br /&gt;
| {{rarr|Languages,Options}}&lt;br /&gt;
| com_config/languages&lt;br /&gt;
| JHELP_COMPONENT_LANGUAGE_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Media_Manager_Options|Components_Media_Manager_Options]]&lt;br /&gt;
| {{rarr|Media,Options}}&lt;br /&gt;
| com_config/media&lt;br /&gt;
| JHELP_COMPONENT_MEDIA_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Menus_Configuration|Components_Menus_Configuration]]&lt;br /&gt;
| {{rarr|Menus,Options}}&lt;br /&gt;
| com_config/menus&lt;br /&gt;
| JHELP_COMPONENT_MENUS_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Messages_Configuration|Components_Messages_Configuration]]&lt;br /&gt;
| {{rarr|Messaging,Options}}&lt;br /&gt;
| com_config/messages&lt;br /&gt;
| JHELP_COMPONENT_MESSAGES_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Module_Manager_Options|Components_Module_Manager_Options]]&lt;br /&gt;
| {{rarr|Modules,Options}}&lt;br /&gt;
| com_config/modules&lt;br /&gt;
| JHELP_COMPONENT_MODULE_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_News_Feed_Manager_Options|Components_News_Feed_Manager_Options]]&lt;br /&gt;
| {{rarr|News Feeds,Options}}&lt;br /&gt;
| com_config/newsfeeds&lt;br /&gt;
| JHELP_COMPONENT_NEWS_FEED_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Plug-in_Manager_Options|Components_Plug-in_Manager_Options]]&lt;br /&gt;
| {{rarr|Plugins,Options}}&lt;br /&gt;
| com_config/plugins&lt;br /&gt;
| JHELP_COMPONENT_PLUG-IN_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help32:Components_Post_installation_Messages_Configuration|Components_Post_installation_Messages_Configuration]]&lt;br /&gt;
| {{rarr|Post-installation Messages,Options}}&lt;br /&gt;
| com_config/postinstall&lt;br /&gt;
| JHELP_COMPONENTS_COM_POSTINSTALL_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_Privacy_Options|Components_Privacy_Options]]&lt;br /&gt;
| {{rarr|Users,Privacy,Options}}&lt;br /&gt;
| com_config/privacy&lt;br /&gt;
| JHELP_COMPONENT_PRIVACY_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Redirect_Manager_Options|Components_Redirect_Manager_Options]]&lt;br /&gt;
| {{rarr|Redirects,Options}}&lt;br /&gt;
| com_config/redirect&lt;br /&gt;
| JHELP_COMPONENT_REDIRECT_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Search_Manager_Options|Components_Search_Manager_Options]]&lt;br /&gt;
| {{rarr|Search,Options}}&lt;br /&gt;
| com_config/search&lt;br /&gt;
| JHELP_COMPONENT_SEARCH_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components Tags Manager Options|Components_Tags_Manager_Options]]&lt;br /&gt;
| {{rarr|Tags,Options}}&lt;br /&gt;
| com_config/tags&lt;br /&gt;
| JHELP_COMPONENTS_TAGS_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Template_Manager_Options|Components_Template_Manager_Options]]&lt;br /&gt;
| {{rarr|Templates,Options}}&lt;br /&gt;
| com_config/templates&lt;br /&gt;
| JHELP_COMPONENT_TEMPLATE_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Components_User_Actionlogs_Options|Components_User_Actionlogs_Options]]&lt;br /&gt;
| {{rarr|Users,User Action Logs,Options}}&lt;br /&gt;
| com_config/actionglos&lt;br /&gt;
| JHELP_COMPONENT_USER_ACTIONLOGS_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Users_Configuration|Components_Users_Configuration]]&lt;br /&gt;
| {{rarr|Users,Manage,Options}}&lt;br /&gt;
| com_config/users&lt;br /&gt;
| JHELP_COMPONENT_USERS_CONFIGURATION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Components_Web_Links_Manager_Options|Components_Web_Links_Manager_Options]]&lt;br /&gt;
| {{rarr|Web Links,Options}}&lt;br /&gt;
| com_config/weblinks&lt;br /&gt;
| JHELP_COMPONENT_WEB_LINKS_MANAGER_OPTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Extensions Menu ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=15%|Help screen&lt;br /&gt;
!width=25%|Path in user interface&lt;br /&gt;
!width=17%|Component/view&lt;br /&gt;
!width=26%|Language key&lt;br /&gt;
!width=12%|Status&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Install|Extensions_Extension_Manager_Install]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Install}}&lt;br /&gt;
| com_installer/install&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_INSTALL&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Update|Extensions_Extension_Manager_Update]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Update}}&lt;br /&gt;
| com_installer/update&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Manage|Extensions_Extension_Manager_Manage]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Manage}}&lt;br /&gt;
| com_installer/manage&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_MANAGE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Discover|Extensions_Extension_Manager_Discover]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Discover}}&lt;br /&gt;
| com_installer/discover&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_DISCOVER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Database|Extensions_Extension_Manager_Database]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Database}}&lt;br /&gt;
| com_installer/database&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_DATABASE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_Warnings|Extensions_Extension_Manager_Warnings]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Warnings}}&lt;br /&gt;
| com_installer/warnings&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_WARNINGS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Extension_Manager_languages|Extensions_Extension_Manager_Languages]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Install Languages}}&lt;br /&gt;
| com_installer/languages&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_LANGUAGES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help36:Extensions_Extension_Manager_Update_Sites|Extensions_Extension_Manager_Update_Sites]]&lt;br /&gt;
| {{rarr|Extensions,Manage,Update Sites}}&lt;br /&gt;
| com_installer/updatesites&lt;br /&gt;
| JHELP_EXTENSIONS_EXTENSION_MANAGER_UPDATESITES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager|Extensions_Module_Manager]]&lt;br /&gt;
| {{rarr|Extensions,Modules}}&lt;br /&gt;
| com_modules/modules&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Edit|Extensions_Module_Manager_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Modules,Edit}}&lt;br /&gt;
| com_modules/modules&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Plugin_Manager|Extensions_Plugin_Manager]]&lt;br /&gt;
| {{rarr|Extensions,Plugins}}&lt;br /&gt;
| com_plugins/plugins&lt;br /&gt;
| JHELP_EXTENSIONS_PLUGIN_MANAGER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Plugin_Manager_Edit|Extensions_Plugin_Manager_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Plugins,Edit}}&lt;br /&gt;
| com_plugins/plugin&lt;br /&gt;
| JHELP_EXTENSIONS_PLUGIN_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Template_Manager_Styles|Extensions_Template_Manager_Styles]]&lt;br /&gt;
| {{rarr|Extensions,Templates,Styles}}&lt;br /&gt;
| com_templates/styles&lt;br /&gt;
| JHELP_EXTENSIONS_TEMPLATE_MANAGER_STYLES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Template_Manager_Styles_Edit|Extensions_Template_Manager_Styles_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Templates,Styles,Edit}}&lt;br /&gt;
| com_templates/style&lt;br /&gt;
| JHELP_EXTENSIONS_TEMPLATE_MANAGER_STYLES_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Template_Manager_Templates|Extensions_Template_Manager_Templates]]&lt;br /&gt;
| {{rarr|Extensions,Templates,Templates}}&lt;br /&gt;
| com_templates/templates&lt;br /&gt;
| JHELP_EXTENSIONS_TEMPLATE_MANAGER_TEMPLATES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Template_Manager_Templates_Edit|Extensions_Template_Manager_Templates_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Templates,Templates,Edit}}&lt;br /&gt;
| com_templates/template&lt;br /&gt;
| JHELP_EXTENSIONS_TEMPLATE_MANAGER_TEMPLATES_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Template_Manager_Templates_Edit_Source|Extensions_Template_Manager_Templates_Edit_Source]]&lt;br /&gt;
| {{rarr|Extensions,Templates,Templates,[Template],Edit [Source]}}&lt;br /&gt;
| com_templates/source&lt;br /&gt;
| JHELP_EXTENSIONS_TEMPLATE_MANAGER_TEMPLATES_EDIT_SOURCE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Language_Manager_Installed|Extensions_Language_Manager_Installed]]&lt;br /&gt;
| {{rarr|Extensions,Language(s),Installed}}&lt;br /&gt;
| com_languages/installed&lt;br /&gt;
| JHELP_EXTENSIONS_LANGUAGE_MANAGER_INSTALLED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Language_Manager_Content|Extensions_Language_Manager_Content]]&lt;br /&gt;
| {{rarr|Extensions,Language(s),Content Languages}}&lt;br /&gt;
| com_languages/languages&lt;br /&gt;
| JHELP_EXTENSIONS_LANGUAGE_MANAGER_CONTENT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Language_Manager_Edit|Extensions_Language_Manager_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Language(s),Content Languages,New/Edit}}&lt;br /&gt;
| com_languages/language&lt;br /&gt;
| JHELP_EXTENSIONS_LANGUAGE_MANAGER_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Language_Manager_Overrides|Extensions_Language_Manager_Overrides]]&lt;br /&gt;
| {{rarr|Extensions,Language(s),Overrides}}&lt;br /&gt;
| com_languages/overrides&lt;br /&gt;
| JHELP_EXTENSIONS_LANGUAGE_MANAGER_OVERRIDES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Language_Manager_Overrides_Edit|Extensions_Language_Manager_Overrides_Edit]]&lt;br /&gt;
| {{rarr|Extensions,Language(s),Overrides,New/Edit}}&lt;br /&gt;
| com_languages/override&lt;br /&gt;
| JHELP_EXTENSIONS_LANGUAGE_MANAGER_OVERRIDES_EDIT&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Module Types ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width:100%; vertical-align:top; border:1px solid Sienna; background-color:Cornsilk; font-size:.80em;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color:Wheat; font-weight:bold; text-align: left;&amp;quot;&lt;br /&gt;
!width=12%|Help screen&lt;br /&gt;
!width=25%|Path in user interface&lt;br /&gt;
!width=17%|Component/view&lt;br /&gt;
!width=26%|Language key&lt;br /&gt;
!width=15%|Status&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| [[Help38:Extensions_Modules_Administrator|Extensions_Modules_Administrator]]&lt;br /&gt;
| {{rarr|Extensions,Module Manager,New,Administrator}}&lt;br /&gt;
| -&lt;br /&gt;
| No help screen&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Extensions_Module_Manager_Admin_Latestactions|Extensions_Module_Manager_Admin_Latestactions]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Action Logs - Latest}}&lt;br /&gt;
| mod_latestactions&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_LATESTACTIONS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Articles_Archive|Extensions_Module_Manager_Articles_Archive]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Archived}}&lt;br /&gt;
| mod_articles_archive&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ARTICLES_ARCHIVE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Articles_Categories|Extensions_Module_Manager_Articles_Categories]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Categories}}&lt;br /&gt;
| mod_articles_categories&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ARTICLES_CATEGORIES&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Articles_Category|Extensions_Module_Manager_Articles_Category]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Category}}&lt;br /&gt;
| mod_articles_category&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ARTICLES_CATEGORY&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Articles_Newsflash|Extensions_Module_Manager_Articles_Newsflash]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Newsflash}}&lt;br /&gt;
| mod_articles_news&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ARTICLES_NEWSFLASH&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Articles_Related|Extensions_Module_Manager_Articles_Related]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Related}}&lt;br /&gt;
| mod_related_items&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ARTICLES_RELATED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Banners|Extensions_Module_Manager_Banners]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Banners}}&lt;br /&gt;
| mod_banners&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_BANNERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Breadcrumbs|Extensions_Module_Manager_Breadcrumbs]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Breadcrumbs}}&lt;br /&gt;
| mod_breadcrumbs&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_BREADCRUMBS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Custom_HTML|Extensions_Module_Manager_Custom_HTML]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Custom}}&lt;br /&gt;
| mod_custom&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_CUSTOM_HTML&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Feed_Display|Extensions_Module_Manager_Feed_Display]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Feed Display}}&lt;br /&gt;
| mod_feed&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_FEED_DISPLAY&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Footer|Extensions_Module_Manager_Footer]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Footer}}&lt;br /&gt;
| mod_footer&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_FOOTER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Language_Switcher|Extensions_Module_Manager_Language_Switcher]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Language Switcher}}&lt;br /&gt;
| mod_languages&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_LANGUAGE_SWITCHER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Latest_News|Extensions_Module_Manager_Latest_News]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Latest}}&lt;br /&gt;
| mod_articles_latest&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_LATEST_NEWS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Latest_Users|Extensions_Module_Manager_Latest_Users]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Latest Users}}&lt;br /&gt;
| mod_users_latest&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_LATEST_USERS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Login|Extensions_Module_Manager_Login]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Login}}&lt;br /&gt;
| mod_login&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_LOGIN&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Menu|Extensions_Module_Manager_Menu]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Menu}}&lt;br /&gt;
| mod_menu&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_MENU&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Most_Read|Extensions_Module_Manager_Most_Read]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Most Read}}&lt;br /&gt;
| mod_articles_popular&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_MOST_READ&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Random_Image|Extensions_Module_Manager_Random_Image]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Random Image}}&lt;br /&gt;
| mod_random_image&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_RANDOM_IMAGE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Search|Extensions_Module_Manager_Search]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Search}}&lt;br /&gt;
| mod_search&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_SEARCH&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Smart_Search|Extensions_Module_Manager_Smart_Search]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Smart Search}}&lt;br /&gt;
| mod_finder&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_SMART_SEARCH&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Statistics|Extensions_Module_Manager_Statistics]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Statistics}}&lt;br /&gt;
| mod_stats&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_STATISTICS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Syndication_Feeds|Extensions_Module_Manager_Syndication_Feeds]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Syndication Feeds}}&lt;br /&gt;
| mod_syndicate&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_SYNDICATION_FEEDS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Tags_Popular|Extensions_Module_Manager_Tags_Popular]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Tags - Popular}}&lt;br /&gt;
| mod_tags_popular&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_TAGS_POPULAR&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Tags_Similar|Extensions_Module_Manager_Tags_Similar]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Tags - Similar}}&lt;br /&gt;
| mod_tags_similar&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_TAGS_SIMILAR&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Weblinks|Extensions_Module_Manager_Weblinks]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Weblinks}}&lt;br /&gt;
| mod_weblinks&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_WEBLINKS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Who_Online|Extensions_Module_Manager_Who_Online]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Who&#039;s Online}}&lt;br /&gt;
| mod_whosonline&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_WHO_ONLINE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Wrapper|Extensions_Module_Manager_Wrapper]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Wrapper}}&lt;br /&gt;
| mod_wrapper&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_WRAPPER&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Menu|Extensions_Module_Manager_Admin_Menu]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Administrator Menu}}&lt;br /&gt;
| mod_menu&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_MENU&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Submenu|Extensions_Module_Manager_Admin_Submenu]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Administrator Sub-Menu}}&lt;br /&gt;
| mod_submenu&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_SUBMENU&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Custom|Extensions_Module_Manager_Admin_Custom]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Custom}}&lt;br /&gt;
| mod_custom&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_CUSTOM&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Feed|Extensions_Module_Manager_Admin_Feed]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Feed Display}}&lt;br /&gt;
| mod_feed&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_FEED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Latest|Extensions_Module_Manager_Admin_Latest]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Articles - Latest}}&lt;br /&gt;
| mod_latest&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_LATEST&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Logged|Extensions_Module_Manager_Admin_Logged]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Logged-in users}}&lt;br /&gt;
| mod_logged&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_LOGGED&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Login|Extensions_Module_Manager_Admin_Login]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Login Form}}&lt;br /&gt;
| mod_login&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_LOGIN&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Multilang|Extensions_Module_Manager_Admin_Multilang]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Multilingual Status}}&lt;br /&gt;
| mod_multilangstatus&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_MULTILANG&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Popular|Extensions_Module_Manager_Admin_Popular]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Popular Articles}}&lt;br /&gt;
| mod_popular&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_POPULAR&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help38:Extensions_Module_Manager_Admin_Privacy_Dashboard|Extensions_Module_Manager_Admin_Privacy_Dashboard]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Privacy Dashboard}}&lt;br /&gt;
| mod_privacy_dashboard&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_PRIVACY_DASHBOARD&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Quickicon|Extensions_Module_Manager_Admin_Quickicon]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Quick Icons}}&lt;br /&gt;
| mod_quickicon&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_QUICKICON&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Status|Extensions_Module_Manager_Admin_Status]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,User Status}}&lt;br /&gt;
| mod_status&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_STATUS&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Title|Extensions_Module_Manager_Admin_Title]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Title}}&lt;br /&gt;
| mod_title&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_TITLE&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Toolbar|Extensions_Module_Manager_Admin_Toolbar]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Toolbar}}&lt;br /&gt;
| mod_toolbar&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_TOOLBAR&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|-&lt;br /&gt;
| [[Help31:Extensions_Module_Manager_Admin_Version|Extensions_Module_Manager_Admin_Version]]&lt;br /&gt;
| {{rarr|Extensions,Modules,New,Joomla! Version Information}}&lt;br /&gt;
| mod_version&lt;br /&gt;
| JHELP_EXTENSIONS_MODULE_MANAGER_ADMIN_VERSION&lt;br /&gt;
| style=&amp;quot;background:#c2c5fb;&amp;quot;|Ready 3.9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Joomla! Website Management|Documentation Working Group}}&lt;br /&gt;
[[Category:Needs to be marked for translation]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Help_screens/3/et&amp;diff=660904</id>
		<title>Translations:Help39:Help screens/3/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Help_screens/3/et&amp;diff=660904"/>
		<updated>2020-04-10T13:38:04Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Kui soovid aidata dokumentatsiooni töörühmal adminiliidese abiinfo koostamisel, siis pead vaatama üle Help30:Help_screens_styleguide|Joomla! {{CurrentSTSVer|minor}} abii...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kui soovid aidata dokumentatsiooni töörühmal adminiliidese abiinfo koostamisel, siis pead vaatama üle [[Help30:Help_screens_styleguide|Joomla! {{CurrentSTSVer|minor}} abiinfo lehekülgede stiilijuhend]] et saada aru nende lehekülgede ülesehitust. --- Aitäh! Dokumentatsiooni meeskond.&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660803</id>
		<title>Help310:Content Article Manager/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660803"/>
		<updated>2020-04-10T08:39:15Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Veergude päised==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
The Article Manager is used to find, mark featured, add and edit articles. &lt;br /&gt;
&lt;br /&gt;
==Kuidas sinna pääseda==&lt;br /&gt;
*Click the Articles icon in the [[S:MyLanguage/Help30:Site_Control_Panel|Control Panel]] &lt;br /&gt;
*Select {{rarr|Content,Articles}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
*Click the &#039;&#039;&#039;Articles&#039;&#039;&#039; link while viewing [[S:MyLanguage/Help30:Components Content Categories|Categories]], [[S:MyLanguage/Help30:Content_Featured_Articles|Featured Articles]] or another link in the sidebar.&lt;br /&gt;
&lt;br /&gt;
==Ekraanipilt==&lt;br /&gt;
[[Image:Help30-Content-Article-Manager-screen-en.png|800px|Article Manager]]&lt;br /&gt;
&lt;br /&gt;
==Veergude päised==&lt;br /&gt;
In the table containing Articles, these are the different columns shown below.&lt;br /&gt;
[[File:Help30-Article-Manager-columns-en.png|800px|Article Columns Header]]{{-}}&lt;br /&gt;
{{Chunk30:colheader|Ordering/en}}&lt;br /&gt;
{{Chunk30:colheader|Checkbox/en}}&lt;br /&gt;
{{Chunk30:colheader|Status-Feature/en}}&lt;br /&gt;
{{Chunk30:colheader|Title/en}}&lt;br /&gt;
{{Chunk30:colheader|Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Date/en}}&lt;br /&gt;
{{Chunk30:colheader|Hits/en}}&lt;br /&gt;
{{Chunk30:colheader|Votes/en}}&lt;br /&gt;
{{Chunk30:colheader|Ratings/en}}&lt;br /&gt;
{{Chunk30:colheader|Id/en}}&lt;br /&gt;
&lt;br /&gt;
=== Column Filters ===&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number/en|ID descending}}&lt;br /&gt;
[[Image:Help30-colheader-Column-filter-id-descending-number-en.png]]{{-}}&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number_Description/en}}&lt;br /&gt;
{{Chunk30:colheader|Order/en}}&lt;br /&gt;
{{Chunk30:colheader|Ascending/en}}&lt;br /&gt;
{{Chunk30:colheader|DisplayNum/en}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List Filters==&lt;br /&gt;
The &#039;&#039;&#039;List Filters&#039;&#039;&#039;, above on the left, and other filters as detailed below are in the left, bottom sidebar. These filters are a series of controls that let you limit what items show in the manager screen. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
{{Chunk30:colheader|List Filter/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Status/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Category/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Tags/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Max Levels/en}}&lt;br /&gt;
{{Chunk30:colheader|Manager Pagination/en}}&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-New-Edit-Publish-Unpublish-Featured-Archive-Checkin-Trash-Batch-Options-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_New/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Edit/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Publish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unpublish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Featured/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unfeature/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Archive/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Checkin/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Batch/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Trash/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/en}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Options/en}} &lt;br /&gt;
&lt;br /&gt;
=== Batch Process ===&lt;br /&gt;
{{Chunk30:Help_screen_column_header_Batch_Process_Articles/en}}&lt;br /&gt;
&lt;br /&gt;
==Custom Fields== &lt;br /&gt;
If you want to know how to use Custom Fields, click [[S:MyLanguage/J3.x:Adding_custom_fields|Adding Custom Fields]]&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
* If Joomla is installed without sample data, one article category called &amp;quot;Uncategorised&amp;quot; is created automatically. If you want to use other categories for articles, you should create them before trying to add articles.&lt;br /&gt;
* To see trashed and archived articles, set the Status filter to All.&lt;br /&gt;
* To change the ordering of articles within a category, click on the Ordering column heading to sort by this column. Also, it is easier to see the ordering if you filter on the desired category.&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
* To add or edit Articles: [[S:MyLanguage/Help30:Content_Article_Manager_Edit|Article Manager: New/Edit]]&lt;br /&gt;
* To manage Categories: [[S:MyLanguage/Help30:Components_Content_Categories|Category Manager]]&lt;br /&gt;
* To manage Featured Articles: [[S:MyLanguage/Help30:Content_Featured_Articles|Article Manager: Featured Articles]]&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Article Manager Help Screens|Content Help Screens}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/31/et&amp;diff=660802</id>
		<title>Translations:Help39:Content Article Manager/31/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/31/et&amp;diff=660802"/>
		<updated>2020-04-10T08:39:15Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Veergude päised==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Veergude päised==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660801</id>
		<title>Help310:Content Article Manager/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660801"/>
		<updated>2020-04-10T08:39:12Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Ekraanipilt==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
The Article Manager is used to find, mark featured, add and edit articles. &lt;br /&gt;
&lt;br /&gt;
==Kuidas sinna pääseda==&lt;br /&gt;
*Click the Articles icon in the [[S:MyLanguage/Help30:Site_Control_Panel|Control Panel]] &lt;br /&gt;
*Select {{rarr|Content,Articles}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
*Click the &#039;&#039;&#039;Articles&#039;&#039;&#039; link while viewing [[S:MyLanguage/Help30:Components Content Categories|Categories]], [[S:MyLanguage/Help30:Content_Featured_Articles|Featured Articles]] or another link in the sidebar.&lt;br /&gt;
&lt;br /&gt;
==Ekraanipilt==&lt;br /&gt;
[[Image:Help30-Content-Article-Manager-screen-en.png|800px|Article Manager]]&lt;br /&gt;
&lt;br /&gt;
==Column Headers==&lt;br /&gt;
In the table containing Articles, these are the different columns shown below.&lt;br /&gt;
[[File:Help30-Article-Manager-columns-en.png|800px|Article Columns Header]]{{-}}&lt;br /&gt;
{{Chunk30:colheader|Ordering/en}}&lt;br /&gt;
{{Chunk30:colheader|Checkbox/en}}&lt;br /&gt;
{{Chunk30:colheader|Status-Feature/en}}&lt;br /&gt;
{{Chunk30:colheader|Title/en}}&lt;br /&gt;
{{Chunk30:colheader|Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Date/en}}&lt;br /&gt;
{{Chunk30:colheader|Hits/en}}&lt;br /&gt;
{{Chunk30:colheader|Votes/en}}&lt;br /&gt;
{{Chunk30:colheader|Ratings/en}}&lt;br /&gt;
{{Chunk30:colheader|Id/en}}&lt;br /&gt;
&lt;br /&gt;
=== Column Filters ===&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number/en|ID descending}}&lt;br /&gt;
[[Image:Help30-colheader-Column-filter-id-descending-number-en.png]]{{-}}&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number_Description/en}}&lt;br /&gt;
{{Chunk30:colheader|Order/en}}&lt;br /&gt;
{{Chunk30:colheader|Ascending/en}}&lt;br /&gt;
{{Chunk30:colheader|DisplayNum/en}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List Filters==&lt;br /&gt;
The &#039;&#039;&#039;List Filters&#039;&#039;&#039;, above on the left, and other filters as detailed below are in the left, bottom sidebar. These filters are a series of controls that let you limit what items show in the manager screen. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
{{Chunk30:colheader|List Filter/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Status/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Category/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Tags/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Max Levels/en}}&lt;br /&gt;
{{Chunk30:colheader|Manager Pagination/en}}&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-New-Edit-Publish-Unpublish-Featured-Archive-Checkin-Trash-Batch-Options-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_New/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Edit/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Publish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unpublish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Featured/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unfeature/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Archive/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Checkin/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Batch/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Trash/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/en}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Options/en}} &lt;br /&gt;
&lt;br /&gt;
=== Batch Process ===&lt;br /&gt;
{{Chunk30:Help_screen_column_header_Batch_Process_Articles/en}}&lt;br /&gt;
&lt;br /&gt;
==Custom Fields== &lt;br /&gt;
If you want to know how to use Custom Fields, click [[S:MyLanguage/J3.x:Adding_custom_fields|Adding Custom Fields]]&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
* If Joomla is installed without sample data, one article category called &amp;quot;Uncategorised&amp;quot; is created automatically. If you want to use other categories for articles, you should create them before trying to add articles.&lt;br /&gt;
* To see trashed and archived articles, set the Status filter to All.&lt;br /&gt;
* To change the ordering of articles within a category, click on the Ordering column heading to sort by this column. Also, it is easier to see the ordering if you filter on the desired category.&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
* To add or edit Articles: [[S:MyLanguage/Help30:Content_Article_Manager_Edit|Article Manager: New/Edit]]&lt;br /&gt;
* To manage Categories: [[S:MyLanguage/Help30:Components_Content_Categories|Category Manager]]&lt;br /&gt;
* To manage Featured Articles: [[S:MyLanguage/Help30:Content_Featured_Articles|Article Manager: Featured Articles]]&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Article Manager Help Screens|Content Help Screens}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/29/et&amp;diff=660800</id>
		<title>Translations:Help39:Content Article Manager/29/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/29/et&amp;diff=660800"/>
		<updated>2020-04-10T08:39:12Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Ekraanipilt==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Ekraanipilt==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660799</id>
		<title>Help310:Content Article Manager/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660799"/>
		<updated>2020-04-10T08:39:08Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Kuidas sinna pääseda==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
The Article Manager is used to find, mark featured, add and edit articles. &lt;br /&gt;
&lt;br /&gt;
==Kuidas sinna pääseda==&lt;br /&gt;
*Click the Articles icon in the [[S:MyLanguage/Help30:Site_Control_Panel|Control Panel]] &lt;br /&gt;
*Select {{rarr|Content,Articles}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
*Click the &#039;&#039;&#039;Articles&#039;&#039;&#039; link while viewing [[S:MyLanguage/Help30:Components Content Categories|Categories]], [[S:MyLanguage/Help30:Content_Featured_Articles|Featured Articles]] or another link in the sidebar.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help30-Content-Article-Manager-screen-en.png|800px|Article Manager]]&lt;br /&gt;
&lt;br /&gt;
==Column Headers==&lt;br /&gt;
In the table containing Articles, these are the different columns shown below.&lt;br /&gt;
[[File:Help30-Article-Manager-columns-en.png|800px|Article Columns Header]]{{-}}&lt;br /&gt;
{{Chunk30:colheader|Ordering/en}}&lt;br /&gt;
{{Chunk30:colheader|Checkbox/en}}&lt;br /&gt;
{{Chunk30:colheader|Status-Feature/en}}&lt;br /&gt;
{{Chunk30:colheader|Title/en}}&lt;br /&gt;
{{Chunk30:colheader|Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Date/en}}&lt;br /&gt;
{{Chunk30:colheader|Hits/en}}&lt;br /&gt;
{{Chunk30:colheader|Votes/en}}&lt;br /&gt;
{{Chunk30:colheader|Ratings/en}}&lt;br /&gt;
{{Chunk30:colheader|Id/en}}&lt;br /&gt;
&lt;br /&gt;
=== Column Filters ===&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number/en|ID descending}}&lt;br /&gt;
[[Image:Help30-colheader-Column-filter-id-descending-number-en.png]]{{-}}&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number_Description/en}}&lt;br /&gt;
{{Chunk30:colheader|Order/en}}&lt;br /&gt;
{{Chunk30:colheader|Ascending/en}}&lt;br /&gt;
{{Chunk30:colheader|DisplayNum/en}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List Filters==&lt;br /&gt;
The &#039;&#039;&#039;List Filters&#039;&#039;&#039;, above on the left, and other filters as detailed below are in the left, bottom sidebar. These filters are a series of controls that let you limit what items show in the manager screen. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
{{Chunk30:colheader|List Filter/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Status/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Category/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Tags/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Max Levels/en}}&lt;br /&gt;
{{Chunk30:colheader|Manager Pagination/en}}&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-New-Edit-Publish-Unpublish-Featured-Archive-Checkin-Trash-Batch-Options-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_New/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Edit/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Publish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unpublish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Featured/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unfeature/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Archive/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Checkin/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Batch/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Trash/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/en}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Options/en}} &lt;br /&gt;
&lt;br /&gt;
=== Batch Process ===&lt;br /&gt;
{{Chunk30:Help_screen_column_header_Batch_Process_Articles/en}}&lt;br /&gt;
&lt;br /&gt;
==Custom Fields== &lt;br /&gt;
If you want to know how to use Custom Fields, click [[S:MyLanguage/J3.x:Adding_custom_fields|Adding Custom Fields]]&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
* If Joomla is installed without sample data, one article category called &amp;quot;Uncategorised&amp;quot; is created automatically. If you want to use other categories for articles, you should create them before trying to add articles.&lt;br /&gt;
* To see trashed and archived articles, set the Status filter to All.&lt;br /&gt;
* To change the ordering of articles within a category, click on the Ordering column heading to sort by this column. Also, it is easier to see the ordering if you filter on the desired category.&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
* To add or edit Articles: [[S:MyLanguage/Help30:Content_Article_Manager_Edit|Article Manager: New/Edit]]&lt;br /&gt;
* To manage Categories: [[S:MyLanguage/Help30:Components_Content_Categories|Category Manager]]&lt;br /&gt;
* To manage Featured Articles: [[S:MyLanguage/Help30:Content_Featured_Articles|Article Manager: Featured Articles]]&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Article Manager Help Screens|Content Help Screens}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/23/et&amp;diff=660798</id>
		<title>Translations:Help39:Content Article Manager/23/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/23/et&amp;diff=660798"/>
		<updated>2020-04-10T08:39:08Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Kuidas sinna pääseda==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Kuidas sinna pääseda==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660797</id>
		<title>Help310:Content Article Manager/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Content_Article_Manager/et&amp;diff=660797"/>
		<updated>2020-04-10T08:39:06Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Kirjeldus==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
The Article Manager is used to find, mark featured, add and edit articles. &lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
*Click the Articles icon in the [[S:MyLanguage/Help30:Site_Control_Panel|Control Panel]] &lt;br /&gt;
*Select {{rarr|Content,Articles}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
*Click the &#039;&#039;&#039;Articles&#039;&#039;&#039; link while viewing [[S:MyLanguage/Help30:Components Content Categories|Categories]], [[S:MyLanguage/Help30:Content_Featured_Articles|Featured Articles]] or another link in the sidebar.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help30-Content-Article-Manager-screen-en.png|800px|Article Manager]]&lt;br /&gt;
&lt;br /&gt;
==Column Headers==&lt;br /&gt;
In the table containing Articles, these are the different columns shown below.&lt;br /&gt;
[[File:Help30-Article-Manager-columns-en.png|800px|Article Columns Header]]{{-}}&lt;br /&gt;
{{Chunk30:colheader|Ordering/en}}&lt;br /&gt;
{{Chunk30:colheader|Checkbox/en}}&lt;br /&gt;
{{Chunk30:colheader|Status-Feature/en}}&lt;br /&gt;
{{Chunk30:colheader|Title/en}}&lt;br /&gt;
{{Chunk30:colheader|Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Date/en}}&lt;br /&gt;
{{Chunk30:colheader|Hits/en}}&lt;br /&gt;
{{Chunk30:colheader|Votes/en}}&lt;br /&gt;
{{Chunk30:colheader|Ratings/en}}&lt;br /&gt;
{{Chunk30:colheader|Id/en}}&lt;br /&gt;
&lt;br /&gt;
=== Column Filters ===&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number/en|ID descending}}&lt;br /&gt;
[[Image:Help30-colheader-Column-filter-id-descending-number-en.png]]{{-}}&lt;br /&gt;
{{Chunk30:Column_Filtering_Sort_Number_Description/en}}&lt;br /&gt;
{{Chunk30:colheader|Order/en}}&lt;br /&gt;
{{Chunk30:colheader|Ascending/en}}&lt;br /&gt;
{{Chunk30:colheader|DisplayNum/en}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==List Filters==&lt;br /&gt;
The &#039;&#039;&#039;List Filters&#039;&#039;&#039;, above on the left, and other filters as detailed below are in the left, bottom sidebar. These filters are a series of controls that let you limit what items show in the manager screen. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
{{Chunk30:colheader|List Filter/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Status/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Category/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Access/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Author/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Language/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Tags/en}}&lt;br /&gt;
{{Chunk30:colheader|Select Max Levels/en}}&lt;br /&gt;
{{Chunk30:colheader|Manager Pagination/en}}&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-New-Edit-Publish-Unpublish-Featured-Archive-Checkin-Trash-Batch-Options-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_New/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Edit/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Publish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unpublish/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Featured/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Unfeature/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Archive/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Checkin/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Batch/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Trash/en|article}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/en}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Options/en}} &lt;br /&gt;
&lt;br /&gt;
=== Batch Process ===&lt;br /&gt;
{{Chunk30:Help_screen_column_header_Batch_Process_Articles/en}}&lt;br /&gt;
&lt;br /&gt;
==Custom Fields== &lt;br /&gt;
If you want to know how to use Custom Fields, click [[S:MyLanguage/J3.x:Adding_custom_fields|Adding Custom Fields]]&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
* If Joomla is installed without sample data, one article category called &amp;quot;Uncategorised&amp;quot; is created automatically. If you want to use other categories for articles, you should create them before trying to add articles.&lt;br /&gt;
* To see trashed and archived articles, set the Status filter to All.&lt;br /&gt;
* To change the ordering of articles within a category, click on the Ordering column heading to sort by this column. Also, it is easier to see the ordering if you filter on the desired category.&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
* To add or edit Articles: [[S:MyLanguage/Help30:Content_Article_Manager_Edit|Article Manager: New/Edit]]&lt;br /&gt;
* To manage Categories: [[S:MyLanguage/Help30:Components_Content_Categories|Category Manager]]&lt;br /&gt;
* To manage Featured Articles: [[S:MyLanguage/Help30:Content_Featured_Articles|Article Manager: Featured Articles]]&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Article Manager Help Screens|Content Help Screens}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/27/et&amp;diff=660796</id>
		<title>Translations:Help39:Content Article Manager/27/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Content_Article_Manager/27/et&amp;diff=660796"/>
		<updated>2020-04-10T08:39:05Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Kirjeldus==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Kirjeldus==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660795</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660795"/>
		<updated>2020-04-10T08:38:12Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;* &amp;#039;&amp;#039;&amp;#039;Abiinfo:&amp;#039;&amp;#039;&amp;#039; Avab selle abiinfo lehe.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP info===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Tööriistariba==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
Funktsioonid:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Abiinfo:&#039;&#039;&#039; Avab selle abiinfo lehe.&lt;br /&gt;
&lt;br /&gt;
==Näpunäited==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/70/et&amp;diff=660794</id>
		<title>Translations:Help39:Site System Information/70/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/70/et&amp;diff=660794"/>
		<updated>2020-04-10T08:38:11Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;* &amp;#039;&amp;#039;&amp;#039;Abiinfo:&amp;#039;&amp;#039;&amp;#039; Avab selle abiinfo lehe.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* &#039;&#039;&#039;Abiinfo:&#039;&#039;&#039; Avab selle abiinfo lehe.&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660793</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660793"/>
		<updated>2020-04-10T08:37:47Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Näpunäited==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP info===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Tööriistariba==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
Funktsioonid:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Näpunäited==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/60/et&amp;diff=660792</id>
		<title>Translations:Help39:Site System Information/60/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/60/et&amp;diff=660792"/>
		<updated>2020-04-10T08:37:46Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Näpunäited==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Näpunäited==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660791</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660791"/>
		<updated>2020-04-10T08:37:43Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Funktsioonid:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP info===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Tööriistariba==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
Funktsioonid:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/58/et&amp;diff=660790</id>
		<title>Translations:Help39:Site System Information/58/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/58/et&amp;diff=660790"/>
		<updated>2020-04-10T08:37:43Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;Funktsioonid:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Funktsioonid:&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660789</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660789"/>
		<updated>2020-04-10T08:37:40Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Tööriistariba==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP info===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Tööriistariba==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/55/et&amp;diff=660788</id>
		<title>Translations:Help39:Site System Information/55/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/55/et&amp;diff=660788"/>
		<updated>2020-04-10T08:37:39Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;==Tööriistariba==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Tööriistariba==&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660787</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660787"/>
		<updated>2020-04-10T08:37:36Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===PHP info===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP info===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/48/et&amp;diff=660786</id>
		<title>Translations:Help39:Site System Information/48/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/48/et&amp;diff=660786"/>
		<updated>2020-04-10T08:37:36Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===PHP info===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===PHP info===&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660785</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660785"/>
		<updated>2020-04-10T08:37:34Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===Kaustade õigused===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Kaustade õigused===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP Information===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/46/et&amp;diff=660784</id>
		<title>Translations:Help39:Site System Information/46/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/46/et&amp;diff=660784"/>
		<updated>2020-04-10T08:37:33Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===Kaustade õigused===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Kaustade õigused===&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660783</id>
		<title>Help310:Site System Information/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Site_System_Information/et&amp;diff=660783"/>
		<updated>2020-04-10T08:37:30Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===Seadetefail===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Kirjeldus==&lt;br /&gt;
This tool provides useful information about your host server environment, including operating system, database and PHP settings, and directory information.  You can navigate to five different screen: System Info, PHP Settings, Configuration File, Folder Permissions, and PHP Information. Each screen provides detailed information about that aspect of your Joomla! website. This information is very helpful when you are troubleshooting setup problems.&lt;br /&gt;
*Note that none of these settings can be changed from these screens. This must be done in different locations throughout your Joomla! installation, depending on the specific setting.&lt;br /&gt;
*Many settings on the Configuration File screen can be changed from the [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] screen.  Some settings shown here depend on your host server configuration and cannot be changed from inside Joomla!.&lt;br /&gt;
&lt;br /&gt;
==How to access==&lt;br /&gt;
Select {{rarr|System,System Information}} from the drop-down menu of the &#039;&#039;&#039;&#039;&#039;Joomla! Administrator Control Panel&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Screenshot==&lt;br /&gt;
[[Image:Help-3x-system-system-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details Tabs==&lt;br /&gt;
&lt;br /&gt;
===Süsteemiinfo===&lt;br /&gt;
This screen shows information about the operating environment for your Joomla! site.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;PHP Built on:&#039;&#039;&#039; Provides details of the principle operating system which the webserver that Joomla is running on.&lt;br /&gt;
*&#039;&#039;&#039;Database Type:&#039;&#039;&#039; Provides the type of the database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Version:&#039;&#039;&#039; Provides the current version of the MySQL database being used by the installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Database Collation:&#039;&#039;&#039; How the MySQL database is structured for the information used by Joomla!.&lt;br /&gt;
*&#039;&#039;&#039;Database Connection Collation:&#039;&#039;&#039; The character set and collation of the database.&lt;br /&gt;
*&#039;&#039;&#039;PHP Version:&#039;&#039;&#039; Provides the current version of PHP server side script that is being used for this installation of Joomla.&lt;br /&gt;
*&#039;&#039;&#039;Web Server:&#039;&#039;&#039; Provides the current type and version of webserver which the installation of Joomla! is running on.&lt;br /&gt;
*&#039;&#039;&#039;Web Server to PHP Interface:&#039;&#039;&#039; The script that permits  interaction between the web server (in most cases, Apache) and the PHP scripting language.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Version:&#039;&#039;&#039; Provides the current version of Joomla!.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;Joomla! Platform Version:&#039;&#039;&#039; Provides the current version of the Joomla! Framework.  It is recommended that it is always up-to-date and using the current stable release.&lt;br /&gt;
*&#039;&#039;&#039;User Agent:&#039;&#039;&#039;The summary of the current user&#039;s local machine&#039;s operating system and browser information which is used to create an unique session ID for access and functionality within the Joomla! website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP seaded===&lt;br /&gt;
[[Image:Help-3x-system-php-settings-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the Relevant PHP Settings information. If any of these is highlighted as incorrect should be taken care of to rectify the situation.&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Safe Mode:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Open basedir:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Display Errors:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Short Open Tags:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;File Uploads:&#039;&#039;&#039; Recommended setting: ON&lt;br /&gt;
*&#039;&#039;&#039;Magic Quotes:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Register Globals:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Output Buffering:&#039;&#039;&#039; Recommended setting: OFF&lt;br /&gt;
*&#039;&#039;&#039;Session Save Path:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Session Auto Start:&#039;&#039;&#039; Recommended setting: 0&lt;br /&gt;
*&#039;&#039;&#039;XML Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Zlib Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Native ZIP Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Disabled Functions:&#039;&#039;&#039; Recommended setting: Site dependent&lt;br /&gt;
*&#039;&#039;&#039;Multibyte String (mbstring) Enabled:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Iconv Available:&#039;&#039;&#039; Recommended setting: YES&lt;br /&gt;
*&#039;&#039;&#039;Maximum Input Variables:&#039;&#039;&#039; Recommended setting:  2500&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Seadetefail===&lt;br /&gt;
[[Image:Help-3x-system-configuration-file-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows the contents of the current Joomla! &#039;&#039;configuration.php&#039;&#039; file which is stored under the main &#039;&#039;&#039;&amp;lt;path to joomla&amp;gt;/joomla_root/&#039;&#039;&#039; directory.  This file is created for you automatically when you first install Joomla! and where most changes of the Global Configuration section of Joomla! are recorded.  Please note that none of the settings can be changed from this page. Use [[S:MyLanguage/Help30:Site_Global_Configuration|Global Configuration]] to see more information about these settings and to make changes.&lt;br /&gt;
&lt;br /&gt;
===Folder Permissions===&lt;br /&gt;
[[Image:Help-3x-system-folder-permissions-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen shows a list of the directories that the webserver should have write access to.  Please note that all directories listed on this page should say &amp;lt;b style=&amp;quot;color:green&amp;quot;&amp;gt;Writable&amp;lt;/b&amp;gt;. If not, you may need to change the permissions to be able to install and use Joomla! successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PHP Information===&lt;br /&gt;
[[Image:Help-3x-system-php-information-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
This screen displays the full configuration of the PHP server side scripting language that Joomla! runs on, together with all the associated system information that goes towards the creation of the web server. It is the output of an integrated php.info script built into Joomla!.&lt;br /&gt;
&lt;br /&gt;
PHP is installed, and runs on the server (hence the server side above), and therefore all the settings are made on the server. The visitor to the web site does not need to have anything special running on their local machine in order to view or use any of the extra functionality that PHP gives to the web site.&lt;br /&gt;
&lt;br /&gt;
All the settings that are ever likely to be needed are displayed here. Any changes that are required would be made within the &#039;&#039;php.ini&#039;&#039; and other configuration files on the web server.&lt;br /&gt;
&lt;br /&gt;
How much control a web site owner has over this information depends on whether they own the server or if the server host is flexible in their customer approach.&lt;br /&gt;
&lt;br /&gt;
It is a good practice to know the limitations of a particular server installation. This screens output is used to find detailed information about how PHP is implemented on the server.&lt;br /&gt;
&lt;br /&gt;
For full details on the information contained within the PHP Info screen visit: [http://php.net/phpinfo http://php.net/phpinfo].&lt;br /&gt;
&lt;br /&gt;
==Toolbar==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Download-Text-JSON-Help-toolbar-en.png]]&lt;br /&gt;
&lt;br /&gt;
The functions are:&lt;br /&gt;
* &#039;&#039;&#039;Download as text:&#039;&#039;&#039; Downloads the System Information in a text file.&lt;br /&gt;
* &#039;&#039;&#039;Download as JSON:&#039;&#039;&#039; Downloads the System Information in a JSON file.&lt;br /&gt;
* &#039;&#039;&#039;Help:&#039;&#039;&#039; Opens this help screen.&lt;br /&gt;
&lt;br /&gt;
==Quick Tips==&lt;br /&gt;
*If you are having problems installing extensions, uploading files, or changing configuration options, check the Directory Permissions screen to make sure you have permission to write to files on your web server. The &amp;quot;Status&amp;quot; of the directories should be &amp;quot;Writable&amp;quot;. If not, you may be unable to upload or edit files in these directories.&lt;br /&gt;
*When you are seeking help with setup problems, for example in a Joomla! web forum, it is very helpful to post specific information about your Joomla! installation. This screen is an easy way to find all of this information in one place.&lt;br /&gt;
&lt;br /&gt;
{{cathelp|3.0,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,3.9|Site Maintenance Help Screens|System information}}&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/44/et&amp;diff=660782</id>
		<title>Translations:Help39:Site System Information/44/et</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help39:Site_System_Information/44/et&amp;diff=660782"/>
		<updated>2020-04-10T08:37:30Z</updated>

		<summary type="html">&lt;p&gt;Eraser: Created page with &amp;quot;===Seadetefail===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Seadetefail===&lt;/div&gt;</summary>
		<author><name>Eraser</name></author>
	</entry>
</feed>