├── .gitignore ├── Autoload.php ├── README.md ├── composer.json ├── example ├── addComment.php ├── comments.php ├── config.php ├── css │ └── style.css ├── img │ └── avatar.jpg ├── index.html ├── js │ └── comments.js ├── replyToComment.php └── view │ └── comments.php └── src ├── ClosureTableCollection.php ├── ClosureTableData.php ├── ClosureTableManagement.php ├── Commentator.php ├── Comments.php ├── DB └── DB.php ├── Exception └── ExceptionClosureTable.php └── IClosureTable.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store -------------------------------------------------------------------------------- /Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/Autoload.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/composer.json -------------------------------------------------------------------------------- /example/addComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/addComment.php -------------------------------------------------------------------------------- /example/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/comments.php -------------------------------------------------------------------------------- /example/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/config.php -------------------------------------------------------------------------------- /example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/css/style.css -------------------------------------------------------------------------------- /example/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/img/avatar.jpg -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/js/comments.js -------------------------------------------------------------------------------- /example/replyToComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/replyToComment.php -------------------------------------------------------------------------------- /example/view/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/example/view/comments.php -------------------------------------------------------------------------------- /src/ClosureTableCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/ClosureTableCollection.php -------------------------------------------------------------------------------- /src/ClosureTableData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/ClosureTableData.php -------------------------------------------------------------------------------- /src/ClosureTableManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/ClosureTableManagement.php -------------------------------------------------------------------------------- /src/Commentator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/Commentator.php -------------------------------------------------------------------------------- /src/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/Comments.php -------------------------------------------------------------------------------- /src/DB/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/DB/DB.php -------------------------------------------------------------------------------- /src/Exception/ExceptionClosureTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/Exception/ExceptionClosureTable.php -------------------------------------------------------------------------------- /src/IClosureTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/TreeClosureTable/HEAD/src/IClosureTable.php --------------------------------------------------------------------------------