almrooth / comment
Comment module for Anax.
Requires
- php: >=5.6
- anax/configure: ^1.0
- anax/database: ^1.1
- anax/di: ^1.0
- anax/htmlform: ^1.0
- anax/page: ^1.0
- anax/request: ^1.0
- anax/response: ^1.0
- anax/router: ^1.0
- anax/session: ^1.0
- anax/textfilter: ^1.0
- anax/url: ^1.0
- anax/view: ^1.0
This package is not auto-updated.
Last update: 2025-03-30 07:51:27 UTC
README
This is a comment module for use with Anax. The module contains provides login/logout and CRUD functionality for users, admins and comments.
Setup
Install with composer
composer require almrooth/comment
Database
The comment module uses a MYSQL-database for storage. Make sure you have one installed.
Make sure you have a configuration file for your database. There is a sample to use in vendor/almrooth/comment/config/database.php
.
To setup all tables for use with the module execute the code in vendor/almrooth/comment/sql/setup.sql
.
Router files
Copy the router files to your config/route
.
rsync -av vendor/almrooth/comment/config/route/* config/route/
Inlcude the routes in your router configuration config/route.php
. There is a sample to use in vendor/almrooth/comment/config/route.php
.
DI services
Add the required services to DI, config/di.php
. There is a sample to use in vendor/almrooth/comment/config/di.php
.
Make sure that all services that are in the sample file are added to your DI.
Views
The comment module ships with its own default views. Copy them to your view directory.
rsync -av vendor/almrooth/comment/view/* view/
License
This software carries a MIT license.
.
..: Copyright (c) 2017 Tobias Almroth (almrooth@gmail.com)