diff --git a/.vscode/ftp-kr.sync.cache.json b/.vscode/ftp-kr.sync.cache.json index 2d74e9b8..8f0dc256 100644 --- a/.vscode/ftp-kr.sync.cache.json +++ b/.vscode/ftp-kr.sync.cache.json @@ -5952,8 +5952,8 @@ }, "ApTabs.tpl": { "type": "-", - "size": 6867, - "lmtime": 1742913784000, + "size": 6902, + "lmtime": 1750197502676, "modified": false }, "ApTwitter.tpl": { @@ -6018,9 +6018,9 @@ }, "header.tpl": { "type": "-", - "size": 1719, + "size": 1721, "lmtime": 1744233477939, - "modified": false + "modified": true }, "index.php": { "type": "-", @@ -8324,8 +8324,8 @@ }, "head.tpl": { "type": "-", - "size": 4490, - "lmtime": 1750079503486, + "size": 4645, + "lmtime": 1750195437173, "modified": false }, "index.php": { @@ -13301,11 +13301,29 @@ }, "sub": { "product_info": { + "accordions.tpl": { + "type": "-", + "size": 8678, + "lmtime": 0, + "modified": false + }, "default.tpl": { "type": "-", "size": 8994, "lmtime": 1736192537966, "modified": false + }, + "index.php": { + "type": "-", + "size": 1277, + "lmtime": 0, + "modified": false + }, + "tab.tpl": { + "type": "-", + "size": 3501, + "lmtime": 1750197352156, + "modified": false } } } diff --git a/modules/empikmarketplace/src/Repository/~syncthing~AttributeRepository.php.tmp b/modules/empikmarketplace/src/Repository/~syncthing~AttributeRepository.php.tmp deleted file mode 100644 index 4e79b32a..00000000 --- a/modules/empikmarketplace/src/Repository/~syncthing~AttributeRepository.php.tmp +++ /dev/null @@ -1,46 +0,0 @@ -db = Db::getInstance(); - $this->langId = Utils::getLangId(); - } - - public function getAttributes($productId, $productAttributeId) - { - $sql = new DbQuery(); - $sql->select('al.name AS value, agl.public_name AS name'); - $sql->from('attribute_group', 'ag'); - $sql->leftJoin('attribute_group_lang', 'agl', 'agl.id_attribute_group = ag.id_attribute_group AND agl.id_lang = ' . (int)$this->langId); - $sql->leftJoin('product_attribute', 'pa', 'pa.id_product = ' . (int)$productId . ' AND pa.id_product_attribute = ' . (int)$productAttributeId); - $sql->leftJoin('product_attribute_combination', 'pac', 'pac.id_product_attribute = pa.id_product_attribute'); - $sql->leftJoin('attribute', 'a', 'a.id_attribute = pac.id_attribute AND ag.id_attribute_group = a.id_attribute_group'); - $sql->leftJoin('attribute_lang', 'al', 'al.id_attribute = a.id_attribute AND al.id_lang = ' . (int)$this->langId); - $sql->orderBy('ag.id_attribute_group'); - - $result = $this->db->executeS($sql); - - $resultGrouped = []; - foreach ($result as $item) { - if (!isset($resultGrouped[$item['name']]) || $item['value']) { - $resultGrouped[$item['name']] = $item; - } - } - - return (array)$resultGrouped; - } -} diff --git a/modules/empikmarketplace/vendor/symfony/dependency-injection/Tests/Fixtures/Prototype/OtherDir/Component2/Dir1/~syncthing~Service4.php.tmp b/modules/empikmarketplace/vendor/symfony/dependency-injection/Tests/Fixtures/Prototype/OtherDir/Component2/Dir1/~syncthing~Service4.php.tmp deleted file mode 100644 index 8bca132a..00000000 --- a/modules/empikmarketplace/vendor/symfony/dependency-injection/Tests/Fixtures/Prototype/OtherDir/Component2/Dir1/~syncthing~Service4.php.tmp +++ /dev/null @@ -1,7 +0,0 @@ -services() - ->set('bar', 'Class1') - ->set(BarService::class) - ->abstract(true) - ->lazy() - ->set('foo') - ->parent(BarService::class) - ->decorate('bar', 'b', 1) - ->args([ref('b')]) - ->class('Class2') - ->file('file.php') - ->parent('bar') - ->parent(BarService::class) - ; -};