19 lines
529 B
PHP
19 lines
529 B
PHP
|
<?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
|
||
|
}
|