PHP code example of mmaurice / modx-injector
1. Go to this page and download the library: Download mmaurice/modx-injector 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/ */
mmaurice / modx-injector example snippets
use \mmaurice\modx\Core;
use \mmaurice\modx\Search;
// Если нам необходимо ядро Modx
$injector = new Core;
$modx = $injector->modx();
// Если необходим только ядро для работы с DB
$modxDb = $injector->db();
// Если необходим слой для работы с DB
$search = new Search;
$result = $search->query(... some sql ...);
// В слое есть следующие удобные для работы методы:
$search->getList([... params array ...]);
$search->getItem([... params array ...]);
$search->getRawSql([... params array ...]);