WEBD-325-45/week-05/project/libraries/src/Controller/CheckTokenTrait.php

37 lines
730 B
PHP

<?php
/**
* @package Octoleo CMS
*
* @created 9th April 2022
* @author Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
* @git WEBD-325-45 <https://git.vdm.dev/Llewellyn/WEBD-325-45>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Octoleo\CMS\Controller;
/**
* Class for checking the form had a token
*
* @since 1.0.0
*/
trait CheckTokenTrait
{
/**
* Check the token of the form
*
* @return bool
*/
public function checkToken(): bool
{
$token = $this->getApplication()->getSession()->getToken();
$form_token = $this->getInput()->getString($token, 0);
if ($form_token == 0)
{
exit('Invalid form token');
}
return true;
}
}