├── .env ├── .env.test ├── .gitattributes ├── .github └── workflows │ └── phyxo.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── TODO.md ├── UPGRADE_2.1.md ├── admin └── theme │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── js │ │ ├── LocalStorageCache.js │ │ ├── add_album.js │ │ ├── album-permissions.js │ │ ├── album-properties.js │ │ ├── api.js │ │ ├── batch_manager_global.js │ │ ├── batch_manager_unit.js │ │ ├── cat-list.js │ │ ├── comments.js │ │ ├── doubleSlider.js │ │ ├── element_set_ranks.js │ │ ├── extension.js │ │ ├── groups-list.js │ │ ├── index.js │ │ ├── install.js │ │ ├── intro.js │ │ ├── maintenance.js │ │ ├── menubar.js │ │ ├── photo-coi.js │ │ ├── photo-properties.js │ │ ├── photos_add_direct.js │ │ ├── plugins-list.js │ │ ├── services.js │ │ ├── tags.js │ │ ├── update.js │ │ └── users-list.js │ └── scss │ │ ├── _bootstrap-custom-variables.scss │ │ ├── _bootstrap-custom.scss │ │ ├── _fonts.scss │ │ ├── _selectize.clear.scss │ │ ├── _users-list.scss │ │ ├── _utilities.scss │ │ ├── api.scss │ │ ├── icon │ │ ├── cat_move.png │ │ ├── category_children.png │ │ ├── category_delete.png │ │ ├── category_edit.png │ │ ├── category_elements.png │ │ ├── category_jump-to.png │ │ ├── category_permissions.png │ │ ├── category_representant_random.png │ │ ├── check.png │ │ ├── delete.png │ │ ├── edit_s.png │ │ ├── errors.png │ │ ├── exit.png │ │ ├── fcbkcomplete_close.gif │ │ ├── help-min.png │ │ ├── help.png │ │ ├── home.png │ │ ├── infos.png │ │ ├── minus.gif │ │ ├── next.png │ │ ├── note.png │ │ ├── page_end.png │ │ ├── page_top.png │ │ ├── permissions.png │ │ ├── plus.gif │ │ ├── preferences.png │ │ ├── prev.png │ │ ├── remove_filter.png │ │ ├── remove_filter_hover.png │ │ ├── toggle_is_default_group.png │ │ ├── uncheck.png │ │ ├── validate_s.png │ │ ├── virt_category.png │ │ ├── warning.png │ │ └── warnings.png │ │ ├── images │ │ ├── ajax-loader-bar.gif │ │ ├── ajax-loader-small.gif │ │ ├── ajax-loader.gif │ │ ├── pbar-ani.gif │ │ ├── progressbar.gif │ │ ├── progressbg_orange.gif │ │ ├── resizable-e.gif │ │ ├── resizable-n.gif │ │ ├── resizable-ne.gif │ │ ├── resizable-nw.gif │ │ ├── resizable-s.gif │ │ ├── resizable-se.gif │ │ ├── resizable-sw.gif │ │ ├── resizable-w.gif │ │ └── stripe-cat.png │ │ └── style.scss │ ├── template │ ├── __layout.html.twig │ ├── _menubar.html.twig │ ├── _navigation_bar.html.twig │ ├── album_notification.html.twig │ ├── album_permissions.html.twig │ ├── album_properties.html.twig │ ├── album_sort_order.html.twig │ ├── albums_list.html.twig │ ├── albums_move.html.twig │ ├── albums_options.html.twig │ ├── api.html.twig │ ├── batch_manager_global.html.twig │ ├── batch_manager_unit.html.twig │ ├── comments.html.twig │ ├── configuration_comments.html.twig │ ├── configuration_default.html.twig │ ├── configuration_display.html.twig │ ├── configuration_main.html.twig │ ├── configuration_sizes.html.twig │ ├── configuration_watermark.html.twig │ ├── dashboard.html.twig │ ├── groups_list.html.twig │ ├── groups_perm.html.twig │ ├── history_search.html.twig │ ├── history_stats.html.twig │ ├── include │ │ ├── _add_album.inc.html.twig │ │ ├── _double_select.html.twig │ │ └── _modal_delete_confirm.html.twig │ ├── install.html.twig │ ├── languages_installed.html.twig │ ├── languages_new.html.twig │ ├── languages_update.html.twig │ ├── mail │ │ ├── global.css.twig │ │ ├── html │ │ │ ├── __layout.html.twig │ │ │ ├── cat_group_info.html.twig │ │ │ ├── new_comment.html.twig │ │ │ ├── notification.html.twig │ │ │ └── reset_password.html.twig │ │ ├── mail-clear.css.twig │ │ ├── mail-dark.css.twig │ │ └── text │ │ │ ├── __layout.text.twig │ │ │ ├── cat_group_info.text.twig │ │ │ ├── new_comment.text.twig │ │ │ ├── notification.text.twig │ │ │ └── reset_password.text.twig │ ├── maintenance.html.twig │ ├── menubar.html.twig │ ├── notification_by_mail_params.html.twig │ ├── notification_by_mail_send.html.twig │ ├── notification_by_mail_subscribe.html.twig │ ├── photo_coi.html.twig │ ├── photo_properties.html.twig │ ├── photo_rotate.html.twig │ ├── photos_add_direct.html.twig │ ├── plugins_installed.html.twig │ ├── plugins_new.html.twig │ ├── plugins_update.html.twig │ ├── rating_photos.html.twig │ ├── rating_users.html.twig │ ├── tags_all.html.twig │ ├── tags_pending.html.twig │ ├── tags_permissions.html.twig │ ├── themes_installed.html.twig │ ├── themes_new.html.twig │ ├── themes_update.html.twig │ ├── updates_core.html.twig │ ├── updates_ext.html.twig │ ├── user_form.html.twig │ ├── user_perm.html.twig │ └── users_list.html.twig │ ├── themeconf.inc.php │ └── webpack.config.js ├── behat.yml.dist ├── bin └── console ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── api_platform.yaml │ ├── cache.yaml │ ├── csrf.yaml │ ├── debug.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── mailer.yaml │ ├── monolog.yaml │ ├── nelmio_cors.yaml │ ├── phyxo.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── translation.yaml │ ├── twig.yaml │ ├── validator.yaml │ ├── web_profiler.yaml │ └── zenstruck_foundry.yaml ├── parameters.yaml ├── parameters_test.yaml ├── preload.php ├── routes.yaml ├── services.yaml ├── services_install.yaml └── services_test.yaml ├── db └── .gitkeep ├── features ├── api │ └── session.feature ├── media │ ├── img_1.jpg │ ├── img_2.jpg │ ├── img_3.jpg │ ├── img_4.jpg │ ├── img_5.jpg │ ├── sample.jpg │ └── with-metadata.jpg ├── sql │ ├── db_cleanup.sql │ └── db_init.sql └── web │ ├── admin │ ├── album.feature │ ├── batch_manager.feature │ ├── configuration.feature │ ├── groups.feature │ ├── image.feature │ ├── metadatas.feature │ ├── tags.feature │ └── user_mail_notification.feature │ ├── album.feature │ ├── calendar.feature │ ├── comment.feature │ ├── favorite.feature │ ├── media.feature │ ├── random.feature │ ├── rate.feature │ ├── search.feature │ ├── tag.feature │ ├── user.feature │ └── user_security.feature ├── include └── config_default.inc.php ├── install ├── config.sql ├── db │ ├── 139-database.php │ ├── 140-database.php │ ├── 141-database.php │ ├── 142-database.php │ ├── 143-database.php │ ├── 144-database.php │ ├── 145-database.php │ ├── 146-database.php │ ├── 147-database.php │ ├── 148-database.php │ ├── 149-database.php │ └── 150-database.php ├── obsolete.list ├── phyxo_structure-mysql.sql ├── phyxo_structure-pgsql.sql ├── phyxo_structure-sqlite.sql ├── upgrade_1.0.0.php ├── upgrade_1.1.0.php ├── upgrade_1.10.0.php ├── upgrade_1.2.0.php ├── upgrade_1.5.0.php ├── upgrade_1.8.0.php ├── upgrade_1.9.0.php └── upgrade_2.0.0.php ├── migrations └── .gitignore ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.dist.xml ├── plugins ├── .gitkeep └── LanguageSwitcher │ ├── LanguageSwitcher.php │ ├── config.yaml │ └── templates │ └── menubar_languages.html.twig ├── public ├── .gitignore ├── imgs │ ├── favicon-32.png │ ├── favicon-64.png │ ├── favicon-96.png │ ├── favicon.ico │ └── favicon.png └── index.php ├── rector.php ├── src ├── Command │ ├── AssetsInstallCommand.php │ ├── InstallCommand.php │ ├── UserCreateCommand.php │ └── UserListCommand.php ├── Controller │ ├── AboutController.php │ ├── Admin │ │ ├── AdminAlbumController.php │ │ ├── AdminAlbumsController.php │ │ ├── AdminAlbumsOptionsController.php │ │ ├── AdminApiController.php │ │ ├── AdminBatchManagerController.php │ │ ├── AdminCommentsController.php │ │ ├── AdminConfigurationController.php │ │ ├── AdminDashboardController.php │ │ ├── AdminExtensionController.php │ │ ├── AdminGroupsController.php │ │ ├── AdminHistoryController.php │ │ ├── AdminLanguagesController.php │ │ ├── AdminMaintenanceController.php │ │ ├── AdminMenubarController.php │ │ ├── AdminNotificationController.php │ │ ├── AdminPhotoController.php │ │ ├── AdminPhotosController.php │ │ ├── AdminPluginsController.php │ │ ├── AdminRatingController.php │ │ ├── AdminTagsController.php │ │ ├── AdminThemesController.php │ │ ├── AdminUpdateController.php │ │ └── AdminUsersController.php │ ├── AlbumController.php │ ├── CalendarController.php │ ├── CommentController.php │ ├── CommentControllerTrait.php │ ├── DefaultController.php │ ├── ExtensionAssetController.php │ ├── FavoriteController.php │ ├── FeedController.php │ ├── IndexController.php │ ├── InstallController.php │ ├── MediaController.php │ ├── MenubarController.php │ ├── PictureController.php │ ├── SearchController.php │ ├── SecurityController.php │ ├── TagController.php │ ├── ThumbnailsControllerTrait.php │ └── WsController.php ├── DQL │ ├── Date.php │ ├── Day.php │ ├── Month.php │ └── Year.php ├── DataMapper │ ├── AlbumMapper.php │ ├── CommentMapper.php │ ├── ImageMapper.php │ ├── RateMapper.php │ ├── SearchMapper.php │ ├── TagMapper.php │ └── UserMapper.php ├── Entity │ ├── Album.php │ ├── Caddie.php │ ├── Comment.php │ ├── Config.php │ ├── Favorite.php │ ├── Group.php │ ├── History.php │ ├── HistorySummary.php │ ├── Image.php │ ├── ImageAlbum.php │ ├── ImageTag.php │ ├── Language.php │ ├── Plugin.php │ ├── Rate.php │ ├── Search.php │ ├── Tag.php │ ├── Theme.php │ ├── Upgrade.php │ ├── User.php │ ├── UserCache.php │ ├── UserCacheAlbum.php │ ├── UserFeed.php │ ├── UserInfos.php │ └── UserMailNotification.php ├── Enum │ ├── ConfEnum.php │ ├── ExtensionStateType.php │ ├── ImageSizeType.php │ ├── PictureSectionType.php │ ├── TagPermissionEnum.php │ ├── UserPrivacyLevelType.php │ └── UserStatusType.php ├── EventListener │ └── UserStatusListener.php ├── EventSubscriber │ ├── CheckInstallSubscriber.php │ ├── CommentNotificationSubscriber.php │ ├── CoreInstalledSubscriber.php │ ├── ExtensionManagerSubscriber.php │ ├── ExtensionTranslationSubscriber.php │ ├── GroupNotificationSubscriber.php │ ├── HistorySubscriber.php │ ├── LocaleSubscriber.php │ ├── RedirectToLocaleSubscriber.php │ ├── ResetPasswordLinkSubscriber.php │ ├── TablePrefixSubscriber.php │ ├── ThemeConfigSubscriber.php │ ├── ThemePathSubscriber.php │ └── UserPreferencesSubscriber.php ├── Events │ ├── ActivationKeyEvent.php │ ├── BlockEvent.php │ ├── CommentEvent.php │ ├── GroupEvent.php │ └── HistoryEvent.php ├── Exception │ └── MissingGuestUserException.php ├── Form │ ├── CommentFilterType.php │ ├── DeleteCommentType.php │ ├── DisplayConfigurationType.php │ ├── EditCommentType.php │ ├── ForgotPasswordType.php │ ├── FormGroupType.php │ ├── HistorySearchType.php │ ├── ImageCommentType.php │ ├── Model │ │ ├── CommentFilterModel.php │ │ ├── DisplayConfigurationModel.php │ │ ├── ForgotPasswordModel.php │ │ ├── ImageCommentModel.php │ │ ├── NotificationModel.php │ │ ├── PasswordResetModel.php │ │ ├── SearchRulesModel.php │ │ ├── TagPermissionsModel.php │ │ ├── UserInfosModel.php │ │ ├── UserModel.php │ │ └── UserProfileModel.php │ ├── NotificationType.php │ ├── PasswordResetType.php │ ├── TagPermissionsType.php │ ├── Transformer │ │ ├── ConfToDisplayConfigurationTransformer.php │ │ ├── ConfToNotificationTransformer.php │ │ ├── ConfToTagPermissionsTransformer.php │ │ ├── IdentifierToUserTransformer.php │ │ ├── UserToUserInfosTransformer.php │ │ └── UserToUserProfileTransformer.php │ ├── UserCreationType.php │ ├── UserInfosType.php │ ├── UserProfileType.php │ ├── UserRegistrationType.php │ └── ValidateCommentType.php ├── IdentityGeneratorTrait.php ├── ImageLibraryGuesser.php ├── Install │ └── PhyxoInstaller.php ├── InstallKernel.php ├── Kernel.php ├── Metadata.php ├── Model │ ├── AddImagesToCaddieInput.php │ ├── AssetModel.php │ └── ItemModel.php ├── Notification.php ├── Phyxo │ ├── Block │ │ ├── BlockManager.php │ │ ├── DisplayBlock.php │ │ └── RegisteredBlock.php │ ├── Conf.php │ ├── Extension │ │ ├── AbstractPlugin.php │ │ ├── AbstractTheme.php │ │ ├── ExtensionCollection.php │ │ └── Extensions.php │ ├── Functions │ │ ├── Language.php │ │ ├── README.md │ │ ├── Utils.php │ │ └── Ws │ │ │ ├── Category.php │ │ │ ├── Extension.php │ │ │ ├── Group.php │ │ │ ├── Image.php │ │ │ ├── Main.php │ │ │ ├── Permission.php │ │ │ ├── Plugin.php │ │ │ ├── Rate.php │ │ │ ├── Session.php │ │ │ ├── Tag.php │ │ │ ├── Theme.php │ │ │ └── User.php │ ├── Image │ │ ├── DerivativeImage.php │ │ ├── DerivativeParams.php │ │ ├── ImageOptimizer.php │ │ ├── ImageRect.php │ │ ├── ImageStandardParams.php │ │ ├── SizingParams.php │ │ └── WatermarkParams.php │ ├── Language │ │ └── Languages.php │ ├── MenuBar.php │ ├── Plugin │ │ ├── DummyPluginMaintain.php │ │ ├── PluginMaintain.php │ │ └── Plugins.php │ ├── TabSheet │ │ └── TabSheet.php │ ├── Theme │ │ ├── DummyThemeMaintain.php │ │ ├── ThemeMaintain.php │ │ └── Themes.php │ ├── Update │ │ └── Updates.php │ ├── Upgrade.php │ └── Ws │ │ ├── Error.php │ │ └── Server.php ├── PhyxoBundle.php ├── Repository │ ├── AlbumRepository.php │ ├── CaddieRepository.php │ ├── CommentRepository.php │ ├── ConfigRepository.php │ ├── FavoriteRepository.php │ ├── GroupRepository.php │ ├── HistoryRepository.php │ ├── HistorySummaryRepository.php │ ├── ImageAlbumRepository.php │ ├── ImageRepository.php │ ├── ImageTagRepository.php │ ├── LanguageRepository.php │ ├── MaxLastModifiedTrait.php │ ├── PluginRepository.php │ ├── RateRepository.php │ ├── SearchRepository.php │ ├── TagRepository.php │ ├── ThemeRepository.php │ ├── UpgradeRepository.php │ ├── UserCacheAlbumRepository.php │ ├── UserCacheRepository.php │ ├── UserFeedRepository.php │ ├── UserInfosRepository.php │ ├── UserMailNotificationRepository.php │ ├── UserRepository.php │ └── ValidatedConditionTrait.php ├── Resources │ └── help │ │ ├── AssetsInstallCommand.txt │ │ ├── InstallCommand.txt │ │ ├── UserCreateCommand.txt │ │ └── UserListCommand.txt ├── Security │ ├── AppUserService.php │ ├── LoginFormAuthenticator.php │ ├── TagVoter.php │ └── UserProvider.php ├── Services │ ├── AssetsManager.php │ ├── DerivativeService.php │ └── MimeTypeGuesser.php ├── State │ └── AddImagesToCaddieProcessor.php ├── Twig │ ├── DerivativeExtension.php │ ├── PhyxoAssetExtension.php │ ├── PluginAssetExtension.php │ └── ThemeLoader.php ├── UpdateKernel.php ├── Utils │ ├── DirectoryManager.php │ └── RuntimeTranslator.php └── Validator │ ├── SameAuthor.php │ └── SameAuthorValidator.php ├── symfony.lock ├── templates └── form │ └── _theme.html.twig ├── tests ├── Behat │ ├── ApiContext.php │ ├── BaseContext.php │ ├── DBContext.php │ ├── FeatureContext.php │ └── Storage.php ├── Command │ └── UserCreateCommandTest.php ├── Controller │ └── MediaControllerTest.php ├── DataMapper │ └── AlbumMapperTest.php ├── Factory │ ├── ImageFactory.php │ ├── UserFactory.php │ └── UserInfosFactory.php ├── Functional │ └── AddImagesToCaddieTest.php ├── Phyxo │ ├── ConfTest.php │ ├── Image │ │ ├── ImageOptimizerTest.php │ │ └── ImageStandardParamsTest.php │ ├── Language │ │ └── LanguagesTest.php │ ├── Plugin │ │ └── PluginsTest.php │ └── Theme │ │ └── ThemesTest.php ├── bootstrap.php └── fixtures │ ├── config │ └── config_default.inc.php │ ├── media │ ├── img1.jpg │ ├── img2.jpg │ └── sample.jpg │ ├── plugins │ ├── Plugin1 │ │ ├── Plugin1.php │ │ └── config.yaml │ ├── Plugin2 │ │ ├── Plugin2.php │ │ └── config.yaml │ ├── Plugin3 │ │ ├── Plugin3.php │ │ ├── config.yaml │ │ └── description.en_GB.txt │ ├── Plugin4 │ │ ├── Plugin4.php │ │ └── config.yaml │ ├── plugin_lowercase │ │ ├── config.yaml │ │ └── plugin_lowercase.php │ └── plugin_without_config │ │ └── plugin_without_config.php │ ├── themes │ ├── my theme dir with space │ │ └── config.yaml │ ├── theme1 │ │ └── config.yaml │ ├── theme2 │ │ └── config.yaml │ ├── theme3 │ │ ├── about.en_GB.html │ │ ├── config.yaml │ │ └── description.en_GB.txt │ └── theme4 │ │ └── config.yaml │ ├── translations │ ├── messages+intl-icu.aa_AA.php │ ├── messages+intl-icu.en_GB.php │ ├── messages+intl-icu.gg_GG.php │ ├── messages+intl-icu.ss_SS.php │ └── messages+intl-icu.tt_TT.php │ └── zip │ ├── myPlugin1-0.1.0.zip │ └── myPlugin1-0.2.0.zip ├── themes └── treflez │ ├── Config.php │ ├── README.md │ ├── Treflez.php │ ├── admin │ └── template │ │ └── settings.html.twig │ ├── config.yaml │ ├── icon │ └── mimetypes │ │ └── unknown.png │ ├── img │ ├── img_small.png │ ├── play-circle-white.png │ └── transparent.png │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── screenshot.png │ ├── src │ ├── admin │ │ ├── js │ │ │ └── index.js │ │ └── scss │ │ │ └── admin.scss │ ├── js │ │ ├── grid-view.js │ │ ├── index.js │ │ ├── jquery-mobile-events.js │ │ ├── jquery.awesomeCloud.js │ │ ├── keyboard-navigation.js │ │ ├── photoswipe.js │ │ ├── picture-tags.js │ │ ├── picture.js │ │ ├── queue.js │ │ ├── search.js │ │ ├── slick.js │ │ ├── tags.js │ │ ├── thumbnails-loader.js │ │ └── ws.js │ └── scss │ │ ├── _bootstrap-custom-variables.scss │ │ ├── _bootstrap-custom.scss │ │ ├── _bootswatch_darkly.scss │ │ ├── _bootswatch_variables.scss │ │ ├── common │ │ ├── _fonts.scss │ │ ├── _picture-info-sidebar.scss │ │ └── _variables.scss │ │ ├── img │ │ └── play-circle-white.png │ │ ├── theme.scss │ │ └── theme │ │ ├── _base.scss │ │ ├── _calendar.scss │ │ ├── _carousel-fade.scss │ │ ├── _comments.scss │ │ ├── _index.scss │ │ ├── _navs.scss │ │ ├── _page-header.scss │ │ ├── _photoswipe.scss │ │ ├── _picture-info-sidebar.scss │ │ ├── _picture.scss │ │ ├── _social-colors.scss │ │ └── _tag-cloud.scss │ ├── template │ ├── 403.html.twig │ ├── 404.html.twig │ ├── __layout.html.twig │ ├── _albums.html.twig │ ├── _breadcrumb.html.twig │ ├── _calendar_view.html.twig │ ├── _category_nav.html.twig │ ├── _comments_list.html.twig │ ├── _infos_errors.html.twig │ ├── _macro.html.twig │ ├── _menubar.html.twig │ ├── _navigation_bar.html.twig │ ├── _picture_content.html.twig │ ├── _picture_info_cards.html.twig │ ├── _picture_info_comments.html.twig │ ├── _picture_info_sidebar.html.twig │ ├── _picture_info_tabs.html.twig │ ├── _picture_nav.html.twig │ ├── _picture_nav_buttons.html.twig │ ├── _picture_tags.html.twig │ ├── _slick_js.html.twig │ ├── _thumbnails.html.twig │ ├── about.html.twig │ ├── calendar.html.twig │ ├── calendar_by_day.html.twig │ ├── calendar_by_month.html.twig │ ├── calendar_by_year.html.twig │ ├── comments.html.twig │ ├── forgot_password.html.twig │ ├── identification.html.twig │ ├── mainpage_categories.html.twig │ ├── menubar_categories.html.twig │ ├── menubar_identification.html.twig │ ├── menubar_links.html.twig │ ├── menubar_menu.html.twig │ ├── menubar_specials.html.twig │ ├── menubar_tags.html.twig │ ├── notification.html.twig │ ├── picture.html.twig │ ├── profile.html.twig │ ├── register.html.twig │ ├── reset_password.html.twig │ ├── search.html.twig │ ├── search_rules.html.twig │ ├── tags.html.twig │ └── thumbnails.html.twig │ ├── translations │ ├── admin+intl-icu.en_GB.php │ ├── admin+intl-icu.fr_FR.php │ ├── messages+intl-icu.en_GB.php │ └── messages+intl-icu.fr_FR.php │ └── webpack.config.js ├── tools ├── .htaccess ├── php-8-ready.svg ├── phpstan-doctrine-orm-bootstrap.php └── prepare.sh └── translations ├── admin+intl-icu.en_GB.php ├── admin+intl-icu.fr_FR.php ├── install+intl-icu.en_GB.php ├── install+intl-icu.fr_FR.php ├── messages+intl-icu.en_GB.php └── messages+intl-icu.fr_FR.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.env.test -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /composer.lock -merge 2 | -------------------------------------------------------------------------------- /.github/workflows/phyxo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.github/workflows/phyxo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/TODO.md -------------------------------------------------------------------------------- /UPGRADE_2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/UPGRADE_2.1.md -------------------------------------------------------------------------------- /admin/theme/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/package-lock.json -------------------------------------------------------------------------------- /admin/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/package.json -------------------------------------------------------------------------------- /admin/theme/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/postcss.config.js -------------------------------------------------------------------------------- /admin/theme/src/js/LocalStorageCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/LocalStorageCache.js -------------------------------------------------------------------------------- /admin/theme/src/js/add_album.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/add_album.js -------------------------------------------------------------------------------- /admin/theme/src/js/album-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/album-permissions.js -------------------------------------------------------------------------------- /admin/theme/src/js/album-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/album-properties.js -------------------------------------------------------------------------------- /admin/theme/src/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/api.js -------------------------------------------------------------------------------- /admin/theme/src/js/batch_manager_global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/batch_manager_global.js -------------------------------------------------------------------------------- /admin/theme/src/js/batch_manager_unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/batch_manager_unit.js -------------------------------------------------------------------------------- /admin/theme/src/js/cat-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/cat-list.js -------------------------------------------------------------------------------- /admin/theme/src/js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/comments.js -------------------------------------------------------------------------------- /admin/theme/src/js/doubleSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/doubleSlider.js -------------------------------------------------------------------------------- /admin/theme/src/js/element_set_ranks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/element_set_ranks.js -------------------------------------------------------------------------------- /admin/theme/src/js/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/extension.js -------------------------------------------------------------------------------- /admin/theme/src/js/groups-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/groups-list.js -------------------------------------------------------------------------------- /admin/theme/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/index.js -------------------------------------------------------------------------------- /admin/theme/src/js/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/install.js -------------------------------------------------------------------------------- /admin/theme/src/js/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/intro.js -------------------------------------------------------------------------------- /admin/theme/src/js/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/maintenance.js -------------------------------------------------------------------------------- /admin/theme/src/js/menubar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/menubar.js -------------------------------------------------------------------------------- /admin/theme/src/js/photo-coi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/photo-coi.js -------------------------------------------------------------------------------- /admin/theme/src/js/photo-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/photo-properties.js -------------------------------------------------------------------------------- /admin/theme/src/js/photos_add_direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/photos_add_direct.js -------------------------------------------------------------------------------- /admin/theme/src/js/plugins-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/plugins-list.js -------------------------------------------------------------------------------- /admin/theme/src/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/services.js -------------------------------------------------------------------------------- /admin/theme/src/js/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/tags.js -------------------------------------------------------------------------------- /admin/theme/src/js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/update.js -------------------------------------------------------------------------------- /admin/theme/src/js/users-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/js/users-list.js -------------------------------------------------------------------------------- /admin/theme/src/scss/_bootstrap-custom-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/_bootstrap-custom-variables.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/_bootstrap-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/_bootstrap-custom.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/_fonts.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/_selectize.clear.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/_selectize.clear.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/_users-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/_users-list.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/_utilities.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /admin/theme/src/scss/api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/api.scss -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/cat_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/cat_move.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_children.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_delete.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_edit.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_elements.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_jump-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_jump-to.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_permissions.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/category_representant_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/category_representant_random.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/check.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/delete.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/edit_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/edit_s.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/errors.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/exit.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/fcbkcomplete_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/fcbkcomplete_close.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/help-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/help-min.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/help.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/home.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/infos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/infos.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/minus.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/next.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/note.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/page_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/page_end.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/page_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/page_top.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/permissions.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/plus.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/preferences.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/prev.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/remove_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/remove_filter.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/remove_filter_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/remove_filter_hover.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/toggle_is_default_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/toggle_is_default_group.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/uncheck.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/validate_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/validate_s.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/virt_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/virt_category.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/warning.png -------------------------------------------------------------------------------- /admin/theme/src/scss/icon/warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/icon/warnings.png -------------------------------------------------------------------------------- /admin/theme/src/scss/images/ajax-loader-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/ajax-loader-bar.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/ajax-loader-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/ajax-loader-small.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/ajax-loader.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/pbar-ani.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/progressbar.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/progressbg_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/progressbg_orange.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-e.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-n.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-ne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-ne.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-nw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-nw.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-s.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-se.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-sw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-sw.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/resizable-w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/resizable-w.gif -------------------------------------------------------------------------------- /admin/theme/src/scss/images/stripe-cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/images/stripe-cat.png -------------------------------------------------------------------------------- /admin/theme/src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/src/scss/style.scss -------------------------------------------------------------------------------- /admin/theme/template/__layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/__layout.html.twig -------------------------------------------------------------------------------- /admin/theme/template/_menubar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/_menubar.html.twig -------------------------------------------------------------------------------- /admin/theme/template/_navigation_bar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/_navigation_bar.html.twig -------------------------------------------------------------------------------- /admin/theme/template/album_notification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/album_notification.html.twig -------------------------------------------------------------------------------- /admin/theme/template/album_permissions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/album_permissions.html.twig -------------------------------------------------------------------------------- /admin/theme/template/album_properties.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/album_properties.html.twig -------------------------------------------------------------------------------- /admin/theme/template/album_sort_order.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/album_sort_order.html.twig -------------------------------------------------------------------------------- /admin/theme/template/albums_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/albums_list.html.twig -------------------------------------------------------------------------------- /admin/theme/template/albums_move.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/albums_move.html.twig -------------------------------------------------------------------------------- /admin/theme/template/albums_options.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/albums_options.html.twig -------------------------------------------------------------------------------- /admin/theme/template/api.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/api.html.twig -------------------------------------------------------------------------------- /admin/theme/template/batch_manager_global.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/batch_manager_global.html.twig -------------------------------------------------------------------------------- /admin/theme/template/batch_manager_unit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/batch_manager_unit.html.twig -------------------------------------------------------------------------------- /admin/theme/template/comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/comments.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_comments.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_default.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_display.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_display.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_main.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_main.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_sizes.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_sizes.html.twig -------------------------------------------------------------------------------- /admin/theme/template/configuration_watermark.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/configuration_watermark.html.twig -------------------------------------------------------------------------------- /admin/theme/template/dashboard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/dashboard.html.twig -------------------------------------------------------------------------------- /admin/theme/template/groups_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/groups_list.html.twig -------------------------------------------------------------------------------- /admin/theme/template/groups_perm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/groups_perm.html.twig -------------------------------------------------------------------------------- /admin/theme/template/history_search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/history_search.html.twig -------------------------------------------------------------------------------- /admin/theme/template/history_stats.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/history_stats.html.twig -------------------------------------------------------------------------------- /admin/theme/template/include/_add_album.inc.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/include/_add_album.inc.html.twig -------------------------------------------------------------------------------- /admin/theme/template/include/_double_select.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/include/_double_select.html.twig -------------------------------------------------------------------------------- /admin/theme/template/include/_modal_delete_confirm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/include/_modal_delete_confirm.html.twig -------------------------------------------------------------------------------- /admin/theme/template/install.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/install.html.twig -------------------------------------------------------------------------------- /admin/theme/template/languages_installed.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/languages_installed.html.twig -------------------------------------------------------------------------------- /admin/theme/template/languages_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/languages_new.html.twig -------------------------------------------------------------------------------- /admin/theme/template/languages_update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/languages_update.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/global.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/global.css.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/html/__layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/html/__layout.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/html/cat_group_info.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/html/cat_group_info.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/html/new_comment.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/html/new_comment.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/html/notification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/html/notification.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/html/reset_password.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/html/reset_password.html.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/mail-clear.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/mail-clear.css.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/mail-dark.css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/mail-dark.css.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/text/__layout.text.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/text/__layout.text.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/text/cat_group_info.text.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/text/cat_group_info.text.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/text/new_comment.text.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/text/new_comment.text.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/text/notification.text.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/text/notification.text.twig -------------------------------------------------------------------------------- /admin/theme/template/mail/text/reset_password.text.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/mail/text/reset_password.text.twig -------------------------------------------------------------------------------- /admin/theme/template/maintenance.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/maintenance.html.twig -------------------------------------------------------------------------------- /admin/theme/template/menubar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/menubar.html.twig -------------------------------------------------------------------------------- /admin/theme/template/notification_by_mail_params.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/notification_by_mail_params.html.twig -------------------------------------------------------------------------------- /admin/theme/template/notification_by_mail_send.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/notification_by_mail_send.html.twig -------------------------------------------------------------------------------- /admin/theme/template/notification_by_mail_subscribe.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/notification_by_mail_subscribe.html.twig -------------------------------------------------------------------------------- /admin/theme/template/photo_coi.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/photo_coi.html.twig -------------------------------------------------------------------------------- /admin/theme/template/photo_properties.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/photo_properties.html.twig -------------------------------------------------------------------------------- /admin/theme/template/photo_rotate.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/photo_rotate.html.twig -------------------------------------------------------------------------------- /admin/theme/template/photos_add_direct.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/photos_add_direct.html.twig -------------------------------------------------------------------------------- /admin/theme/template/plugins_installed.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/plugins_installed.html.twig -------------------------------------------------------------------------------- /admin/theme/template/plugins_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/plugins_new.html.twig -------------------------------------------------------------------------------- /admin/theme/template/plugins_update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/plugins_update.html.twig -------------------------------------------------------------------------------- /admin/theme/template/rating_photos.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/rating_photos.html.twig -------------------------------------------------------------------------------- /admin/theme/template/rating_users.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/rating_users.html.twig -------------------------------------------------------------------------------- /admin/theme/template/tags_all.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/tags_all.html.twig -------------------------------------------------------------------------------- /admin/theme/template/tags_pending.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/tags_pending.html.twig -------------------------------------------------------------------------------- /admin/theme/template/tags_permissions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/tags_permissions.html.twig -------------------------------------------------------------------------------- /admin/theme/template/themes_installed.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/themes_installed.html.twig -------------------------------------------------------------------------------- /admin/theme/template/themes_new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/themes_new.html.twig -------------------------------------------------------------------------------- /admin/theme/template/themes_update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/themes_update.html.twig -------------------------------------------------------------------------------- /admin/theme/template/updates_core.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/updates_core.html.twig -------------------------------------------------------------------------------- /admin/theme/template/updates_ext.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/updates_ext.html.twig -------------------------------------------------------------------------------- /admin/theme/template/user_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/user_form.html.twig -------------------------------------------------------------------------------- /admin/theme/template/user_perm.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/user_perm.html.twig -------------------------------------------------------------------------------- /admin/theme/template/users_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/template/users_list.html.twig -------------------------------------------------------------------------------- /admin/theme/themeconf.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/themeconf.inc.php -------------------------------------------------------------------------------- /admin/theme/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/admin/theme/webpack.config.js -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/api_platform.yaml -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/csrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/csrf.yaml -------------------------------------------------------------------------------- /config/packages/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/debug.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/mailer.yaml -------------------------------------------------------------------------------- /config/packages/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/monolog.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/phyxo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/phyxo.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/packages/zenstruck_foundry.yaml -------------------------------------------------------------------------------- /config/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/parameters.yaml -------------------------------------------------------------------------------- /config/parameters_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/parameters_test.yaml -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/preload.php -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/services.yaml -------------------------------------------------------------------------------- /config/services_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/services_install.yaml -------------------------------------------------------------------------------- /config/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/config/services_test.yaml -------------------------------------------------------------------------------- /db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/api/session.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/api/session.feature -------------------------------------------------------------------------------- /features/media/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/img_1.jpg -------------------------------------------------------------------------------- /features/media/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/img_2.jpg -------------------------------------------------------------------------------- /features/media/img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/img_3.jpg -------------------------------------------------------------------------------- /features/media/img_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/img_4.jpg -------------------------------------------------------------------------------- /features/media/img_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/img_5.jpg -------------------------------------------------------------------------------- /features/media/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/sample.jpg -------------------------------------------------------------------------------- /features/media/with-metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/media/with-metadata.jpg -------------------------------------------------------------------------------- /features/sql/db_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/sql/db_cleanup.sql -------------------------------------------------------------------------------- /features/sql/db_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/sql/db_init.sql -------------------------------------------------------------------------------- /features/web/admin/album.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/album.feature -------------------------------------------------------------------------------- /features/web/admin/batch_manager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/batch_manager.feature -------------------------------------------------------------------------------- /features/web/admin/configuration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/configuration.feature -------------------------------------------------------------------------------- /features/web/admin/groups.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/groups.feature -------------------------------------------------------------------------------- /features/web/admin/image.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/image.feature -------------------------------------------------------------------------------- /features/web/admin/metadatas.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/metadatas.feature -------------------------------------------------------------------------------- /features/web/admin/tags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/tags.feature -------------------------------------------------------------------------------- /features/web/admin/user_mail_notification.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/admin/user_mail_notification.feature -------------------------------------------------------------------------------- /features/web/album.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/album.feature -------------------------------------------------------------------------------- /features/web/calendar.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/calendar.feature -------------------------------------------------------------------------------- /features/web/comment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/comment.feature -------------------------------------------------------------------------------- /features/web/favorite.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/favorite.feature -------------------------------------------------------------------------------- /features/web/media.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/media.feature -------------------------------------------------------------------------------- /features/web/random.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/random.feature -------------------------------------------------------------------------------- /features/web/rate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/rate.feature -------------------------------------------------------------------------------- /features/web/search.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/search.feature -------------------------------------------------------------------------------- /features/web/tag.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/tag.feature -------------------------------------------------------------------------------- /features/web/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/user.feature -------------------------------------------------------------------------------- /features/web/user_security.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/features/web/user_security.feature -------------------------------------------------------------------------------- /include/config_default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/include/config_default.inc.php -------------------------------------------------------------------------------- /install/config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/config.sql -------------------------------------------------------------------------------- /install/db/139-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/139-database.php -------------------------------------------------------------------------------- /install/db/140-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/140-database.php -------------------------------------------------------------------------------- /install/db/141-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/141-database.php -------------------------------------------------------------------------------- /install/db/142-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/142-database.php -------------------------------------------------------------------------------- /install/db/143-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/143-database.php -------------------------------------------------------------------------------- /install/db/144-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/144-database.php -------------------------------------------------------------------------------- /install/db/145-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/145-database.php -------------------------------------------------------------------------------- /install/db/146-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/146-database.php -------------------------------------------------------------------------------- /install/db/147-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/147-database.php -------------------------------------------------------------------------------- /install/db/148-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/148-database.php -------------------------------------------------------------------------------- /install/db/149-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/149-database.php -------------------------------------------------------------------------------- /install/db/150-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/db/150-database.php -------------------------------------------------------------------------------- /install/obsolete.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/obsolete.list -------------------------------------------------------------------------------- /install/phyxo_structure-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/phyxo_structure-mysql.sql -------------------------------------------------------------------------------- /install/phyxo_structure-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/phyxo_structure-pgsql.sql -------------------------------------------------------------------------------- /install/phyxo_structure-sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/phyxo_structure-sqlite.sql -------------------------------------------------------------------------------- /install/upgrade_1.0.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.0.0.php -------------------------------------------------------------------------------- /install/upgrade_1.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.1.0.php -------------------------------------------------------------------------------- /install/upgrade_1.10.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.10.0.php -------------------------------------------------------------------------------- /install/upgrade_1.2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.2.0.php -------------------------------------------------------------------------------- /install/upgrade_1.5.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.5.0.php -------------------------------------------------------------------------------- /install/upgrade_1.8.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.8.0.php -------------------------------------------------------------------------------- /install/upgrade_1.9.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_1.9.0.php -------------------------------------------------------------------------------- /install/upgrade_2.0.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/install/upgrade_2.0.0.php -------------------------------------------------------------------------------- /migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/phpunit.dist.xml -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/LanguageSwitcher/LanguageSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/plugins/LanguageSwitcher/LanguageSwitcher.php -------------------------------------------------------------------------------- /plugins/LanguageSwitcher/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/plugins/LanguageSwitcher/config.yaml -------------------------------------------------------------------------------- /plugins/LanguageSwitcher/templates/menubar_languages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/plugins/LanguageSwitcher/templates/menubar_languages.html.twig -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/imgs/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/imgs/favicon-32.png -------------------------------------------------------------------------------- /public/imgs/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/imgs/favicon-64.png -------------------------------------------------------------------------------- /public/imgs/favicon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/imgs/favicon-96.png -------------------------------------------------------------------------------- /public/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/imgs/favicon.ico -------------------------------------------------------------------------------- /public/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/imgs/favicon.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/public/index.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/rector.php -------------------------------------------------------------------------------- /src/Command/AssetsInstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Command/AssetsInstallCommand.php -------------------------------------------------------------------------------- /src/Command/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Command/InstallCommand.php -------------------------------------------------------------------------------- /src/Command/UserCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Command/UserCreateCommand.php -------------------------------------------------------------------------------- /src/Command/UserListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Command/UserListCommand.php -------------------------------------------------------------------------------- /src/Controller/AboutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/AboutController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminAlbumController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminAlbumController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminAlbumsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminAlbumsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminAlbumsOptionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminAlbumsOptionsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminApiController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminBatchManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminBatchManagerController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminCommentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminCommentsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminConfigurationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminConfigurationController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminDashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminDashboardController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminExtensionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminExtensionController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminGroupsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminGroupsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminHistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminHistoryController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminLanguagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminLanguagesController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminMaintenanceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminMaintenanceController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminMenubarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminMenubarController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminNotificationController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminPhotoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminPhotoController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminPhotosController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminPhotosController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminPluginsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminPluginsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminRatingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminRatingController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminTagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminTagsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminThemesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminThemesController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminUpdateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminUpdateController.php -------------------------------------------------------------------------------- /src/Controller/Admin/AdminUsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/Admin/AdminUsersController.php -------------------------------------------------------------------------------- /src/Controller/AlbumController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/AlbumController.php -------------------------------------------------------------------------------- /src/Controller/CalendarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/CalendarController.php -------------------------------------------------------------------------------- /src/Controller/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/CommentController.php -------------------------------------------------------------------------------- /src/Controller/CommentControllerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/CommentControllerTrait.php -------------------------------------------------------------------------------- /src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Controller/ExtensionAssetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/ExtensionAssetController.php -------------------------------------------------------------------------------- /src/Controller/FavoriteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/FavoriteController.php -------------------------------------------------------------------------------- /src/Controller/FeedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/FeedController.php -------------------------------------------------------------------------------- /src/Controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/IndexController.php -------------------------------------------------------------------------------- /src/Controller/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/InstallController.php -------------------------------------------------------------------------------- /src/Controller/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/MediaController.php -------------------------------------------------------------------------------- /src/Controller/MenubarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/MenubarController.php -------------------------------------------------------------------------------- /src/Controller/PictureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/PictureController.php -------------------------------------------------------------------------------- /src/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/SearchController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Controller/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/TagController.php -------------------------------------------------------------------------------- /src/Controller/ThumbnailsControllerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/ThumbnailsControllerTrait.php -------------------------------------------------------------------------------- /src/Controller/WsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Controller/WsController.php -------------------------------------------------------------------------------- /src/DQL/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DQL/Date.php -------------------------------------------------------------------------------- /src/DQL/Day.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DQL/Day.php -------------------------------------------------------------------------------- /src/DQL/Month.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DQL/Month.php -------------------------------------------------------------------------------- /src/DQL/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DQL/Year.php -------------------------------------------------------------------------------- /src/DataMapper/AlbumMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/AlbumMapper.php -------------------------------------------------------------------------------- /src/DataMapper/CommentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/CommentMapper.php -------------------------------------------------------------------------------- /src/DataMapper/ImageMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/ImageMapper.php -------------------------------------------------------------------------------- /src/DataMapper/RateMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/RateMapper.php -------------------------------------------------------------------------------- /src/DataMapper/SearchMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/SearchMapper.php -------------------------------------------------------------------------------- /src/DataMapper/TagMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/TagMapper.php -------------------------------------------------------------------------------- /src/DataMapper/UserMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/DataMapper/UserMapper.php -------------------------------------------------------------------------------- /src/Entity/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Album.php -------------------------------------------------------------------------------- /src/Entity/Caddie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Caddie.php -------------------------------------------------------------------------------- /src/Entity/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Comment.php -------------------------------------------------------------------------------- /src/Entity/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Config.php -------------------------------------------------------------------------------- /src/Entity/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Favorite.php -------------------------------------------------------------------------------- /src/Entity/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Group.php -------------------------------------------------------------------------------- /src/Entity/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/History.php -------------------------------------------------------------------------------- /src/Entity/HistorySummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/HistorySummary.php -------------------------------------------------------------------------------- /src/Entity/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Image.php -------------------------------------------------------------------------------- /src/Entity/ImageAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/ImageAlbum.php -------------------------------------------------------------------------------- /src/Entity/ImageTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/ImageTag.php -------------------------------------------------------------------------------- /src/Entity/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Language.php -------------------------------------------------------------------------------- /src/Entity/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Plugin.php -------------------------------------------------------------------------------- /src/Entity/Rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Rate.php -------------------------------------------------------------------------------- /src/Entity/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Search.php -------------------------------------------------------------------------------- /src/Entity/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Tag.php -------------------------------------------------------------------------------- /src/Entity/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Theme.php -------------------------------------------------------------------------------- /src/Entity/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/Upgrade.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Entity/UserCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/UserCache.php -------------------------------------------------------------------------------- /src/Entity/UserCacheAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/UserCacheAlbum.php -------------------------------------------------------------------------------- /src/Entity/UserFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/UserFeed.php -------------------------------------------------------------------------------- /src/Entity/UserInfos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/UserInfos.php -------------------------------------------------------------------------------- /src/Entity/UserMailNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Entity/UserMailNotification.php -------------------------------------------------------------------------------- /src/Enum/ConfEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/ConfEnum.php -------------------------------------------------------------------------------- /src/Enum/ExtensionStateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/ExtensionStateType.php -------------------------------------------------------------------------------- /src/Enum/ImageSizeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/ImageSizeType.php -------------------------------------------------------------------------------- /src/Enum/PictureSectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/PictureSectionType.php -------------------------------------------------------------------------------- /src/Enum/TagPermissionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/TagPermissionEnum.php -------------------------------------------------------------------------------- /src/Enum/UserPrivacyLevelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/UserPrivacyLevelType.php -------------------------------------------------------------------------------- /src/Enum/UserStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Enum/UserStatusType.php -------------------------------------------------------------------------------- /src/EventListener/UserStatusListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventListener/UserStatusListener.php -------------------------------------------------------------------------------- /src/EventSubscriber/CheckInstallSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/CheckInstallSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/CommentNotificationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/CommentNotificationSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/CoreInstalledSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/CoreInstalledSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/ExtensionManagerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/ExtensionManagerSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/ExtensionTranslationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/ExtensionTranslationSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/GroupNotificationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/GroupNotificationSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/HistorySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/HistorySubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/LocaleSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/LocaleSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/RedirectToLocaleSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/RedirectToLocaleSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/ResetPasswordLinkSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/ResetPasswordLinkSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/TablePrefixSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/TablePrefixSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/ThemeConfigSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/ThemeConfigSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/ThemePathSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/ThemePathSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/UserPreferencesSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/EventSubscriber/UserPreferencesSubscriber.php -------------------------------------------------------------------------------- /src/Events/ActivationKeyEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Events/ActivationKeyEvent.php -------------------------------------------------------------------------------- /src/Events/BlockEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Events/BlockEvent.php -------------------------------------------------------------------------------- /src/Events/CommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Events/CommentEvent.php -------------------------------------------------------------------------------- /src/Events/GroupEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Events/GroupEvent.php -------------------------------------------------------------------------------- /src/Events/HistoryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Events/HistoryEvent.php -------------------------------------------------------------------------------- /src/Exception/MissingGuestUserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Exception/MissingGuestUserException.php -------------------------------------------------------------------------------- /src/Form/CommentFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/CommentFilterType.php -------------------------------------------------------------------------------- /src/Form/DeleteCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/DeleteCommentType.php -------------------------------------------------------------------------------- /src/Form/DisplayConfigurationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/DisplayConfigurationType.php -------------------------------------------------------------------------------- /src/Form/EditCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/EditCommentType.php -------------------------------------------------------------------------------- /src/Form/ForgotPasswordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/ForgotPasswordType.php -------------------------------------------------------------------------------- /src/Form/FormGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/FormGroupType.php -------------------------------------------------------------------------------- /src/Form/HistorySearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/HistorySearchType.php -------------------------------------------------------------------------------- /src/Form/ImageCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/ImageCommentType.php -------------------------------------------------------------------------------- /src/Form/Model/CommentFilterModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/CommentFilterModel.php -------------------------------------------------------------------------------- /src/Form/Model/DisplayConfigurationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/DisplayConfigurationModel.php -------------------------------------------------------------------------------- /src/Form/Model/ForgotPasswordModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/ForgotPasswordModel.php -------------------------------------------------------------------------------- /src/Form/Model/ImageCommentModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/ImageCommentModel.php -------------------------------------------------------------------------------- /src/Form/Model/NotificationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/NotificationModel.php -------------------------------------------------------------------------------- /src/Form/Model/PasswordResetModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/PasswordResetModel.php -------------------------------------------------------------------------------- /src/Form/Model/SearchRulesModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/SearchRulesModel.php -------------------------------------------------------------------------------- /src/Form/Model/TagPermissionsModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/TagPermissionsModel.php -------------------------------------------------------------------------------- /src/Form/Model/UserInfosModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/UserInfosModel.php -------------------------------------------------------------------------------- /src/Form/Model/UserModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/UserModel.php -------------------------------------------------------------------------------- /src/Form/Model/UserProfileModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Model/UserProfileModel.php -------------------------------------------------------------------------------- /src/Form/NotificationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/NotificationType.php -------------------------------------------------------------------------------- /src/Form/PasswordResetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/PasswordResetType.php -------------------------------------------------------------------------------- /src/Form/TagPermissionsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/TagPermissionsType.php -------------------------------------------------------------------------------- /src/Form/Transformer/ConfToDisplayConfigurationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/ConfToDisplayConfigurationTransformer.php -------------------------------------------------------------------------------- /src/Form/Transformer/ConfToNotificationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/ConfToNotificationTransformer.php -------------------------------------------------------------------------------- /src/Form/Transformer/ConfToTagPermissionsTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/ConfToTagPermissionsTransformer.php -------------------------------------------------------------------------------- /src/Form/Transformer/IdentifierToUserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/IdentifierToUserTransformer.php -------------------------------------------------------------------------------- /src/Form/Transformer/UserToUserInfosTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/UserToUserInfosTransformer.php -------------------------------------------------------------------------------- /src/Form/Transformer/UserToUserProfileTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/Transformer/UserToUserProfileTransformer.php -------------------------------------------------------------------------------- /src/Form/UserCreationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/UserCreationType.php -------------------------------------------------------------------------------- /src/Form/UserInfosType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/UserInfosType.php -------------------------------------------------------------------------------- /src/Form/UserProfileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/UserProfileType.php -------------------------------------------------------------------------------- /src/Form/UserRegistrationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/UserRegistrationType.php -------------------------------------------------------------------------------- /src/Form/ValidateCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Form/ValidateCommentType.php -------------------------------------------------------------------------------- /src/IdentityGeneratorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/IdentityGeneratorTrait.php -------------------------------------------------------------------------------- /src/ImageLibraryGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/ImageLibraryGuesser.php -------------------------------------------------------------------------------- /src/Install/PhyxoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Install/PhyxoInstaller.php -------------------------------------------------------------------------------- /src/InstallKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/InstallKernel.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Metadata.php -------------------------------------------------------------------------------- /src/Model/AddImagesToCaddieInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Model/AddImagesToCaddieInput.php -------------------------------------------------------------------------------- /src/Model/AssetModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Model/AssetModel.php -------------------------------------------------------------------------------- /src/Model/ItemModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Model/ItemModel.php -------------------------------------------------------------------------------- /src/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Notification.php -------------------------------------------------------------------------------- /src/Phyxo/Block/BlockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Block/BlockManager.php -------------------------------------------------------------------------------- /src/Phyxo/Block/DisplayBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Block/DisplayBlock.php -------------------------------------------------------------------------------- /src/Phyxo/Block/RegisteredBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Block/RegisteredBlock.php -------------------------------------------------------------------------------- /src/Phyxo/Conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Conf.php -------------------------------------------------------------------------------- /src/Phyxo/Extension/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Extension/AbstractPlugin.php -------------------------------------------------------------------------------- /src/Phyxo/Extension/AbstractTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Extension/AbstractTheme.php -------------------------------------------------------------------------------- /src/Phyxo/Extension/ExtensionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Extension/ExtensionCollection.php -------------------------------------------------------------------------------- /src/Phyxo/Extension/Extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Extension/Extensions.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Language.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/README.md -------------------------------------------------------------------------------- /src/Phyxo/Functions/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Utils.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Category.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Extension.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Group.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Image.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Main.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Permission.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Plugin.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Rate.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Session.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Tag.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/Theme.php -------------------------------------------------------------------------------- /src/Phyxo/Functions/Ws/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Functions/Ws/User.php -------------------------------------------------------------------------------- /src/Phyxo/Image/DerivativeImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/DerivativeImage.php -------------------------------------------------------------------------------- /src/Phyxo/Image/DerivativeParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/DerivativeParams.php -------------------------------------------------------------------------------- /src/Phyxo/Image/ImageOptimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/ImageOptimizer.php -------------------------------------------------------------------------------- /src/Phyxo/Image/ImageRect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/ImageRect.php -------------------------------------------------------------------------------- /src/Phyxo/Image/ImageStandardParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/ImageStandardParams.php -------------------------------------------------------------------------------- /src/Phyxo/Image/SizingParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/SizingParams.php -------------------------------------------------------------------------------- /src/Phyxo/Image/WatermarkParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Image/WatermarkParams.php -------------------------------------------------------------------------------- /src/Phyxo/Language/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Language/Languages.php -------------------------------------------------------------------------------- /src/Phyxo/MenuBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/MenuBar.php -------------------------------------------------------------------------------- /src/Phyxo/Plugin/DummyPluginMaintain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Plugin/DummyPluginMaintain.php -------------------------------------------------------------------------------- /src/Phyxo/Plugin/PluginMaintain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Plugin/PluginMaintain.php -------------------------------------------------------------------------------- /src/Phyxo/Plugin/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Plugin/Plugins.php -------------------------------------------------------------------------------- /src/Phyxo/TabSheet/TabSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/TabSheet/TabSheet.php -------------------------------------------------------------------------------- /src/Phyxo/Theme/DummyThemeMaintain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Theme/DummyThemeMaintain.php -------------------------------------------------------------------------------- /src/Phyxo/Theme/ThemeMaintain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Theme/ThemeMaintain.php -------------------------------------------------------------------------------- /src/Phyxo/Theme/Themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Theme/Themes.php -------------------------------------------------------------------------------- /src/Phyxo/Update/Updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Update/Updates.php -------------------------------------------------------------------------------- /src/Phyxo/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Upgrade.php -------------------------------------------------------------------------------- /src/Phyxo/Ws/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Ws/Error.php -------------------------------------------------------------------------------- /src/Phyxo/Ws/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Phyxo/Ws/Server.php -------------------------------------------------------------------------------- /src/PhyxoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/PhyxoBundle.php -------------------------------------------------------------------------------- /src/Repository/AlbumRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/AlbumRepository.php -------------------------------------------------------------------------------- /src/Repository/CaddieRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/CaddieRepository.php -------------------------------------------------------------------------------- /src/Repository/CommentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/CommentRepository.php -------------------------------------------------------------------------------- /src/Repository/ConfigRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ConfigRepository.php -------------------------------------------------------------------------------- /src/Repository/FavoriteRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/FavoriteRepository.php -------------------------------------------------------------------------------- /src/Repository/GroupRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/GroupRepository.php -------------------------------------------------------------------------------- /src/Repository/HistoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/HistoryRepository.php -------------------------------------------------------------------------------- /src/Repository/HistorySummaryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/HistorySummaryRepository.php -------------------------------------------------------------------------------- /src/Repository/ImageAlbumRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ImageAlbumRepository.php -------------------------------------------------------------------------------- /src/Repository/ImageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ImageRepository.php -------------------------------------------------------------------------------- /src/Repository/ImageTagRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ImageTagRepository.php -------------------------------------------------------------------------------- /src/Repository/LanguageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/LanguageRepository.php -------------------------------------------------------------------------------- /src/Repository/MaxLastModifiedTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/MaxLastModifiedTrait.php -------------------------------------------------------------------------------- /src/Repository/PluginRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/PluginRepository.php -------------------------------------------------------------------------------- /src/Repository/RateRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/RateRepository.php -------------------------------------------------------------------------------- /src/Repository/SearchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/SearchRepository.php -------------------------------------------------------------------------------- /src/Repository/TagRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/TagRepository.php -------------------------------------------------------------------------------- /src/Repository/ThemeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ThemeRepository.php -------------------------------------------------------------------------------- /src/Repository/UpgradeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UpgradeRepository.php -------------------------------------------------------------------------------- /src/Repository/UserCacheAlbumRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserCacheAlbumRepository.php -------------------------------------------------------------------------------- /src/Repository/UserCacheRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserCacheRepository.php -------------------------------------------------------------------------------- /src/Repository/UserFeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserFeedRepository.php -------------------------------------------------------------------------------- /src/Repository/UserInfosRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserInfosRepository.php -------------------------------------------------------------------------------- /src/Repository/UserMailNotificationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserMailNotificationRepository.php -------------------------------------------------------------------------------- /src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /src/Repository/ValidatedConditionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Repository/ValidatedConditionTrait.php -------------------------------------------------------------------------------- /src/Resources/help/AssetsInstallCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Resources/help/AssetsInstallCommand.txt -------------------------------------------------------------------------------- /src/Resources/help/InstallCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Resources/help/InstallCommand.txt -------------------------------------------------------------------------------- /src/Resources/help/UserCreateCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Resources/help/UserCreateCommand.txt -------------------------------------------------------------------------------- /src/Resources/help/UserListCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Resources/help/UserListCommand.txt -------------------------------------------------------------------------------- /src/Security/AppUserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Security/AppUserService.php -------------------------------------------------------------------------------- /src/Security/LoginFormAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Security/LoginFormAuthenticator.php -------------------------------------------------------------------------------- /src/Security/TagVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Security/TagVoter.php -------------------------------------------------------------------------------- /src/Security/UserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Security/UserProvider.php -------------------------------------------------------------------------------- /src/Services/AssetsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Services/AssetsManager.php -------------------------------------------------------------------------------- /src/Services/DerivativeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Services/DerivativeService.php -------------------------------------------------------------------------------- /src/Services/MimeTypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Services/MimeTypeGuesser.php -------------------------------------------------------------------------------- /src/State/AddImagesToCaddieProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/State/AddImagesToCaddieProcessor.php -------------------------------------------------------------------------------- /src/Twig/DerivativeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Twig/DerivativeExtension.php -------------------------------------------------------------------------------- /src/Twig/PhyxoAssetExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Twig/PhyxoAssetExtension.php -------------------------------------------------------------------------------- /src/Twig/PluginAssetExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Twig/PluginAssetExtension.php -------------------------------------------------------------------------------- /src/Twig/ThemeLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Twig/ThemeLoader.php -------------------------------------------------------------------------------- /src/UpdateKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/UpdateKernel.php -------------------------------------------------------------------------------- /src/Utils/DirectoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Utils/DirectoryManager.php -------------------------------------------------------------------------------- /src/Utils/RuntimeTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Utils/RuntimeTranslator.php -------------------------------------------------------------------------------- /src/Validator/SameAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Validator/SameAuthor.php -------------------------------------------------------------------------------- /src/Validator/SameAuthorValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/src/Validator/SameAuthorValidator.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/form/_theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/templates/form/_theme.html.twig -------------------------------------------------------------------------------- /tests/Behat/ApiContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Behat/ApiContext.php -------------------------------------------------------------------------------- /tests/Behat/BaseContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Behat/BaseContext.php -------------------------------------------------------------------------------- /tests/Behat/DBContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Behat/DBContext.php -------------------------------------------------------------------------------- /tests/Behat/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Behat/FeatureContext.php -------------------------------------------------------------------------------- /tests/Behat/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Behat/Storage.php -------------------------------------------------------------------------------- /tests/Command/UserCreateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Command/UserCreateCommandTest.php -------------------------------------------------------------------------------- /tests/Controller/MediaControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Controller/MediaControllerTest.php -------------------------------------------------------------------------------- /tests/DataMapper/AlbumMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/DataMapper/AlbumMapperTest.php -------------------------------------------------------------------------------- /tests/Factory/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Factory/ImageFactory.php -------------------------------------------------------------------------------- /tests/Factory/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Factory/UserFactory.php -------------------------------------------------------------------------------- /tests/Factory/UserInfosFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Factory/UserInfosFactory.php -------------------------------------------------------------------------------- /tests/Functional/AddImagesToCaddieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Functional/AddImagesToCaddieTest.php -------------------------------------------------------------------------------- /tests/Phyxo/ConfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/ConfTest.php -------------------------------------------------------------------------------- /tests/Phyxo/Image/ImageOptimizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/Image/ImageOptimizerTest.php -------------------------------------------------------------------------------- /tests/Phyxo/Image/ImageStandardParamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/Image/ImageStandardParamsTest.php -------------------------------------------------------------------------------- /tests/Phyxo/Language/LanguagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/Language/LanguagesTest.php -------------------------------------------------------------------------------- /tests/Phyxo/Plugin/PluginsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/Plugin/PluginsTest.php -------------------------------------------------------------------------------- /tests/Phyxo/Theme/ThemesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/Phyxo/Theme/ThemesTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/config/config_default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/config/config_default.inc.php -------------------------------------------------------------------------------- /tests/fixtures/media/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/media/img1.jpg -------------------------------------------------------------------------------- /tests/fixtures/media/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/media/img2.jpg -------------------------------------------------------------------------------- /tests/fixtures/media/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/media/sample.jpg -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin1/Plugin1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin1/Plugin1.php -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin1/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin2/Plugin2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin2/Plugin2.php -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin2/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin3/Plugin3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin3/Plugin3.php -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin3/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin3/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin3/description.en_GB.txt: -------------------------------------------------------------------------------- 1 | A simple description 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin4/Plugin4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin4/Plugin4.php -------------------------------------------------------------------------------- /tests/fixtures/plugins/Plugin4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/Plugin4/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugins/plugin_lowercase/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/plugin_lowercase/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/plugins/plugin_lowercase/plugin_lowercase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/plugin_lowercase/plugin_lowercase.php -------------------------------------------------------------------------------- /tests/fixtures/plugins/plugin_without_config/plugin_without_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/plugins/plugin_without_config/plugin_without_config.php -------------------------------------------------------------------------------- /tests/fixtures/themes/my theme dir with space/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/my theme dir with space/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/themes/theme1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/theme1/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/themes/theme2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/theme2/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/themes/theme3/about.en_GB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/theme3/about.en_GB.html -------------------------------------------------------------------------------- /tests/fixtures/themes/theme3/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/theme3/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/themes/theme3/description.en_GB.txt: -------------------------------------------------------------------------------- 1 | A simple description 2 | -------------------------------------------------------------------------------- /tests/fixtures/themes/theme4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/themes/theme4/config.yaml -------------------------------------------------------------------------------- /tests/fixtures/translations/messages+intl-icu.aa_AA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/translations/messages+intl-icu.aa_AA.php -------------------------------------------------------------------------------- /tests/fixtures/translations/messages+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/translations/messages+intl-icu.en_GB.php -------------------------------------------------------------------------------- /tests/fixtures/translations/messages+intl-icu.gg_GG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/translations/messages+intl-icu.gg_GG.php -------------------------------------------------------------------------------- /tests/fixtures/translations/messages+intl-icu.ss_SS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/translations/messages+intl-icu.ss_SS.php -------------------------------------------------------------------------------- /tests/fixtures/translations/messages+intl-icu.tt_TT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/translations/messages+intl-icu.tt_TT.php -------------------------------------------------------------------------------- /tests/fixtures/zip/myPlugin1-0.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/zip/myPlugin1-0.1.0.zip -------------------------------------------------------------------------------- /tests/fixtures/zip/myPlugin1-0.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tests/fixtures/zip/myPlugin1-0.2.0.zip -------------------------------------------------------------------------------- /themes/treflez/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/Config.php -------------------------------------------------------------------------------- /themes/treflez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/README.md -------------------------------------------------------------------------------- /themes/treflez/Treflez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/Treflez.php -------------------------------------------------------------------------------- /themes/treflez/admin/template/settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/admin/template/settings.html.twig -------------------------------------------------------------------------------- /themes/treflez/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/config.yaml -------------------------------------------------------------------------------- /themes/treflez/icon/mimetypes/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/icon/mimetypes/unknown.png -------------------------------------------------------------------------------- /themes/treflez/img/img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/img/img_small.png -------------------------------------------------------------------------------- /themes/treflez/img/play-circle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/img/play-circle-white.png -------------------------------------------------------------------------------- /themes/treflez/img/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/img/transparent.png -------------------------------------------------------------------------------- /themes/treflez/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/package-lock.json -------------------------------------------------------------------------------- /themes/treflez/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/package.json -------------------------------------------------------------------------------- /themes/treflez/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/postcss.config.js -------------------------------------------------------------------------------- /themes/treflez/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/screenshot.png -------------------------------------------------------------------------------- /themes/treflez/src/admin/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/admin/js/index.js -------------------------------------------------------------------------------- /themes/treflez/src/admin/scss/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/admin/scss/admin.scss -------------------------------------------------------------------------------- /themes/treflez/src/js/grid-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/grid-view.js -------------------------------------------------------------------------------- /themes/treflez/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/index.js -------------------------------------------------------------------------------- /themes/treflez/src/js/jquery-mobile-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/jquery-mobile-events.js -------------------------------------------------------------------------------- /themes/treflez/src/js/jquery.awesomeCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/jquery.awesomeCloud.js -------------------------------------------------------------------------------- /themes/treflez/src/js/keyboard-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/keyboard-navigation.js -------------------------------------------------------------------------------- /themes/treflez/src/js/photoswipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/photoswipe.js -------------------------------------------------------------------------------- /themes/treflez/src/js/picture-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/picture-tags.js -------------------------------------------------------------------------------- /themes/treflez/src/js/picture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/picture.js -------------------------------------------------------------------------------- /themes/treflez/src/js/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/queue.js -------------------------------------------------------------------------------- /themes/treflez/src/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/search.js -------------------------------------------------------------------------------- /themes/treflez/src/js/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/slick.js -------------------------------------------------------------------------------- /themes/treflez/src/js/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/tags.js -------------------------------------------------------------------------------- /themes/treflez/src/js/thumbnails-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/thumbnails-loader.js -------------------------------------------------------------------------------- /themes/treflez/src/js/ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/js/ws.js -------------------------------------------------------------------------------- /themes/treflez/src/scss/_bootstrap-custom-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/_bootstrap-custom-variables.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/_bootstrap-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/_bootstrap-custom.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/_bootswatch_darkly.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/_bootswatch_darkly.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/_bootswatch_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/_bootswatch_variables.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/common/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/common/_fonts.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/common/_picture-info-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/common/_picture-info-sidebar.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/common/_variables.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/img/play-circle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/img/play-circle-white.png -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_base.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_calendar.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_carousel-fade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_carousel-fade.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_comments.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_index.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_navs.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_page-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_page-header.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_photoswipe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_photoswipe.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_picture-info-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_picture-info-sidebar.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_picture.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_picture.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_social-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_social-colors.scss -------------------------------------------------------------------------------- /themes/treflez/src/scss/theme/_tag-cloud.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/src/scss/theme/_tag-cloud.scss -------------------------------------------------------------------------------- /themes/treflez/template/403.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/403.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/404.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/404.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/__layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/__layout.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_albums.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_albums.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_breadcrumb.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_calendar_view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_calendar_view.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_category_nav.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_category_nav.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_comments_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_comments_list.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_infos_errors.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_infos_errors.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_macro.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_macro.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_menubar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_menubar.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_navigation_bar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_navigation_bar.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_content.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_info_cards.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_info_cards.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_info_comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_info_comments.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_info_sidebar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_info_sidebar.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_info_tabs.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_info_tabs.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_nav.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_nav.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_nav_buttons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_nav_buttons.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_picture_tags.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_picture_tags.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_slick_js.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_slick_js.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/_thumbnails.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/_thumbnails.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/about.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/about.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/calendar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/calendar.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/calendar_by_day.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/calendar_by_day.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/calendar_by_month.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/calendar_by_month.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/calendar_by_year.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/calendar_by_year.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/comments.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/forgot_password.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/forgot_password.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/identification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/identification.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/mainpage_categories.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/mainpage_categories.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_categories.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_categories.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_identification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_identification.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_links.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_links.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_menu.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_specials.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_specials.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/menubar_tags.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/menubar_tags.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/notification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/notification.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/picture.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/picture.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/profile.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/profile.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/register.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/reset_password.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/reset_password.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/search.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/search_rules.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/search_rules.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/tags.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/tags.html.twig -------------------------------------------------------------------------------- /themes/treflez/template/thumbnails.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/template/thumbnails.html.twig -------------------------------------------------------------------------------- /themes/treflez/translations/admin+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/translations/admin+intl-icu.en_GB.php -------------------------------------------------------------------------------- /themes/treflez/translations/admin+intl-icu.fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/translations/admin+intl-icu.fr_FR.php -------------------------------------------------------------------------------- /themes/treflez/translations/messages+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/translations/messages+intl-icu.en_GB.php -------------------------------------------------------------------------------- /themes/treflez/translations/messages+intl-icu.fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/translations/messages+intl-icu.fr_FR.php -------------------------------------------------------------------------------- /themes/treflez/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/themes/treflez/webpack.config.js -------------------------------------------------------------------------------- /tools/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tools/.htaccess -------------------------------------------------------------------------------- /tools/php-8-ready.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tools/php-8-ready.svg -------------------------------------------------------------------------------- /tools/phpstan-doctrine-orm-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tools/phpstan-doctrine-orm-bootstrap.php -------------------------------------------------------------------------------- /tools/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/tools/prepare.sh -------------------------------------------------------------------------------- /translations/admin+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/admin+intl-icu.en_GB.php -------------------------------------------------------------------------------- /translations/admin+intl-icu.fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/admin+intl-icu.fr_FR.php -------------------------------------------------------------------------------- /translations/install+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/install+intl-icu.en_GB.php -------------------------------------------------------------------------------- /translations/install+intl-icu.fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/install+intl-icu.fr_FR.php -------------------------------------------------------------------------------- /translations/messages+intl-icu.en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/messages+intl-icu.en_GB.php -------------------------------------------------------------------------------- /translations/messages+intl-icu.fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikrou/phyxo/HEAD/translations/messages+intl-icu.fr_FR.php --------------------------------------------------------------------------------