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 | |
| ini_set('display_errors', 1); | |
| error_reporting(E_ALL); | |
| /** | |
| * Created by Andrey Stepanenko. | |
| * User: webnitros | |
| * Date: 04.10.2022 | |
| * Time: 20:10 | |
| */ | |
| include_once dirname(__FILE__) . '/vendor/autoload.php'; |
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
| @@include('html/header.html', { | |
| "title": "Бренды", | |
| "layout": "home", | |
| "list" : ["css/page/brands.min.css","css/jivosite.min.css"] | |
| }) |
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
| @@if (context.list) { | |
| @@for (var i = 0; i < context.list.length; i++) { | |
| <link rel="stylesheet" href="`+context.list[i]+`"> | |
| } | |
| } |
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
| listeners: { | |
| afterrender: function () { | |
| var grid = this | |
| var store = grid.getStore() | |
| store.on('datachanged', function (res, des) { | |
| console.log(res.reader.jsonData) | |
| }) | |
| } |
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
| function loadDocs () { | |
| $.ajax({ | |
| type: 'GET', | |
| url:'https://ms.fandeco.ru/rest/docnew/' + fdkConfig.product_artikul_1c + '?vendor=' + fdkConfig.product_vendor_name, | |
| dataType: 'json', | |
| async: true, | |
| success: function (response) { |
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 | |
| /** | |
| * Created by Andrey Stepanenko. | |
| * User: webnitros | |
| * Date: 25.04.2022 | |
| * Time: 11:29 | |
| */ | |
| namespace FileBrowserClient\Tests; |
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 | |
| class MyController1cExportOrder extends ApiInterface | |
| { | |
| public function post() | |
| { | |
| $this->get(); | |
| } | |
| public function get() |