function quotes_perm in Quotes 6
Same name and namespace in other branches
- 5 quotes.module \quotes_perm()
Implementation of hook_perm().
File
- ./
quotes.module, line 28 - The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.
Code
function quotes_perm() {
return array(
'access quotes',
'administer quotes',
'create quotes',
'import quotes',
'edit own quotes',
'promote quotes to block',
);
}