First draft
This commit is contained in:
commit
f74ddfebf3
4 changed files with 84 additions and 0 deletions
18
includes/views/kcw-overview.php
Normal file
18
includes/views/kcw-overview.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue