You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AccountHub/apps/sample_app.php

20 lines
388 B
PHP

<?php
dieifnotloggedin();
$APPS["sample_app"]["title"] = "Sample App";
$APPS["sample_app"]["icon"] = "rocket";
$APPS["sample_app"]["content"] = <<<'CONTENTEND'
<div class="list-group">
<div class="list-group-item">
Item 1
</div>
<div class="list-group-item">
Item 2
</div>
<div class="list-group-item">
Item 3
</div>
</div>
CONTENTEND;
?>