function page_load_progress_permission in Page Load Progress 7
Implements hook_permission().
File
- ./
page_load_progress.module, line 31 - Page Load Progress allows you to set a screen lock showing a spinner when the user clicks on an element that triggers a time consuming task.
Code
function page_load_progress_permission() {
return array(
'administer Page Load Progress settings' => array(
'title' => t('Administer Page Load Progress settings'),
),
);
}