Archived

Difference between revisions of "How permissions work in Joomla! 2.5"

From Joomla! Documentation

(New page: {{:GSheader16}} {{JVer|1.6}} The aim of this document is to explain the Access Control List for Joomla! 1.6 as background for many references to 'permissions' and 'access' mentioned in th...)
 
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{:GSheader16}}
+
{{version/tutor|2.5}}{{:Getting_Started_Page_Index/2.5}}{{:GSheader16}}
 
+
The aim of this document is to explain the Access Control List for Joomla! 1.6 as background for many references to 'permissions' and 'access' mentioned in the Getting Started documents.
{{JVer|1.6}} The aim of this document is to explain the Access Control List for Joomla! 1.6 as background for many references to 'permissions' and 'access' mentioned in the Getting Started documents.
+
<div style="border:thin solid red; margin-left:50px; margin-right:50px; background: #f5f5f5; width: 90%;">
<div style="border:thin solid green; margin-left:50px; margin-right:50px; background: #f5f5f5; width: 90%;">
 
 
The text here refers to version 1.5 and will need a substantial re-write as there have been important changes. There are details in the reference at the end of this document. But the principles remain the same - thus I have not deleted the 1.5 words yet.
 
The text here refers to version 1.5 and will need a substantial re-write as there have been important changes. There are details in the reference at the end of this document. But the principles remain the same - thus I have not deleted the 1.5 words yet.
 
</div>
 
</div>
===Background to creating a new Joomla! 1.6 web site===
+
===Background to creating a new Joomla! 2.5 web site===
 
{{:DesignAim}}
 
{{:DesignAim}}
  
Line 79: Line 78:
 
* http://docs.joomla.org/Setting_user_registration_policy
 
* http://docs.joomla.org/Setting_user_registration_policy
  
ALC management in Joomla! 1.6 is well covered in http://docs.joomla.org/ACL_Tutorial_for_Joomla_1.6
+
ALC management in Joomla! 2.5 is well covered in [[J2.5:Access_Control_List/Tutorial|ACL in Joomla 2.5]]
 
 
==Index to other documents in this series==
 
{{:GSFooter16}}
 
  
 
--[[User:LornaS|Lorna Scammell]] March 2011
 
--[[User:LornaS|Lorna Scammell]] March 2011

Latest revision as of 16:56, 26 April 2022

This page has been archived. This page contains information for an unsupported Joomla! version or is no longer relevant. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Info non-talk.png
General Information

Most content is of relevant to both versions. Originally written for Joomla! version Joomla 1.5. In process of being updated:

  • screen shots showing version Joomla 2.5
  • with commentary appropriate for versions  Joomla 2.5

The aim of this document is to explain the Access Control List for Joomla! 1.6 as background for many references to 'permissions' and 'access' mentioned in the Getting Started documents.

The text here refers to version 1.5 and will need a substantial re-write as there have been important changes. There are details in the reference at the end of this document. But the principles remain the same - thus I have not deleted the 1.5 words yet.

Background to creating a new Joomla! 2.5 web site[edit]

Designing a Joomla! Website

There are four aspects to designing a new Joomla! web site. These also apply to planning to make alterations(including upgrading versions J1.5 to J2.5+) to an existing site or planning for transferring a site that already exists in another form into the Joomla! CMS.

  • The content hierarchy:
    • Joomla 1.5 The content hierarchy is defined as Sections with Categories. (Another way of visualising this, Sections are the labeled drawers of a filing cabinet and Categories are the file folders in each drawer.)
    • Joomla 2.5 The Sections have been removed and now the content hierarchy is Categories and Subcategories.
  • Who you expect to use the site and what you want them to be able to do
  • The layout of the menus and the position of some functionality on the page
  • The graphical design of the whole site
These should all be based on the purpose and expected content of the site, so you do need a clear idea of what you are trying to communicate and plan accordingly. Easier said than done!

Who is it written for?[edit]

  • Everyone

You will have seen references to permissions in the documents about Articles because they can be restricted to one of the three groups (Public, Registered and Special). In creating Section, Categories and Menus, the same Access levels are available.

Permissions to do things: Access Control[edit]

There are different levels of permissions for doing things in a Joomla! Web site. In particular there is a distinction between:-

  • Which users can gain access to what parts of the website? For example, will a given Menu Item be visible for a given user?
  • What actions a user can perform? For example, can a user edit or publish an article?

Users are grouped together in groups. In Joomla! 1.5 these groups give robust but fairly simple distinctions. It has a coarse granularity in that you cannot set permissions to small groups or individuals.

Front-end is the web site you can see. If you are an 'Author' - you can only edit pages that you have created. So if you look at the pages done by other people - you will be able to read them but there will not be an edit icon associated with the Article. However, the list below shows that Publishers and Editors can edit any article - which sounds easy but needs some care where there are a lot of people submitting content.

Back-end is the Administrators section of the Web site.

The following lists groups and associated permissions:-[edit]

Front-end Groups

  • These groups can only use the front-end of the website.
Guest
Can view the parts of the Site that are not restricted to one of the other two groups.
Registered
Guest Group privileges
Can view Articles which have been given Registered Permissions
Author
Registered Group privileges
Create new articles but cannot publish articles
Edit articles they own
View special content
Editor
Author Group privileges
Can edit all articles, even those that are not published
Publisher
Editor Group privileges
Can publish articles

Back-end Groups

  • These groups allow you to log into the Administrator Back-end
Manager
Publisher Group privileges
Can login to the Administrator Back-end
Administrator
Manager Group privileges
Can create new users
Can install extensions
Super-Administrator
Administrator privileges
Can change site template
Can change global configuration

The permissions are allocated to usernames by the Administrator and managed through User Management interface in the Back-end of Joomla.

User permissions for a new site[edit]

You may not yet know enough about your new site to know how best to plan the management of users. The important ideas to carry forward into the next few documents on design of the content and menus is that:-

  • you may want an idea of how much of the site should be open to everyone to read
    • you may want to register all users, but limit them to be able to read the content without changing it.
It is good to have some idea of whether some menus or Articles will need to be available to a restricted number of users.
  • you may want some users able to add content
  • you may want some users able to manage the content
  • you may want one or more users to manage the site

Further information[edit]

ALC management in Joomla! 2.5 is well covered in ACL in Joomla 2.5

--Lorna Scammell March 2011