32 lines
834 B
PHP
32 lines
834 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
use \Core\View;
|
|
|
|
class Posts
|
|
{
|
|
public function index()
|
|
{
|
|
echo "This is index of posts."; // Nanti di replace sama twig view ke App\Views\Data\pengumuman.html
|
|
View::render('Data/pengumuman.html');
|
|
return true;
|
|
}
|
|
|
|
public function entry()
|
|
{
|
|
echo "You can entry new data here."; // Nanti di replace sama twig view ke App\Views\Data\entry_pengumuman.html
|
|
View::render('Data/entry_pengumuman.html');
|
|
return true;
|
|
}
|
|
|
|
public function edit($id = null)
|
|
{
|
|
if ($id) {
|
|
echo "You can edit exists data with id $id here"; // Nanti di replace sama twig view ke App\Views\Data\edit_pengumuman.html
|
|
View::render('Data/edit_pengumuman.html');
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|