├── README.md ├── assets ├── modules │ └── Comments │ │ ├── DocLister │ │ ├── Comments.php │ │ └── Threads.php │ │ ├── ajax.php │ │ ├── config │ │ └── edit.json │ │ ├── controller │ │ ├── Comments.php │ │ └── Threads.php │ │ ├── index.php │ │ ├── js │ │ ├── comments-grid.js │ │ ├── lang │ │ │ ├── en.js │ │ │ └── ru.js │ │ ├── linkbutton.js │ │ ├── module.js │ │ ├── tabpane.js │ │ └── threads-grid.js │ │ ├── lang │ │ ├── en │ │ │ ├── edit.inc.php │ │ │ └── module.inc.php │ │ └── ru │ │ │ ├── edit.inc.php │ │ │ └── module.inc.php │ │ ├── model │ │ └── Module.php │ │ └── tpl │ │ ├── Forms │ │ ├── create.tpl │ │ └── edit.tpl │ │ └── module.tpl └── snippets │ └── Comments │ ├── DocLister │ ├── DocLister.php │ ├── RecentComments.php │ └── TreeView.php │ ├── FormLister │ ├── CommentPreview.php │ ├── Comments.php │ └── Moderation.php │ ├── ajax.php │ ├── autoload.php │ ├── config │ ├── comments.json │ ├── form.json │ ├── moderation.json │ ├── recent.json │ └── subscription.json │ ├── controller │ └── Actions.php │ ├── css │ └── comments.css │ ├── docs │ ├── 01_Вывод_комментариев.md │ ├── 02_Форма_комментирования.md │ ├── 03_Разработчикам.md │ ├── 04_Использование_капчи.md │ ├── 05_Управление_комментариями.md │ ├── 06_Подписка_на_уведомления.md │ └── comments.md │ ├── js │ ├── comments.js │ ├── lang │ │ ├── en.js │ │ └── ru.js │ └── noty │ │ ├── noty.css │ │ ├── noty.css.map │ │ ├── noty.js │ │ ├── noty.js.map │ │ ├── noty.min.js │ │ └── noty.min.js.map │ ├── lang │ ├── en │ │ ├── actions.inc.php │ │ ├── comments.inc.php │ │ ├── moderation.inc.php │ │ └── treeview.inc.php │ └── ru │ │ ├── actions.inc.php │ │ ├── comments.inc.php │ │ ├── moderation.inc.php │ │ └── treeview.inc.php │ ├── model │ ├── Attachments.php │ ├── Comments.php │ ├── ExtendedFields.php │ ├── Files.php │ ├── LastView.php │ ├── Messages.php │ ├── Moderation.php │ ├── Plugin.php │ ├── Rating.php │ ├── RuntimeSharedSettings.php │ ├── Stat.php │ └── Subscriptions.php │ ├── plugin.CommentsHelper.php │ ├── snippet.Comments.php │ ├── snippet.CommentsForm.php │ ├── snippet.CommentsSubscription.php │ ├── snippet.RecentComments.php │ └── tpl │ ├── Forms │ ├── attachment.tpl │ └── form.tpl │ ├── Moderation │ └── form.tpl │ ├── TreeView │ ├── comment.tpl │ └── wrap.tpl │ ├── recent.tpl │ └── subscription.tpl └── install └── assets ├── modules └── comments.tpl ├── plugins └── CommentsHelper.tpl └── snippets ├── CommentForm.tpl ├── Comments.tpl ├── CommentsSubscription.tpl └── RecentComments.tpl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathologic/Comments/HEAD/README.md -------------------------------------------------------------------------------- /assets/modules/Comments/DocLister/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathologic/Comments/HEAD/assets/modules/Comments/DocLister/Comments.php -------------------------------------------------------------------------------- /assets/modules/Comments/DocLister/Threads.php: -------------------------------------------------------------------------------- 1 |