1. Go to this page and download the library: Download dimns/mflphp-project 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/ */
dimns / mflphp-project example snippets
$middleware = \MFLPHP\Helpers\Middleware::start($request, $response, $service, $di, [
'auth', // Пользователь залогинен в системе
'token', // Проверка валидности защитного csrf-токена
'access-admin', // Проверка прав доступа
]);
if ($middleware) {
// Этот код выполняется если все проверки выполнены
}
dump(\ORM::get_query_log());
$send_result = $di->mail->send('АДРЕС_ДЛЯ_ОТПРАВКИ', 'ТЕМА_ПИСЬМА', 'АДРЕС_ШАБЛОНА', [
// Данные для подстановки в шаблон
]);
if ($send_result) {
// Письмо успешно отправлено
} else {
// Произошла ошибка
// Подробнее можно посмотреть в логе по адресу /errors.log
}