blob: b9c4d891a9310f387b3fe0f954253acab19aa2ff (
plain) (
tree)
|
|
<?php
// SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
// SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
if ( !class_exists( 'Instructions_Page' ) ) {
class Instructions_Page {
static function render_instr_html(): void {
?>
<div class="wrap">
Pick a help file to go through
</div>
<?php
}
}
}
?>
|