EIANotesApp/Views/Welcome/showWelcome.phtml

40 lines
796 B
PHTML

<?php
use ppa\Model\NotesModel;
include dirname(__DIR__).'/header.phtml';
$parsedown = new Parsedown();
$parsedown->setSafeMode(true);
$this->notesModel = new \ppa\Model\NotesModel();
$this->userModel = new \ppa\Model\UserModel();
?>
<h2>Welcome in out Notes App!</h2>
<p>To start, simply select an option in the navigation bar.</p>
<h2>Notes App statistics</h2>
<b style="font-size: 20px; margin: 20px">
<?php
echo $this->notesModel->getNoteCount();
?>
Notes
</b><br>
<b style="font-size: 20px; margin: 20px">
<?php
echo $this->userModel->getUserCount();
?>
Users
</b><br>
<b style="font-size: 20px; margin: 20px">
<?php
echo $this->notesModel->getFileCount();
?>
Files
</b><br>
<?php include dirname(__DIR__).'/footer.phtml'; ?>