{"id":19307933,"url":"https://github.com/xpressengine/plugin-comment","last_synced_at":"2026-05-16T09:30:57.426Z","repository":{"id":45566945,"uuid":"53024618","full_name":"xpressengine/plugin-comment","owner":"xpressengine","description":"Comment plugin for XpressEngine.","archived":false,"fork":false,"pushed_at":"2023-04-07T05:19:49.000Z","size":575,"stargazers_count":1,"open_issues_count":11,"forks_count":1,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-02-24T02:52:31.304Z","etag":null,"topics":["xpressengine-plugin"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xpressengine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-03T05:50:37.000Z","updated_at":"2021-12-28T10:07:31.000Z","dependencies_parsed_at":"2025-01-06T01:22:32.669Z","dependency_job_id":"16fa5dea-906a-4cd3-9a5a-7a05c9373bf1","html_url":"https://github.com/xpressengine/plugin-comment","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/xpressengine/plugin-comment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xpressengine%2Fplugin-comment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xpressengine%2Fplugin-comment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xpressengine%2Fplugin-comment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xpressengine%2Fplugin-comment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xpressengine","download_url":"https://codeload.github.com/xpressengine/plugin-comment/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xpressengine%2Fplugin-comment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33096845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["xpressengine-plugin"],"created_at":"2024-11-10T00:13:05.264Z","updated_at":"2026-05-16T09:30:57.411Z","avatar_url":"https://github.com/xpressengine.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e \n  \u003cimg src=\"https://raw.githubusercontent.com/xpressengine/plugin-comment/master/icon.png\"\u003e\n \u003c/p\u003e\n\n# XE3 Board Plugin\n이 플러그인은 Xpressengine3(이하 XE3)의 플러그인입니다.\n\n이 플러그인을 사용하여, 댓글 기능을 사용할 수 있습니다.\n\n\n\u003cp align=\"center\"\u003e \n  \u003cimg src=\"https://raw.githubusercontent.com/xpressengine/plugin-comment/develop/coment_preview.PNG\"\u003e\n \u003c/p\u003e\n\n## What can I do?\n\n본 플러그인을 사용하여 커뮤니티를 구축/운영 함에 있어서 기본적인 댓글 기능을 수행할 수 있습니다.\n\n그 이외에도 아래의 기능을 지원합니다.\n\n* 게시판이 아닌 다른 모듈에 사용\n\n\n## Installation specification\n* Minimum installation environment\n   XE3, PHP 7.0 or later\n* Recommended installation environment\n   XE3, PHP 7.1 or later\n\n\n\n# Installation\n### Console\n```\n$ php artisan plugin:install comment\n```\n\n### Web install\n- 관리자 \u003e 플러그인 \u0026 업데이트 \u003e 플러그인 목록 내에 새 플러그인 설치 버튼 클릭\n- `comment` 검색 후 설치하기\n\n### FTP upload\n- 다음의 페이지에서 다운로드\n    * https://store.xpressengine.io/plugins/comment\n    * https://github.com/xpressengine/plugin-comment/releases\n- 프로젝트의 `plugins` 디렉토리 아래 `comment` 디렉토리명으로 압축해제\n- `comment` 디렉토리 이동 후 `composer dump` 명령 실행\n\n# Usage\n## Interface\n특정페이지에 댓글이 표시되기위해서는 해당페이지를 정보를 가지는 객체가 `Xpressengine\\Plugins\\Comment\\CommentUsable` 인터페이스에 의해 구현되어야 합니다.\n```php\nuse Xpressengine\\Plugins\\Comment\\CommentUsable;\n\nclass SomeObject implements CommentUsable\n{\n    ...\n}\n```\n`Xpressengine\\Plugins\\Comment\\CommentUsable` 는 4개의 메서드로 구성되어 있습니다.\n- getUid : 객체의 고유 아이디를 반환해야 합니다.\n- getInstanceId : 객체가 속한 인스턴스의 고유 아이디를 반환해야 합니다.\n- getAuthor : 객체의 작성자를 반환해야 합니다.\n- getLink : 객체가 표시되는 고유 url 주소를 반환해야 합니다.\n\n## View\nblade view 에서 댓글을 표시하기 위해 다음 코드를 댓글이 나타나길 원하는 곳에 삽입합니다\n```\n{!! uio('comment', ['target' =\u003e $item]) !!}\n```\n코드에서 `target` 으로 전달된 `$item` 은 위에서 `Xpressengine\\Plugins\\Comment\\CommentUsable` 의해 구현된 객체입니다.\n코드는 이것으로 충분합니다.\n\n# Option\n\u003e 관리자 \u003e 플러그인 \u0026 업데이트 \u003e 플러그인 목록 \u003e 댓글 \u003e 설정\n\n위 경로에서 사이트에 존재하는 모든 Comment 인스턴스의 기본 설정을 설정할 수 있습니다. \n\n\n어떤 페이지는 페이지가 속하는 인스턴스마다 설정이 있을것 입니다. 그리고 이 인스턴마다 사용되는 댓글도 각각 설정을 지정해야 할 것입니다.\n설정페이지는 플러그인에 의해 제공됩니다. 사용자는 인스턴스의 고유 아이디를 이용해 댓글의 설정 페이지를 연결하기만 하면 됩니다.\n```\n\u003ca href=\"{{ route('comment::setting', ['targetInstanceId' =\u003e '인스턴스 아이디']) }}\"\u003e댓글 설정으로 이동\u003c/a\u003e\n```\n`인스턴스 아이디` 는 `Xpressengine\\Plugins\\Comment\\CommentUsable::getInstanceId` 에서 반화되는 값과 같은 값입니다.\n\n## License\n이 플러그인은 LGPL라이선스 하에 있습니다. \u003chttps://opensource.org/licenses/LGPL-2.1\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxpressengine%2Fplugin-comment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxpressengine%2Fplugin-comment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxpressengine%2Fplugin-comment/lists"}