f4d3972d07
Co-authored-by: Martin Slachta <martin.slachta@outlook.com> Reviewed-on: #4
16 lines
325 B
PHP
16 lines
325 B
PHP
<?php
|
|
|
|
abstract class RsvAdminPage {
|
|
|
|
final public function render(): void {
|
|
if (!current_user_can(RsvCapabilities::MANAGE)) {
|
|
return;
|
|
}
|
|
echo '<div class="wrap">';
|
|
$this->render_content();
|
|
echo '</div>';
|
|
}
|
|
|
|
abstract protected function render_content(): void;
|
|
}
|