├── LICENSE ├── README.md └── src ├── Boot ├── ArrayObject.php ├── Configuration.php ├── Controller.php ├── Kernel.php ├── Logger.php └── TKObject.php ├── Lib ├── Exception │ ├── ControllerInterruptException.php │ ├── DataChangedException.php │ ├── DataExistsException.php │ ├── ErrorReportException.php │ ├── ErrorReportHandler.php │ ├── NoSuchFileOrDirException.php │ ├── PermissionDeniedException.php │ ├── RuntimeException.php │ ├── SQLQueryErrorException.php │ ├── TryNoException.php │ ├── TryYesException.php │ ├── UndefinedConstantException.php │ ├── UndefinedIndexException.php │ └── UndefinedVariableException.php ├── Filesystem │ ├── Dir.php │ ├── File.php │ └── Path.php ├── Flag │ ├── Denied.php │ ├── Flag.php │ ├── No.php │ ├── Skip.php │ ├── Unfound.php │ └── Yes.php ├── IO │ ├── Cookie.php │ ├── Get.php │ ├── HttpHeader.php │ ├── Post.php │ ├── Request.php │ ├── Response.php │ └── Route.php ├── Model │ ├── Auth │ │ ├── RequestCsrf.php │ │ ├── Session.php │ │ └── User.php │ ├── Database │ │ ├── ActiveRecord.php │ │ ├── Column.php │ │ ├── DB.php │ │ ├── Expression.php │ │ ├── FunctionExpression.php │ │ ├── LogicalExpression.php │ │ ├── QueryBuild.php │ │ ├── QueryExpression.php │ │ └── TableModel.php │ └── Permission │ │ ├── Permission.php │ │ ├── Role.php │ │ └── Root.php └── View │ ├── Compile.php │ ├── Control.php │ ├── Element.php │ ├── View.php │ └── ViewData.php └── boot.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/README.md -------------------------------------------------------------------------------- /src/Boot/ArrayObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/ArrayObject.php -------------------------------------------------------------------------------- /src/Boot/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/Configuration.php -------------------------------------------------------------------------------- /src/Boot/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/Controller.php -------------------------------------------------------------------------------- /src/Boot/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/Kernel.php -------------------------------------------------------------------------------- /src/Boot/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/Logger.php -------------------------------------------------------------------------------- /src/Boot/TKObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Boot/TKObject.php -------------------------------------------------------------------------------- /src/Lib/Exception/ControllerInterruptException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/ControllerInterruptException.php -------------------------------------------------------------------------------- /src/Lib/Exception/DataChangedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/DataChangedException.php -------------------------------------------------------------------------------- /src/Lib/Exception/DataExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/DataExistsException.php -------------------------------------------------------------------------------- /src/Lib/Exception/ErrorReportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/ErrorReportException.php -------------------------------------------------------------------------------- /src/Lib/Exception/ErrorReportHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/ErrorReportHandler.php -------------------------------------------------------------------------------- /src/Lib/Exception/NoSuchFileOrDirException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/NoSuchFileOrDirException.php -------------------------------------------------------------------------------- /src/Lib/Exception/PermissionDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/PermissionDeniedException.php -------------------------------------------------------------------------------- /src/Lib/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Lib/Exception/SQLQueryErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/SQLQueryErrorException.php -------------------------------------------------------------------------------- /src/Lib/Exception/TryNoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/TryNoException.php -------------------------------------------------------------------------------- /src/Lib/Exception/TryYesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/TryYesException.php -------------------------------------------------------------------------------- /src/Lib/Exception/UndefinedConstantException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/UndefinedConstantException.php -------------------------------------------------------------------------------- /src/Lib/Exception/UndefinedIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/UndefinedIndexException.php -------------------------------------------------------------------------------- /src/Lib/Exception/UndefinedVariableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Exception/UndefinedVariableException.php -------------------------------------------------------------------------------- /src/Lib/Filesystem/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Filesystem/Dir.php -------------------------------------------------------------------------------- /src/Lib/Filesystem/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Filesystem/File.php -------------------------------------------------------------------------------- /src/Lib/Filesystem/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Filesystem/Path.php -------------------------------------------------------------------------------- /src/Lib/Flag/Denied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/Denied.php -------------------------------------------------------------------------------- /src/Lib/Flag/Flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/Flag.php -------------------------------------------------------------------------------- /src/Lib/Flag/No.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/No.php -------------------------------------------------------------------------------- /src/Lib/Flag/Skip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/Skip.php -------------------------------------------------------------------------------- /src/Lib/Flag/Unfound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/Unfound.php -------------------------------------------------------------------------------- /src/Lib/Flag/Yes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Flag/Yes.php -------------------------------------------------------------------------------- /src/Lib/IO/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Cookie.php -------------------------------------------------------------------------------- /src/Lib/IO/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Get.php -------------------------------------------------------------------------------- /src/Lib/IO/HttpHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/HttpHeader.php -------------------------------------------------------------------------------- /src/Lib/IO/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Post.php -------------------------------------------------------------------------------- /src/Lib/IO/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Request.php -------------------------------------------------------------------------------- /src/Lib/IO/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Response.php -------------------------------------------------------------------------------- /src/Lib/IO/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/IO/Route.php -------------------------------------------------------------------------------- /src/Lib/Model/Auth/RequestCsrf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Auth/RequestCsrf.php -------------------------------------------------------------------------------- /src/Lib/Model/Auth/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Auth/Session.php -------------------------------------------------------------------------------- /src/Lib/Model/Auth/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Auth/User.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/ActiveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/ActiveRecord.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/Column.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/DB.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/Expression.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/FunctionExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/FunctionExpression.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/LogicalExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/LogicalExpression.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/QueryBuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/QueryBuild.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/QueryExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/QueryExpression.php -------------------------------------------------------------------------------- /src/Lib/Model/Database/TableModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Database/TableModel.php -------------------------------------------------------------------------------- /src/Lib/Model/Permission/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Permission/Permission.php -------------------------------------------------------------------------------- /src/Lib/Model/Permission/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Permission/Role.php -------------------------------------------------------------------------------- /src/Lib/Model/Permission/Root.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/Model/Permission/Root.php -------------------------------------------------------------------------------- /src/Lib/View/Compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/View/Compile.php -------------------------------------------------------------------------------- /src/Lib/View/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/View/Control.php -------------------------------------------------------------------------------- /src/Lib/View/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/View/Element.php -------------------------------------------------------------------------------- /src/Lib/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/View/View.php -------------------------------------------------------------------------------- /src/Lib/View/ViewData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/Lib/View/ViewData.php -------------------------------------------------------------------------------- /src/boot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chopins/toknot/HEAD/src/boot.php --------------------------------------------------------------------------------