- Исправить некорректный вывод в поле
logo_path
для запросаGET v2/merchants/products
. - Загрузить изображения для 4-6 продуктов в начале выдачи для запроса
GET v2/merchants/products
. - Добавить поля подробного описания товара и условий получения в формате html, markdown или текстовом для запроса
GET v2/merchants/products
. В случае использования формата html рекомендуется ограничить код использованием тегов<strong>
,<em>
,<p>
,<ul>
,<ol>
,<li>
,<a>
,<img>
и запретить использование атрибутов тегов, кромеtitle
,href
,src
иalt
для ссылок и изображений. - Добавить в вывод дополнительные изображения товара.
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
//... | |
/** | |
* Generate a URL to a controller action. | |
* | |
* @param string $name | |
* @param array $parameters | |
* @param bool $absolute | |
* @return string | |
*/ | |
public function action($name, $parameters = [], $absolute = true) |
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 | |
use whitemerry\phpkin\Logger\LoggerException; | |
class Logger extends whitemerry\phpkin\Logger\SimpleHttpLogger { | |
/** | |
* @inheritdoc | |
*/ | |
public function trace($spans) | |
{ |
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
#! /bin/bash | |
# Copyright 2017-present: Intoli, LLC | |
# Source: https://intoli.com/blog/installing-google-chrome-on-centos/ | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, |