wp-kolli-plugin/includes/views/kcw-overview.php

19 lines
529 B
PHP
Raw Permalink Normal View History

2025-01-21 22:46:20 +01:00
<?php
// Prevent direct access to the file
if (!defined('ABSPATH')) {
exit;
}
/**
* Render the content of the custom admin page.
*/
function kcw_render_admin_page() {
?>
<div class="wrap">
<h1><?php _e('Welcome to a KolliCloud Plugin Experiment', 'kcw'); ?></h1>
<p><?php _e('This is a custom admin interface example.', 'kcw'); ?></p>
<a href="<?php _e('https://login.local-it.org/', 'kcw') ?>" target="_blank"><?php _e('We coudl add also links here.', 'kcw'); ?></a>
</div>
<?php
}