This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* WP Import, Ver 2015.01.04 | |
* (C) 2015 by ZoRg Soft | |
* MODx Notes - WP Import модуь для импорта записей из Wordpress | |
* http://agarkov.org/modx-x/evo-wpimport | |
*/ | |
$theme = $modx->config['manager_theme']; | |
$basePath = $modx->config['base_path']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// $r - объект категории | |
$res=$r->getMany('Goods'); //получаем товары категории | |
foreach($res as $r){ | |
$options=[ | |
'class_key'=>'ShopmodxResourceProduct', | |
'parent'=>$n, | |
'pagetitle'=>$r->get('name'), | |
'published'=>1, | |
'template'=>3, |