This file contains hidden or 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
| 110001 установки для орошения автоматические | |
| 110002 аккумуляторы тепловые | |
| 110003 горелки ацетиленовые | |
| 110004 генераторы ацетиленовые | |
| 110005 лампы ацетиленовые | |
| 110006 колпаки вытяжные | |
| 110007 системы осветительные для летательных аппаратов | |
| 110008 печи канальные | |
| 110009 аппараты для дезодорации воздуха | |
| 110010 устройства для охлаждения воздуха |
This file contains hidden or 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
| 2989 газоанализаторы | |
| 90001 катушки электрические | |
| 90002 ускорители частиц | |
| 90003 изделия светоотражающие для ношения с целью предупреждения несчастных случаев | |
| 90004 средства индивидуальной защиты от несчастных случаев | |
| 90005 одежда для защиты от несчастных случаев, излучения и огня | |
| 90007 аккумуляторы электрические для транспортных средств | |
| 90008 банки аккумуляторов | |
| 90009 корпуса аккумуляторов электрических | |
| 90010 ацидометры для аккумуляторных батарей |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang='ru'> | |
| <head> | |
| <meta charset='utf-8'> | |
| <meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'> | |
| <link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon"> | |
| <title>Добро пожаловать!</title> | |
| <style> | |
| html.no-js picture[data-lazy] { |
This file contains hidden or 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 | |
| $pdo = $modx->getService('pdoTools'); | |
| $fieldName = $modx->getOption('fieldName', $scriptProperties, 'vendor'); | |
| $fieldClass = $modx->getOption('fieldClass', $scriptProperties, ''); | |
| $firstOption = $modx->getOption('firstOption', $scriptProperties, ''); | |
| $parent = $modx->getOption('parent', $scriptProperties, $modx->resource->get('id')); | |
| $depth = $modx->getOption('depth', $scriptProperties, 10); | |
| $limit = $modx->getOption('limit', $scriptProperties, 100); | |
| $tplOuter = $modx->getOption('tplOuter', $scriptProperties, '@INLINE <ul class="brands">[[+rows]]</ul>'); |
This file contains hidden or 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
| {foreach $cats as $cat} | |
| <div class="section-option"> | |
| <h5 class="mb-3">{$cat.name}</h5> | |
| <ul class="list-group list-group-flush mb-3"> | |
| {foreach $cat.items as $option} | |
| <li class="list-group-item d-flex justify-content-between border-0 px-0 py-2"> | |
| <span> | |
| {$option.caption} | |
| </span> | |
| <span> |
This file contains hidden or 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 | |
| // Получаем параметр vendor | |
| $vendor = (int) $modx->getOption('vendor', $scriptProperties, 0); | |
| // Если vendor не передан, возвращаем сообщение об ошибке | |
| if (empty($vendor)) { | |
| return 'Не указан vendor'; | |
| } | |
| // Ищем ID товаров по vendor через xPDO |
This file contains hidden or 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
| Ошибка: | |
| .\venv\Scripts\activate : Невозможно загрузить файл C:\path\venv\Scripts\activate.ps1, так как выполнение сценариев отключено в этой системе. | |
| Для получения дополнительных сведений см. about_Execution_Policies по адресу http://go.microsoft.com/fwlink/?LinkID=135170. | |
| строка:1 знак:1 | |
| .\venv\Scripts\activate | |
| ~~~~~~~~~~~~~~~~~~~~~~~ | |
| CategoryInfo : Ошибка безопасности: (:) [], PSSecurityException | |
| FullyQualifiedErrorId : UnauthorizedAccess | |
| Решение проблемы: |
This file contains hidden or 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 | |
| /**************************************/ | |
| /** HtmlFromNabor snippet for MODX Revo | |
| * | |
| * @version 0.2 | |
| * @author Borisov Evgeniy aka Agel Nash (agel-nash@xaker.ru) | |
| * @date 18.12.2012 | |
| * | |
| * @category snippet | |
| * @internal @modx_category System |
This file contains hidden or 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 | |
| $time = microtime(true); | |
| $json = $modx->getOption('json', $scriptProperties, ''); | |
| $json = !empty($json) ? $modx->fromJSON($json) : array(); | |
| $log = $modx->getOption('showLog', $scriptProperties, ''); | |
| $tpl = $modx->getOption('tpl', $scriptProperties, ''); | |
| $where = $modx->getOption('where', $scriptProperties, ''); | |
| $where = !empty($where) ? $modx->fromJSON($where) : array(); |
This file contains hidden or 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
| SQL Server 2017 | |
| ---------------- | |
| Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83 | |
| Developer - 22222-00000-00000-00000-00000 | |
| Enterprise - TDKQD-PKV44-PJT4N-TCJG2-3YJ6B | |
| Standard - PHDV4-3VJWD-N7JVP-FGPKY-XBV89 | |
| Web - WV79P-7K6YG-T7QFN-M3WHF-37BXC | |
| https://www.teamos-hkrg.com/index.php?threads/microsoft-sql-server-english-2017-rtm-teamos.42103/ |
NewerOlder