gitextract_gvlihgyr/ ├── Api/ │ ├── Data/ │ │ └── OrderCommentInterface.php │ ├── GuestOrderCommentManagementInterface.php │ └── OrderCommentManagementInterface.php ├── Block/ │ └── Order/ │ └── Comment.php ├── Controller/ │ └── Cart/ │ └── UpdateComment.php ├── LICENSE ├── Model/ │ ├── Config/ │ │ └── Source/ │ │ └── Collapse.php │ ├── Config.php │ ├── Data/ │ │ └── OrderComment.php │ ├── GuestOrderCommentManagement.php │ ├── OrderCommentConfigProvider.php │ └── OrderCommentManagement.php ├── Observer/ │ └── AddOrderCommentToOrder.php ├── Plugin/ │ ├── Block/ │ │ └── Adminhtml/ │ │ └── SalesOrderViewInfo.php │ └── Model/ │ └── Order/ │ └── LoadOrderComment.php ├── README.md ├── Setup/ │ ├── InstallData.php │ └── Uninstall.php ├── Test/ │ ├── Integration/ │ │ ├── Model/ │ │ │ ├── GuestOrderCommentManagementTest.php │ │ │ └── OrderCommentManagementTest.php │ │ └── Observer/ │ │ └── AddOrderCommentToOrderTest.php │ └── Unit/ │ ├── Model/ │ │ ├── GuestOrderCommentManagementTest.php │ │ └── OrderCommentManagementTest.php │ └── Observer/ │ └── AddOrderCommentToOrderTest.php ├── ViewModel/ │ └── Comment.php ├── composer.json ├── etc/ │ ├── adminhtml/ │ │ ├── di.xml │ │ └── system.xml │ ├── config.xml │ ├── di.xml │ ├── events.xml │ ├── extension_attributes.xml │ ├── frontend/ │ │ ├── di.xml │ │ └── routes.xml │ ├── module.xml │ └── webapi.xml ├── i18n/ │ ├── ar_SA.csv │ ├── bn_BD.csv │ ├── cs_CZ.csv │ ├── de_CH.csv │ ├── de_DE.csv │ ├── el_GR.csv │ ├── es_ES.csv │ ├── fr_FR.csv │ ├── he_IL.csv │ ├── hu_HU.csv │ ├── it_IT.csv │ ├── ja_JP.csv │ ├── nl_NL.csv │ ├── pl_PL.csv │ ├── sl_SI.csv │ ├── sv_SE.csv │ └── th_TH.csv ├── registration.php └── view/ ├── adminhtml/ │ ├── layout/ │ │ └── sales_order_view.xml │ ├── templates/ │ │ └── order/ │ │ └── view/ │ │ └── comments.phtml │ └── ui_component/ │ └── sales_order_grid.xml └── frontend/ ├── layout/ │ ├── checkout_cart_index.xml │ ├── checkout_index_index.xml │ └── sales_order_view.xml ├── templates/ │ ├── cart/ │ │ └── comment.phtml │ └── order/ │ └── view/ │ └── comment.phtml └── web/ ├── css/ │ └── source/ │ └── _module.less ├── js/ │ ├── model/ │ │ └── checkout/ │ │ └── order-comment-validator.js │ └── view/ │ └── checkout/ │ ├── order-comment-block.js │ └── order-comment-validator.js └── template/ └── checkout/ ├── form-content.html └── order-comment-block.html