| @@ -19,8 +19,16 @@ | ||
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | public function make() |
| 22 | 22 | { |
| 23 | + | |
| 24 | + if ( !current_user_can('access_depicter') ) { | |
| 25 | + wp_die( __( 'Sorry, you are not allowed to access this page.', 'depicter' ), __( 'Depicter Error', 'depicter' ), array( | |
| 26 | + 'response' => 403, | |
| 27 | + 'back_link' => false, | |
| 28 | + ) ); | |
| 29 | + } | |
| 30 | + | |
| 23 | 31 | if ( empty( $_REQUEST['document'] ) ) { |
| 24 | 32 | return; |
| 25 | 33 | } |
| 26 | 34 | |