2017 © Pedro Peláez
 

project mflphp-project

The skeleton of the application on MFLPHP.

image

dimns/mflphp-project

The skeleton of the application on MFLPHP.

  • Wednesday, February 7, 2018
  • by DimNS
  • Repository
  • 0 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 23 Versions
  • 0 % Grown

The README.md

Project is deprecated.

Шаблон проекта использующий микро-фреймворк MFLPHP

1. Установка и использование

1.1. Создание нового проекта

  • Устанавливаем копию скелета: composer create-project dimns/mflphp-project /my/project/path.
  • Переходим в каталог созданного проекта.
  • Запускаем npm install.
  • Запускаем gulp build для сборки файлов. Или можно пользоваться скриптом: gulp-build.cmd.
  • Запускаем gulp для автоматической пересборки при изменениях во время разработки. Или можно пользоваться скриптом: gulp-watch.cmd.

1.2. Сборка проекта

  • Переходим в каталог созданного проекта.
  • Запускаем gulp build. Или можно пользоваться скриптом: gulp-build.cmd.

2. PHP

2.1. Middleware

Для проверки "пользователь в системе", "валидный токен" или "есть необходимые права доступа" достаточно выполнить хелпера-посредника:, (*1)

$middleware = \MFLPHP\Helpers\Middleware::start($request, $response, $service, $di, [
    'auth',         // Пользователь залогинен в системе
    'token',        // Проверка валидности защитного csrf-токена
    'access-admin', // Проверка прав доступа
]);
if ($middleware) {
    // Этот код выполняется если все проверки выполнены
}

2.2. Отладка SQL-запросов

Если в настройках включен режим DEBUG, тогда включается логирование всех SQL-запросов, которые можно получить как массив:, (*2)

dump(\ORM::get_query_log());

2.3. Примеры хелперов

Отправка письма

$send_result = $di->mail->send('АДРЕС_ДЛЯ_ОТПРАВКИ', 'ТЕМА_ПИСЬМА', 'АДРЕС_ШАБЛОНА', [
    // Данные для подстановки в шаблон
]);
if ($send_result) {
    // Письмо успешно отправлено
} else {
    // Произошла ошибка
    // Подробнее можно посмотреть в логе по адресу /errors.log
}
  • АДРЕС_ШАБЛОНА - строка константы шаблона, размещается в файле /app/Configs/EmailTemplates.php в виде соответствующих констант.
  • Данные для подстановки в шаблон - массив ключ-значение, где ключи это специальные строки (например: [[SITE_NAME]]), а значения - обычные строки для подстановки вместо ключа в шаблоне.

3. JS

3.1. ajax (POST)

ajax.waiter('show');

$.ajax({
    url: '/controller/method',
    data: {
        // Параметры
    },
    success: function(result, textStatus, jqXHR) {
        // Обработка результата
    },
    complete: function() {
        ajax.waiter('hide');
    },
    error: function(jqXHR, textStatus, errorThrown) {
        ajax.error(textStatus, errorThrown);
    }
});

3.2. jsonp (GET)

ajax.jsonp('/controller/method', {
    // Параметры
}, function(result) {
    ajax.waiter('hide');

    // Обработка результата
});

Возвращение результата на стороне php:, (*3)

$result = [/* Ваш массив с данными результата */];
$response->json($result, $request->param('callback', 'callback'));

The Versions

07/02 2018

dev-master

9999999-dev

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

28/04 2017

dev-develop

dev-develop

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

28/04 2017

v0.9.0

0.9.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

24/04 2017

v0.8.1

0.8.1.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

22/04 2017

v0.8.0

0.8.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

27/12 2016

v0.7.8

0.7.8.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

28/11 2016

v0.7.7

0.7.7.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

16/11 2016

v0.7.6

0.7.6.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

11/11 2016

v0.7.5

0.7.5.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

22/09 2016

v0.7.4

0.7.4.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

13/09 2016

v0.7.1

0.7.1.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

09/09 2016

v0.7.0

0.7.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

30/08 2016

v0.6.0

0.6.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

05/08 2016

v0.5.0

0.5.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

03/08 2016

v0.4.2

0.4.2.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

03/08 2016

v0.4.1

0.4.1.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

03/08 2016

v0.4.0

0.4.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

03/08 2016

v0.3.1

0.3.1.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

03/08 2016

v0.3.0

0.3.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

01/08 2016

v0.2.2

0.2.2.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

01/08 2016

v0.2.1

0.2.1.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

01/08 2016

v0.2.0

0.2.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires

 

27/07 2016

v0.1.0

0.1.0.0

The skeleton of the application on MFLPHP.

  Sources   Download

MIT

The Requires