Database Question

Permalink
Does anyone know what this means:

r:rv:wa:db:av:dc:adm

It's from the PagePermissions/cgPermissions field in the database. I'm trying to understand why a person can have ownership of a page but be unable to edit it. I'm having to set ownership and permissions separately in the edit page mode. Seems logical if that if you own the page you should be able to edit it.

1 Attachment

tallacman
 
okhayat replied on at Permalink Best Answer Reply
okhayat
Have a look at /concrete/models/permissions.php starting from line 305
Basically:
r -> Can read page
rv -> Can read versions
wa -> Can write (change)
db -> Can delete block
dc -> Can delete collection (page)
av -> Can approve collection
adm -> Can admin collection (permissions.. etc)
tallacman replied on at Permalink Reply
tallacman
Thank you so much. It would've taken me all week to find that.