├── .gitignore ├── Application ├── Aware │ ├── AbstractDTO.php │ ├── AbstractModelCrud.php │ └── CliAwareInterface.php ├── Helpers │ ├── Format.php │ ├── Node.php │ ├── OpcodeCache.php │ ├── OriginPreflight.php │ └── SQL.php ├── Models │ ├── Banners.php │ ├── Categories.php │ ├── CategoryItems.php │ ├── Currency.php │ ├── Engines.php │ ├── Errors.php │ ├── ItemAttributeValues.php │ ├── ItemAttributes.php │ ├── Items.php │ ├── Logs.php │ ├── Pages.php │ ├── Prices.php │ ├── Subscribers.php │ ├── UserAccess.php │ ├── UserRoles.php │ └── Users.php ├── Modules │ └── Rest │ │ ├── Aware │ │ ├── RestSecurityProvider.php │ │ ├── RestServiceInterface.php │ │ ├── RestValidatorCollectionsProvider.php │ │ └── RestValidatorProvider.php │ │ ├── Controllers │ │ ├── AttributesController.php │ │ ├── BannersController.php │ │ ├── CategoriesController.php │ │ ├── ControllerBase.php │ │ ├── CurrenciesController.php │ │ ├── EnginesController.php │ │ ├── ErrorsController.php │ │ ├── FilesController.php │ │ ├── ItemsController.php │ │ ├── LogsController.php │ │ ├── PagesController.php │ │ ├── SignController.php │ │ ├── SubscribeController.php │ │ ├── TestController.php │ │ ├── UsersController.php │ │ └── ValuesController.php │ │ ├── DTO │ │ ├── BannersDTO.php │ │ ├── CategoryDTO.php │ │ ├── CurrencyDTO.php │ │ ├── EngineDTO.php │ │ ├── ErrorDTO.php │ │ ├── ItemAttributeValuesDTO.php │ │ ├── ItemAttributesDTO.php │ │ ├── ItemsDTO.php │ │ ├── LogDTO.php │ │ ├── PageDTO.php │ │ ├── SubscribersDTO.php │ │ └── UserDTO.php │ │ ├── Events │ │ ├── BeforeDispatchLoop │ │ │ └── ResolveParams.php │ │ ├── BeforeException │ │ │ └── NotFoundEvent.php │ │ └── BeforeExecuteRoute │ │ │ ├── ResolveAccept.php │ │ │ ├── ResolveAccess.php │ │ │ ├── ResolveMethod.php │ │ │ ├── ResolveRequestLength.php │ │ │ └── ResolveRequestLimit.php │ │ ├── Exceptions │ │ ├── BadRequestException.php │ │ ├── BaseException.php │ │ ├── ConflictException.php │ │ ├── ForbiddenException.php │ │ ├── InternalServerErrorException.php │ │ ├── LongRequestException.php │ │ ├── MethodNotAllowedException.php │ │ ├── NotAcceptableException.php │ │ ├── NotFoundException.php │ │ ├── ToManyRequestsException.php │ │ ├── UnauthorizedException.php │ │ ├── UnprocessableEntityException.php │ │ └── UnsupportedContentException.php │ │ ├── Languages │ │ ├── en │ │ │ ├── errors.php │ │ │ └── sign.php │ │ ├── ru │ │ │ ├── errors.php │ │ │ └── sign.php │ │ └── uk │ │ │ ├── errors.php │ │ │ └── sign.php │ │ ├── Rest.php │ │ ├── Routes.php │ │ ├── Services │ │ ├── RestCacheService.php │ │ ├── RestExceptionHandler.php │ │ ├── RestSecurityService.php │ │ ├── RestService.php │ │ └── RestValidatorCollectionService.php │ │ ├── Validators │ │ ├── InputValidator.php │ │ └── OutputValidator.php │ │ ├── config │ │ ├── config.php │ │ ├── rules.php │ │ └── services.php │ │ └── views │ │ ├── PHL │ │ └── notifies │ │ │ ├── restore_password_email.phtml │ │ │ └── restore_password_sms.phtml │ │ └── PHT │ │ └── notifies │ │ ├── restore_password_email.phtml │ │ └── restore_password_sms.phtml ├── Services │ ├── Advanced │ │ ├── HelpersService.php │ │ ├── ImageService.php │ │ ├── StringService.php │ │ └── TranslateService.php │ ├── Cache │ │ └── OpCodeService.php │ ├── Database │ │ └── MySQLConnectService.php │ ├── Develop │ │ ├── MySQLDbListener.php │ │ └── ProfilerService.php │ ├── Mail │ │ ├── MailSMTPExceptions.php │ │ └── MailSMTPService.php │ ├── Mappers │ │ ├── BannersMapper.php │ │ ├── CategoryMapper.php │ │ ├── CurrencyMapper.php │ │ ├── EngineMapper.php │ │ ├── ErrorMapper.php │ │ ├── FileMapper.php │ │ ├── ItemAttributeValuesMapper.php │ │ ├── ItemAttributesMapper.php │ │ ├── ItemsMapper.php │ │ ├── LogMapper.php │ │ ├── PageMapper.php │ │ ├── SubscribeMapper.php │ │ └── UserMapper.php │ └── Security │ │ └── SessionProtector.php └── Tasks │ ├── BackupTask.php │ └── ReceiverTask.php ├── LICENSE ├── README.md ├── apigen.neon ├── codeception.yml ├── composer.json ├── composer.lock ├── config ├── application.php ├── cli.php ├── definitions.php ├── development.php ├── modules.php ├── routes.php └── services.php ├── public ├── cli.php ├── files │ └── logo │ │ ├── .gitignore │ │ └── logo.png ├── index.php ├── phpinfo.php └── test.html └── tests ├── _data ├── dump.sql └── profile.jpg ├── _output └── .gitignore ├── _support ├── ApiTester.php └── _generated │ └── ApiTesterActions.php ├── api.suite.yml └── api ├── Rest ├── Banners │ ├── GetBannersCept.php │ └── GetBannersOneCept.php ├── Categories │ ├── GetCategoriesCept.php │ └── GetCategoryOneCept.php ├── Currencies │ ├── GetCurrenciesCept.php │ └── GetCurrenciesOneCept.php ├── Engines │ ├── GetEngineOneCept.php │ ├── GetEnginesCept.php │ ├── GetEnginesRelCategoriesCept.php │ └── GetEnginesRelCategoriesColumnsCept.php ├── Errors │ └── GetErrorsCept.php ├── Files │ └── UploadProfilePicCept.php ├── Items │ ├── GetAttributesCept.php │ ├── GetIValuesCept.php │ ├── GetItemsAttributesCept.php │ ├── GetItemsCept.php │ └── GetItemsMultipleCept.php ├── Logs │ ├── CreateLogsCept.php │ ├── GetLogsCept.php │ └── GetLogsOneCept.php ├── Pages │ ├── GetPageOneCept.php │ └── GetPagesCept.php ├── Sign │ ├── AuthCept.php │ ├── DeleteCept.php │ ├── RegistrationCept.php │ └── RestoreCept.php ├── Subscribers │ └── SubscribeCept.php ├── Test │ ├── BadRequestColumnsCept.php │ ├── ForbiddenCept.php │ ├── InternalErrorExceptionCept.php │ ├── LimitCept.php │ ├── LongRequestCept.php │ ├── NotAcceptableCept.php │ ├── NotFoundExceptionCept.php │ ├── PostRequiredFieldsCept.php │ └── UnauthorizedCept.php └── Users │ ├── GetUserCept.php │ ├── GetUsersCept.php │ ├── GetUsersColumnsCept.php │ └── UpdateUserCept.php └── _bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/Aware/AbstractDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Aware/AbstractDTO.php -------------------------------------------------------------------------------- /Application/Aware/AbstractModelCrud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Aware/AbstractModelCrud.php -------------------------------------------------------------------------------- /Application/Aware/CliAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Aware/CliAwareInterface.php -------------------------------------------------------------------------------- /Application/Helpers/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Helpers/Format.php -------------------------------------------------------------------------------- /Application/Helpers/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Helpers/Node.php -------------------------------------------------------------------------------- /Application/Helpers/OpcodeCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Helpers/OpcodeCache.php -------------------------------------------------------------------------------- /Application/Helpers/OriginPreflight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Helpers/OriginPreflight.php -------------------------------------------------------------------------------- /Application/Helpers/SQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Helpers/SQL.php -------------------------------------------------------------------------------- /Application/Models/Banners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Banners.php -------------------------------------------------------------------------------- /Application/Models/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Categories.php -------------------------------------------------------------------------------- /Application/Models/CategoryItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/CategoryItems.php -------------------------------------------------------------------------------- /Application/Models/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Currency.php -------------------------------------------------------------------------------- /Application/Models/Engines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Engines.php -------------------------------------------------------------------------------- /Application/Models/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Errors.php -------------------------------------------------------------------------------- /Application/Models/ItemAttributeValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/ItemAttributeValues.php -------------------------------------------------------------------------------- /Application/Models/ItemAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/ItemAttributes.php -------------------------------------------------------------------------------- /Application/Models/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Items.php -------------------------------------------------------------------------------- /Application/Models/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Logs.php -------------------------------------------------------------------------------- /Application/Models/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Pages.php -------------------------------------------------------------------------------- /Application/Models/Prices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Prices.php -------------------------------------------------------------------------------- /Application/Models/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Subscribers.php -------------------------------------------------------------------------------- /Application/Models/UserAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/UserAccess.php -------------------------------------------------------------------------------- /Application/Models/UserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/UserRoles.php -------------------------------------------------------------------------------- /Application/Models/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Models/Users.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Aware/RestSecurityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Aware/RestSecurityProvider.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Aware/RestServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Aware/RestServiceInterface.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Aware/RestValidatorCollectionsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Aware/RestValidatorCollectionsProvider.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Aware/RestValidatorProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Aware/RestValidatorProvider.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/AttributesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/AttributesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/BannersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/BannersController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/CategoriesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/ControllerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/ControllerBase.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/CurrenciesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/CurrenciesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/EnginesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/EnginesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/ErrorsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/ErrorsController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/FilesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/FilesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/ItemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/ItemsController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/LogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/LogsController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/PagesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/SignController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/SignController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/SubscribeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/SubscribeController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/TestController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/UsersController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Controllers/ValuesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Controllers/ValuesController.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/BannersDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/BannersDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/CategoryDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/CategoryDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/CurrencyDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/CurrencyDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/EngineDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/EngineDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/ErrorDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/ErrorDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/ItemAttributeValuesDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/ItemAttributeValuesDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/ItemAttributesDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/ItemAttributesDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/ItemsDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/ItemsDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/LogDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/LogDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/PageDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/PageDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/SubscribersDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/SubscribersDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/DTO/UserDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/DTO/UserDTO.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeDispatchLoop/ResolveParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeDispatchLoop/ResolveParams.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeException/NotFoundEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeException/NotFoundEvent.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveAccept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveAccept.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveAccess.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveMethod.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveRequestLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveRequestLength.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveRequestLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Events/BeforeExecuteRoute/ResolveRequestLimit.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/BadRequestException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/BaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/BaseException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/ConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/ConflictException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/ForbiddenException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/InternalServerErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/InternalServerErrorException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/LongRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/LongRequestException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/MethodNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/MethodNotAllowedException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/NotAcceptableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/NotAcceptableException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/NotFoundException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/ToManyRequestsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/ToManyRequestsException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/UnauthorizedException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/UnprocessableEntityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/UnprocessableEntityException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Exceptions/UnsupportedContentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Exceptions/UnsupportedContentException.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/en/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/en/errors.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/en/sign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/en/sign.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/ru/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/ru/errors.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/ru/sign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/ru/sign.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/uk/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/uk/errors.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Languages/uk/sign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Languages/uk/sign.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Rest.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Routes.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Services/RestCacheService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Services/RestCacheService.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Services/RestExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Services/RestExceptionHandler.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Services/RestSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Services/RestSecurityService.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Services/RestService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Services/RestService.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Services/RestValidatorCollectionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Services/RestValidatorCollectionService.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Validators/InputValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Validators/InputValidator.php -------------------------------------------------------------------------------- /Application/Modules/Rest/Validators/OutputValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/Validators/OutputValidator.php -------------------------------------------------------------------------------- /Application/Modules/Rest/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/config/config.php -------------------------------------------------------------------------------- /Application/Modules/Rest/config/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/config/rules.php -------------------------------------------------------------------------------- /Application/Modules/Rest/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/config/services.php -------------------------------------------------------------------------------- /Application/Modules/Rest/views/PHL/notifies/restore_password_email.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/views/PHL/notifies/restore_password_email.phtml -------------------------------------------------------------------------------- /Application/Modules/Rest/views/PHL/notifies/restore_password_sms.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/views/PHL/notifies/restore_password_sms.phtml -------------------------------------------------------------------------------- /Application/Modules/Rest/views/PHT/notifies/restore_password_email.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/views/PHT/notifies/restore_password_email.phtml -------------------------------------------------------------------------------- /Application/Modules/Rest/views/PHT/notifies/restore_password_sms.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Modules/Rest/views/PHT/notifies/restore_password_sms.phtml -------------------------------------------------------------------------------- /Application/Services/Advanced/HelpersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Advanced/HelpersService.php -------------------------------------------------------------------------------- /Application/Services/Advanced/ImageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Advanced/ImageService.php -------------------------------------------------------------------------------- /Application/Services/Advanced/StringService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Advanced/StringService.php -------------------------------------------------------------------------------- /Application/Services/Advanced/TranslateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Advanced/TranslateService.php -------------------------------------------------------------------------------- /Application/Services/Cache/OpCodeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Cache/OpCodeService.php -------------------------------------------------------------------------------- /Application/Services/Database/MySQLConnectService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Database/MySQLConnectService.php -------------------------------------------------------------------------------- /Application/Services/Develop/MySQLDbListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Develop/MySQLDbListener.php -------------------------------------------------------------------------------- /Application/Services/Develop/ProfilerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Develop/ProfilerService.php -------------------------------------------------------------------------------- /Application/Services/Mail/MailSMTPExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mail/MailSMTPExceptions.php -------------------------------------------------------------------------------- /Application/Services/Mail/MailSMTPService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mail/MailSMTPService.php -------------------------------------------------------------------------------- /Application/Services/Mappers/BannersMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/BannersMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/CategoryMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/CategoryMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/CurrencyMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/CurrencyMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/EngineMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/EngineMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/ErrorMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/ErrorMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/FileMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/FileMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/ItemAttributeValuesMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/ItemAttributeValuesMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/ItemAttributesMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/ItemAttributesMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/ItemsMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/ItemsMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/LogMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/LogMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/PageMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/PageMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/SubscribeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/SubscribeMapper.php -------------------------------------------------------------------------------- /Application/Services/Mappers/UserMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Mappers/UserMapper.php -------------------------------------------------------------------------------- /Application/Services/Security/SessionProtector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Services/Security/SessionProtector.php -------------------------------------------------------------------------------- /Application/Tasks/BackupTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Tasks/BackupTask.php -------------------------------------------------------------------------------- /Application/Tasks/ReceiverTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/Application/Tasks/ReceiverTask.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/README.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/apigen.neon -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/composer.lock -------------------------------------------------------------------------------- /config/application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/application.php -------------------------------------------------------------------------------- /config/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/cli.php -------------------------------------------------------------------------------- /config/definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/definitions.php -------------------------------------------------------------------------------- /config/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/development.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/config/services.php -------------------------------------------------------------------------------- /public/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/public/cli.php -------------------------------------------------------------------------------- /public/files/logo/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /public/files/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/public/files/logo/logo.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislav-web/Phalcon-development/HEAD/public/index.php -------------------------------------------------------------------------------- /public/phpinfo.php: -------------------------------------------------------------------------------- 1 |