function simpletest_example_perm

Implementation of hook_perm().

Related topics

File

simpletest_example/simpletest_example.module, line 42

Code

function simpletest_example_perm() {
    return array(
        'create simpletest_example',
        'edit own simpletest_example',
    );
}