| 1 | <?php namespace EmailLog\Core\Request; |
||
| 12 | class NonceChecker implements Loadie { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Setup hooks. |
||
| 16 | * |
||
| 17 | * @inheritdoc |
||
| 18 | */ |
||
| 19 | public function load() { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Check nonce for all Email Log Requests. |
||
| 25 | * All Email Log Requests will have the `el_` prefix and |
||
| 26 | * nonce would be available at `el_{action_name}_nonce`. |
||
| 27 | */ |
||
| 28 | public function check_nonce() { |
||
| 64 | } |
||
| 65 |