mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-03-09 15:40:18 +00:00
77 lines
2.3 KiB
PHP
77 lines
2.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* The note controller: Just an example of simple create, read, update and delete (CRUD) actions.
|
|
*/
|
|
class NoteController extends Controller
|
|
{
|
|
/**
|
|
* Construct this object by extending the basic Controller class
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// VERY IMPORTANT: All controllers/areas that should only be usable by logged-in users
|
|
// need this line! Otherwise not-logged in users could do actions. If all of your pages should only
|
|
// be usable by logged-in users: Put this line into libs/Controller->__construct
|
|
Auth::checkAuthentication();
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /note/index in your app.
|
|
* Gets all notes (of the user).
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->View->render('note/index', array(
|
|
'notes' => NoteModel::getAllNotes()
|
|
));
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /dashboard/create in your app.
|
|
* Creates a new note. This is usually the target of form submit actions.
|
|
* POST request.
|
|
*/
|
|
public function create()
|
|
{
|
|
NoteModel::createNote(Request::post('note_text'));
|
|
Redirect::to('note');
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /note/edit(/XX) in your app.
|
|
* Shows the current content of the note and an editing form.
|
|
* @param $note_id int id of the note
|
|
*/
|
|
public function edit($note_id)
|
|
{
|
|
$this->View->render('note/edit', array(
|
|
'note' => NoteModel::getNote($note_id)
|
|
));
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /note/editSave in your app.
|
|
* Edits a note (performs the editing after form submit).
|
|
* POST request.
|
|
*/
|
|
public function editSave()
|
|
{
|
|
NoteModel::updateNote(Request::post('note_id'), Request::post('note_text'));
|
|
Redirect::to('note');
|
|
}
|
|
|
|
/**
|
|
* This method controls what happens when you move to /note/delete(/XX) in your app.
|
|
* Deletes a note. In a real application a deletion via GET/URL is not recommended, but for demo purposes it's
|
|
* totally okay.
|
|
* @param int $note_id id of the note
|
|
*/
|
|
public function delete($note_id)
|
|
{
|
|
NoteModel::deleteNote($note_id);
|
|
Redirect::to('note');
|
|
}
|
|
}
|