function ed_classified_perm in Classified Ads 5
Implementation of hook_perm().
File
- ./
ed_classified.module, line 542 - Simple text-based classified ads module. Michael Curry, Exodus Development, Inc. exodusdev@gmail.com for more information, please visit http://exodusdev.com/drupal/modules/classified.module Copyright (c) 2006, 2007 Exodus Development, Inc. All Rights…
Code
function ed_classified_perm() {
return array(
'create classified ads',
'edit own classified ads',
'reset classified ad expiration',
'administer classified ads',
);
}