function potx_test_6_permission in Translation template extractor 7
Same name and namespace in other branches
- 8 tests/potx_test_6.module \potx_test_6_permission()
- 6.3 tests/potx_test_6.module \potx_test_6_permission()
- 7.3 tests/potx_test_6.module \potx_test_6_permission()
- 7.2 tests/potx_test_6.module \potx_test_6_permission()
File
- tests/
potx_test_6.module, line 58 - File used purely to test the parser in potx.
Code
function potx_test_6_permission() {
return array(
'test potx permission' => array(
'title' => t('Test potx permission'),
'description' => t('Test potx permission description'),
),
'one more test potx permission' => array(
'title' => t('One more test potx permission'),
'description' => t('One more test potx permission description'),
),
);
}