view.php
17 lines
| 1 | <?php |
| 2 | /* |
| 3 | * Copyright (c) 2024 LatePoint LLC. All rights reserved. |
| 4 | */ |
| 5 | |
| 6 | /* @var $topic string */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; // Exit if accessed directly |
| 10 | } |
| 11 | ?> |
| 12 | <div class="latepoint-lightbox-heading"> |
| 13 | <h2><?php esc_html_e(OsSupportTopicsHelper::get_title_for_topic($topic)); ?></h2> |
| 14 | </div> |
| 15 | <div class="latepoint-lightbox-content"> |
| 16 | <?php include('partials/'.sanitize_file_name($topic.'.php')); ?> |
| 17 | </div> |