| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | trait TargetsEditFormTopHook |
||
| 9 | { |
||
| 10 | protected function targetEditFormTopHook() |
||
| 11 | { |
||
| 12 | add_action( |
||
| 13 | "edit_form_top", |
||
| 14 | Closure::fromCallable([$this, 'doEditFormTopAction']), |
||
| 15 | $this->getEditFormTopPriority(), |
||
| 16 | PHP_INT_MAX |
||
| 17 | ); |
||
| 18 | |||
| 19 | return $this; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function getEditFormTopPriority(): int |
||
| 25 | } |
||
| 26 | |||
| 27 | abstract protected function doEditFormTopAction(WP_Post $post): void; |
||
| 28 | } |
||
| 29 |