Skip to content

Instantly share code, notes, and snippets.

@shvind
shvind / post_log
Created June 7, 2016 07:14
Добавить в начале индексного файла
file_put_contents("post.log", json_encode($_POST), FILE_APPEND);
@shvind
shvind / gist:10475150
Last active August 29, 2015 13:59
Regenerate urls on modx revolution
<?php
include 'config.core.php';
include MODX_CORE_PATH . 'model/modx/modx.class.php';
$modx = new modX();
$modx->setLogTarget(XPDO_CLI_MODE ? 'ECHO' : 'HTML');
$modx->initialize('mgr');
$modx->setLogLevel(modX::LOG_LEVEL_INFO);
@shvind
shvind / gist:8273223
Created January 5, 2014 20:14
getViewed - Сниппет вывода просмотренных товаров для minishop2
<?php
$id = $modx->resource->id;
$tpls = explode(',', $modx->getOption('ms2_template_product_default'));
if (!isset($limit)) {$limit = 10;}
if (!isset($tpl)) {$tpl = 'tpl.msProducts.row';}
// Вносим ID просмотренных товаров
if (in_array($modx->resource->template, $tpls)) {
if (!isset($_SESSION['viewed'])) {