function quotes_perm in Quotes 5
Same name and namespace in other branches
- 6 quotes.module \quotes_perm()
Implementation of hook_perm().
File
- ./
quotes.module, line 26
Code
function quotes_perm() {
return array(
'access quotes',
'administer quotes',
'create quotes',
'import quotes',
'edit own quotes',
'promote quotes to block',
'view my quotes',
);
}