PHP code example of gavd / li3_flash_message
1. Go to this page and download the library: Download gavd/li3_flash_message library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gavd / li3_flash_message example snippets
// config/bootstrap/libraries.php:
Libraries::add('li3_flash_message');
namespace app\controllers;
use lithium\security\Auth;
use li3_flash_message\extensions\storage\FlashMessage;
class AdministratorsController extends \lithium\action\Controller {
public function login() {
if (Auth::check('admin', $this->request)) {
FlashMessage::write('Logged you in!');
return $this->redirect(array('Employees::index'));
}
$loginFailed = false;
if ($this->request->data){
$loginFailed = true;
}
return compact('loginFailed');
}
public function logout() {
FlashMessage::write('Logged you out!');
Auth::clear('admin');
return $this->redirect('/');
}
}