├── acpcleanup ├── acp │ ├── main_info.php │ └── main_module.php ├── adm │ └── style │ │ ├── gallery_cleanup.html │ │ └── index.htm ├── cleanup.php ├── composer.json ├── config │ └── services.yml ├── ext.php ├── language │ ├── bg │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php │ ├── de │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php │ ├── en │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php │ ├── fr │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php │ ├── it │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php │ └── ru │ │ ├── index.htm │ │ └── info_acp_gallery_cleanup.php ├── license.txt └── migrations │ └── m1_init.php ├── acpimport ├── acp │ ├── main_info.php │ └── main_module.php ├── adm │ └── style │ │ ├── gallery_acpimport.html │ │ └── index.htm ├── composer.json ├── ext.php ├── language │ ├── bg │ │ ├── index.htm │ │ └── info_acp_gallery_import.php │ ├── de │ │ ├── index.htm │ │ └── info_acp_gallery_import.php │ ├── en │ │ ├── index.htm │ │ └── info_acp_gallery_import.php │ ├── fr │ │ ├── index.htm │ │ └── info_acp_gallery_import.php │ ├── it │ │ ├── index.htm │ │ └── info_acp_gallery_import.php │ └── ru │ │ ├── index.htm │ │ └── info_acp_gallery_import.php ├── license.txt └── migrations │ └── m1_init.php ├── core ├── acp │ ├── albums_info.php │ ├── albums_module.php │ ├── config_info.php │ ├── config_module.php │ ├── gallery_logs_info.php │ ├── gallery_logs_module.php │ ├── main_info.php │ ├── main_module.php │ ├── permissions_info.php │ └── permissions_module.php ├── adm │ ├── index.htm │ └── style │ │ ├── gallery_albums.html │ │ ├── gallery_logs.html │ │ ├── gallery_main.html │ │ ├── gallery_permissions.html │ │ └── index.htm ├── album │ ├── album.php │ ├── display.php │ ├── loader.php │ └── manage.php ├── auth │ ├── auth.php │ ├── level.php │ └── set.php ├── block.bkp ├── block.php ├── cache.php ├── comment.php ├── composer.json ├── config.php ├── config │ ├── routing.yml │ ├── services.yml │ ├── services_controller.yml │ ├── services_files.yml │ ├── services_notification_types.yml │ └── tables.yml ├── constants.php ├── contest.php ├── controller │ ├── album.php │ ├── comment.php │ ├── file.php │ ├── image.php │ ├── index.php │ ├── moderate.php │ ├── search.php │ └── upload.php ├── cron │ └── cron_cleaner.php ├── docs │ └── tables.md ├── event │ └── main_listener.php ├── ext.php ├── file │ ├── file.php │ └── types │ │ └── multiform.php ├── image │ └── image.php ├── images │ ├── icon_delete.gif │ ├── icon_delete_disabled.gif │ ├── icon_down.gif │ ├── icon_down_disabled.gif │ ├── icon_edit.gif │ ├── icon_edit_disabled.gif │ ├── icon_up.gif │ ├── icon_up_disabled.gif │ ├── legacy │ │ └── watermark.png │ ├── upload │ │ ├── image_not_exist.jpg │ │ ├── index.htm │ │ ├── no_hotlinking.jpg │ │ └── not_authorised.jpg │ └── watermark.png ├── language │ ├── bg │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── index.htm │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── de │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── index.htm │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── en │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── es │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── fr │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── it │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ ├── nl │ │ ├── email │ │ │ ├── newcomment_notify.txt │ │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php │ └── ru │ │ ├── email │ │ ├── newcomment_notify.txt │ │ └── newimage_notify.txt │ │ ├── gallery.php │ │ ├── gallery_acp.php │ │ ├── gallery_mcp.php │ │ ├── gallery_notifications.php │ │ ├── gallery_ucp.php │ │ ├── info_acp_gallery.php │ │ ├── info_acp_gallery_logs.php │ │ ├── info_ucp_gallery.php │ │ ├── install_gallery.php │ │ └── permissions_gallery.php ├── license.txt ├── log.php ├── migrations │ ├── release_1_2_0.php │ ├── release_1_2_0_add_bbcode.php │ ├── release_1_2_0_create_filesystem.php │ ├── release_1_2_0_db_create.php │ ├── release_3_2_1_0.php │ ├── release_3_2_1_1.php │ ├── release_3_3_0.php │ ├── release_3_4_0.php │ └── split_ucp_module_settings.php ├── misc.php ├── moderate.php ├── notification.php ├── notification │ ├── events │ │ ├── phpbbgallery_image_approved.php │ │ ├── phpbbgallery_image_for_approval.php │ │ ├── phpbbgallery_image_not_approved.php │ │ ├── phpbbgallery_new_comment.php │ │ ├── phpbbgallery_new_image.php │ │ └── phpbbgallery_new_report.php │ └── helper.php ├── rating.php ├── report.php ├── search.php ├── styles │ ├── all │ │ ├── template │ │ │ ├── event │ │ │ │ ├── overall_footer_after.html │ │ │ │ └── overall_header_head_append.html │ │ │ └── js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.fileupload-angular.js │ │ │ │ ├── jquery.fileupload-audio.js │ │ │ │ ├── jquery.fileupload-image.js │ │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ │ ├── jquery.fileupload-process.js │ │ │ │ ├── jquery.fileupload-ui.js │ │ │ │ ├── jquery.fileupload-validate.js │ │ │ │ ├── jquery.fileupload-video.js │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ ├── load-image.all.min.js │ │ │ │ └── load-image.all.min.js.map │ │ └── theme │ │ │ ├── default.css │ │ │ └── images │ │ │ └── icon_contact_gallery.png │ └── prosilver │ │ ├── template │ │ ├── event │ │ │ ├── index_body_block_stats_append.html │ │ │ ├── memberlist_view_content_append.html │ │ │ ├── memberlist_view_user_statistics_after.html │ │ │ ├── navbar_header_user_profile_prepend.html │ │ │ ├── overall_header_head_append.html │ │ │ └── overall_header_navigation_prepend.html │ │ ├── gallery │ │ │ ├── album_body.html │ │ │ ├── albumlist_body.html │ │ │ ├── albumlist_polaroid.html │ │ │ ├── comment_body.html │ │ │ ├── gallery.js │ │ │ ├── gallery_footer.html │ │ │ ├── gallery_header.html │ │ │ ├── image_edit_body.html │ │ │ ├── imageblock_body.html │ │ │ ├── imageblock_polaroid.html │ │ │ ├── imageblock_popup.html │ │ │ ├── index_body.html │ │ │ ├── mcp_approve.html │ │ │ ├── mcp_body.html │ │ │ ├── message.html │ │ │ ├── moderate_actions.html │ │ │ ├── moderate_actions_queue.html │ │ │ ├── moderate_album_overview.html │ │ │ ├── moderate_approve.html │ │ │ ├── moderate_approve_queue.html │ │ │ ├── moderate_image_overview.html │ │ │ ├── moderate_overview.html │ │ │ ├── moderate_report_queue.html │ │ │ ├── moderate_reports.html │ │ │ ├── plugins_header.html │ │ │ ├── posting_body.html │ │ │ ├── posting_javascript.html │ │ │ ├── recent_body.html │ │ │ ├── search_body.html │ │ │ ├── search_random.html │ │ │ ├── search_recent.html │ │ │ ├── search_results.html │ │ │ ├── ucp_gallery.html │ │ │ └── viewimage_body.html │ │ └── message_body.html │ │ └── theme │ │ ├── gallery-color.css │ │ ├── gallery.css │ │ └── images │ │ ├── icon_contact_gallery.gif │ │ ├── icon_gallery_locked.gif │ │ ├── icon_gallery_reported.gif │ │ ├── icon_gallery_unapproved.gif │ │ ├── icon_topic_unapproved.png │ │ └── lock.png ├── ucp │ ├── main_info.php │ ├── main_module.php │ ├── settings_info.php │ └── settings_module.php ├── upload.php ├── url.php └── user.php └── exif ├── composer.json ├── config └── services.yml ├── event └── exif_listener.php ├── exif.php ├── ext.php ├── language ├── bg │ ├── index.htm │ └── info_exif.php ├── de │ ├── index.htm │ └── info_exif.php ├── en │ ├── index.htm │ └── info_exif.php ├── fr │ ├── index.htm │ └── info_exif.php ├── it │ ├── index.htm │ └── info_exif.php └── ru │ ├── index.htm │ └── info_exif.php ├── license.txt ├── migrations ├── m1_init.php └── m2_fix_exif_field.php └── styles └── prosilver └── template └── event ├── gallery_ucp_settings_fieldset.html ├── gallery_viewimage_details.bkp └── gallery_viewimage_details.html /acpcleanup/acp/main_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/acp/main_info.php -------------------------------------------------------------------------------- /acpcleanup/acp/main_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/acp/main_module.php -------------------------------------------------------------------------------- /acpcleanup/adm/style/gallery_cleanup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/adm/style/gallery_cleanup.html -------------------------------------------------------------------------------- /acpcleanup/adm/style/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/cleanup.php -------------------------------------------------------------------------------- /acpcleanup/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/composer.json -------------------------------------------------------------------------------- /acpcleanup/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/config/services.yml -------------------------------------------------------------------------------- /acpcleanup/ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/ext.php -------------------------------------------------------------------------------- /acpcleanup/language/bg/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/bg/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/bg/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/language/de/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/de/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/de/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/language/en/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/en/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/en/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/language/fr/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/fr/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/fr/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/language/it/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/it/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/it/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/language/ru/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpcleanup/language/ru/info_acp_gallery_cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/language/ru/info_acp_gallery_cleanup.php -------------------------------------------------------------------------------- /acpcleanup/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/license.txt -------------------------------------------------------------------------------- /acpcleanup/migrations/m1_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpcleanup/migrations/m1_init.php -------------------------------------------------------------------------------- /acpimport/acp/main_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/acp/main_info.php -------------------------------------------------------------------------------- /acpimport/acp/main_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/acp/main_module.php -------------------------------------------------------------------------------- /acpimport/adm/style/gallery_acpimport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/adm/style/gallery_acpimport.html -------------------------------------------------------------------------------- /acpimport/adm/style/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/composer.json -------------------------------------------------------------------------------- /acpimport/ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/ext.php -------------------------------------------------------------------------------- /acpimport/language/bg/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/bg/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/bg/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/language/de/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/de/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/de/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/language/en/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/en/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/en/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/language/fr/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/fr/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/fr/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/language/it/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/it/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/it/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/language/ru/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acpimport/language/ru/info_acp_gallery_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/language/ru/info_acp_gallery_import.php -------------------------------------------------------------------------------- /acpimport/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/license.txt -------------------------------------------------------------------------------- /acpimport/migrations/m1_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/acpimport/migrations/m1_init.php -------------------------------------------------------------------------------- /core/acp/albums_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/albums_info.php -------------------------------------------------------------------------------- /core/acp/albums_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/albums_module.php -------------------------------------------------------------------------------- /core/acp/config_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/config_info.php -------------------------------------------------------------------------------- /core/acp/config_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/config_module.php -------------------------------------------------------------------------------- /core/acp/gallery_logs_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/gallery_logs_info.php -------------------------------------------------------------------------------- /core/acp/gallery_logs_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/gallery_logs_module.php -------------------------------------------------------------------------------- /core/acp/main_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/main_info.php -------------------------------------------------------------------------------- /core/acp/main_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/main_module.php -------------------------------------------------------------------------------- /core/acp/permissions_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/permissions_info.php -------------------------------------------------------------------------------- /core/acp/permissions_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/acp/permissions_module.php -------------------------------------------------------------------------------- /core/adm/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/adm/style/gallery_albums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/adm/style/gallery_albums.html -------------------------------------------------------------------------------- /core/adm/style/gallery_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/adm/style/gallery_logs.html -------------------------------------------------------------------------------- /core/adm/style/gallery_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/adm/style/gallery_main.html -------------------------------------------------------------------------------- /core/adm/style/gallery_permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/adm/style/gallery_permissions.html -------------------------------------------------------------------------------- /core/adm/style/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/album/album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/album/album.php -------------------------------------------------------------------------------- /core/album/display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/album/display.php -------------------------------------------------------------------------------- /core/album/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/album/loader.php -------------------------------------------------------------------------------- /core/album/manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/album/manage.php -------------------------------------------------------------------------------- /core/auth/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/auth/auth.php -------------------------------------------------------------------------------- /core/auth/level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/auth/level.php -------------------------------------------------------------------------------- /core/auth/set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/auth/set.php -------------------------------------------------------------------------------- /core/block.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/block.bkp -------------------------------------------------------------------------------- /core/block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/block.php -------------------------------------------------------------------------------- /core/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/cache.php -------------------------------------------------------------------------------- /core/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/comment.php -------------------------------------------------------------------------------- /core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/composer.json -------------------------------------------------------------------------------- /core/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config.php -------------------------------------------------------------------------------- /core/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/routing.yml -------------------------------------------------------------------------------- /core/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/services.yml -------------------------------------------------------------------------------- /core/config/services_controller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/services_controller.yml -------------------------------------------------------------------------------- /core/config/services_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/services_files.yml -------------------------------------------------------------------------------- /core/config/services_notification_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/services_notification_types.yml -------------------------------------------------------------------------------- /core/config/tables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/config/tables.yml -------------------------------------------------------------------------------- /core/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/constants.php -------------------------------------------------------------------------------- /core/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/contest.php -------------------------------------------------------------------------------- /core/controller/album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/album.php -------------------------------------------------------------------------------- /core/controller/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/comment.php -------------------------------------------------------------------------------- /core/controller/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/file.php -------------------------------------------------------------------------------- /core/controller/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/image.php -------------------------------------------------------------------------------- /core/controller/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/index.php -------------------------------------------------------------------------------- /core/controller/moderate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/moderate.php -------------------------------------------------------------------------------- /core/controller/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/search.php -------------------------------------------------------------------------------- /core/controller/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/controller/upload.php -------------------------------------------------------------------------------- /core/cron/cron_cleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/cron/cron_cleaner.php -------------------------------------------------------------------------------- /core/docs/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/docs/tables.md -------------------------------------------------------------------------------- /core/event/main_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/event/main_listener.php -------------------------------------------------------------------------------- /core/ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/ext.php -------------------------------------------------------------------------------- /core/file/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/file/file.php -------------------------------------------------------------------------------- /core/file/types/multiform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/file/types/multiform.php -------------------------------------------------------------------------------- /core/image/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/image/image.php -------------------------------------------------------------------------------- /core/images/icon_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_delete.gif -------------------------------------------------------------------------------- /core/images/icon_delete_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_delete_disabled.gif -------------------------------------------------------------------------------- /core/images/icon_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_down.gif -------------------------------------------------------------------------------- /core/images/icon_down_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_down_disabled.gif -------------------------------------------------------------------------------- /core/images/icon_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_edit.gif -------------------------------------------------------------------------------- /core/images/icon_edit_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_edit_disabled.gif -------------------------------------------------------------------------------- /core/images/icon_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_up.gif -------------------------------------------------------------------------------- /core/images/icon_up_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/icon_up_disabled.gif -------------------------------------------------------------------------------- /core/images/legacy/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/legacy/watermark.png -------------------------------------------------------------------------------- /core/images/upload/image_not_exist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/upload/image_not_exist.jpg -------------------------------------------------------------------------------- /core/images/upload/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/images/upload/no_hotlinking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/upload/no_hotlinking.jpg -------------------------------------------------------------------------------- /core/images/upload/not_authorised.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/upload/not_authorised.jpg -------------------------------------------------------------------------------- /core/images/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/images/watermark.png -------------------------------------------------------------------------------- /core/language/bg/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/bg/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/bg/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/gallery.php -------------------------------------------------------------------------------- /core/language/bg/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/gallery_acp.php -------------------------------------------------------------------------------- /core/language/bg/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/bg/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/bg/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/bg/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/language/bg/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/bg/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/bg/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/bg/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/install_gallery.php -------------------------------------------------------------------------------- /core/language/bg/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/bg/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/de/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/de/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/de/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/gallery.php -------------------------------------------------------------------------------- /core/language/de/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/gallery_acp.php -------------------------------------------------------------------------------- /core/language/de/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/de/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/de/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/de/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/language/de/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/de/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/de/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/de/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/install_gallery.php -------------------------------------------------------------------------------- /core/language/de/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/de/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/en/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/en/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/en/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/gallery.php -------------------------------------------------------------------------------- /core/language/en/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/gallery_acp.php -------------------------------------------------------------------------------- /core/language/en/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/en/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/en/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/en/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/en/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/en/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/en/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/install_gallery.php -------------------------------------------------------------------------------- /core/language/en/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/en/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/es/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/es/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/es/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/gallery.php -------------------------------------------------------------------------------- /core/language/es/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/gallery_acp.php -------------------------------------------------------------------------------- /core/language/es/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/es/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/es/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/es/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/es/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/es/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/es/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/install_gallery.php -------------------------------------------------------------------------------- /core/language/es/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/es/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/fr/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/fr/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/fr/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/gallery.php -------------------------------------------------------------------------------- /core/language/fr/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/gallery_acp.php -------------------------------------------------------------------------------- /core/language/fr/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/fr/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/fr/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/fr/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/fr/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/fr/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/fr/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/install_gallery.php -------------------------------------------------------------------------------- /core/language/fr/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/fr/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/it/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/it/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/it/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/gallery.php -------------------------------------------------------------------------------- /core/language/it/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/gallery_acp.php -------------------------------------------------------------------------------- /core/language/it/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/it/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/it/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/it/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/it/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/it/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/it/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/install_gallery.php -------------------------------------------------------------------------------- /core/language/it/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/it/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/nl/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/nl/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/nl/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/gallery.php -------------------------------------------------------------------------------- /core/language/nl/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/gallery_acp.php -------------------------------------------------------------------------------- /core/language/nl/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/nl/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/nl/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/nl/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/nl/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/nl/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/nl/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/install_gallery.php -------------------------------------------------------------------------------- /core/language/nl/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/nl/permissions_gallery.php -------------------------------------------------------------------------------- /core/language/ru/email/newcomment_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/email/newcomment_notify.txt -------------------------------------------------------------------------------- /core/language/ru/email/newimage_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/email/newimage_notify.txt -------------------------------------------------------------------------------- /core/language/ru/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/gallery.php -------------------------------------------------------------------------------- /core/language/ru/gallery_acp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/gallery_acp.php -------------------------------------------------------------------------------- /core/language/ru/gallery_mcp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/gallery_mcp.php -------------------------------------------------------------------------------- /core/language/ru/gallery_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/gallery_notifications.php -------------------------------------------------------------------------------- /core/language/ru/gallery_ucp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/gallery_ucp.php -------------------------------------------------------------------------------- /core/language/ru/info_acp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/info_acp_gallery.php -------------------------------------------------------------------------------- /core/language/ru/info_acp_gallery_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/info_acp_gallery_logs.php -------------------------------------------------------------------------------- /core/language/ru/info_ucp_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/info_ucp_gallery.php -------------------------------------------------------------------------------- /core/language/ru/install_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/install_gallery.php -------------------------------------------------------------------------------- /core/language/ru/permissions_gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/language/ru/permissions_gallery.php -------------------------------------------------------------------------------- /core/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/license.txt -------------------------------------------------------------------------------- /core/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/log.php -------------------------------------------------------------------------------- /core/migrations/release_1_2_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_1_2_0.php -------------------------------------------------------------------------------- /core/migrations/release_1_2_0_add_bbcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_1_2_0_add_bbcode.php -------------------------------------------------------------------------------- /core/migrations/release_1_2_0_create_filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_1_2_0_create_filesystem.php -------------------------------------------------------------------------------- /core/migrations/release_1_2_0_db_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_1_2_0_db_create.php -------------------------------------------------------------------------------- /core/migrations/release_3_2_1_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_3_2_1_0.php -------------------------------------------------------------------------------- /core/migrations/release_3_2_1_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_3_2_1_1.php -------------------------------------------------------------------------------- /core/migrations/release_3_3_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_3_3_0.php -------------------------------------------------------------------------------- /core/migrations/release_3_4_0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/release_3_4_0.php -------------------------------------------------------------------------------- /core/migrations/split_ucp_module_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/migrations/split_ucp_module_settings.php -------------------------------------------------------------------------------- /core/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/misc.php -------------------------------------------------------------------------------- /core/moderate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/moderate.php -------------------------------------------------------------------------------- /core/notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_image_approved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_image_approved.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_image_for_approval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_image_for_approval.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_image_not_approved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_image_not_approved.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_new_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_new_comment.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_new_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_new_image.php -------------------------------------------------------------------------------- /core/notification/events/phpbbgallery_new_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/events/phpbbgallery_new_report.php -------------------------------------------------------------------------------- /core/notification/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/notification/helper.php -------------------------------------------------------------------------------- /core/rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/rating.php -------------------------------------------------------------------------------- /core/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/report.php -------------------------------------------------------------------------------- /core/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/search.php -------------------------------------------------------------------------------- /core/styles/all/template/event/overall_footer_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/event/overall_footer_after.html -------------------------------------------------------------------------------- /core/styles/all/template/event/overall_header_head_append.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery-ui.min.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-angular.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-audio.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-image.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-jquery-ui.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-process.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-ui.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-validate.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload-video.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.fileupload.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.iframe-transport.js -------------------------------------------------------------------------------- /core/styles/all/template/js/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/jquery.ui.widget.js -------------------------------------------------------------------------------- /core/styles/all/template/js/load-image.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/load-image.all.min.js -------------------------------------------------------------------------------- /core/styles/all/template/js/load-image.all.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/template/js/load-image.all.min.js.map -------------------------------------------------------------------------------- /core/styles/all/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/theme/default.css -------------------------------------------------------------------------------- /core/styles/all/theme/images/icon_contact_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/all/theme/images/icon_contact_gallery.png -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/index_body_block_stats_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/index_body_block_stats_append.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/memberlist_view_content_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/memberlist_view_content_append.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/memberlist_view_user_statistics_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/memberlist_view_user_statistics_after.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/navbar_header_user_profile_prepend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/navbar_header_user_profile_prepend.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/overall_header_head_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/overall_header_head_append.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/event/overall_header_navigation_prepend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/event/overall_header_navigation_prepend.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/album_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/album_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/albumlist_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/albumlist_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/albumlist_polaroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/albumlist_polaroid.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/comment_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/comment_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/gallery.js -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/gallery_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/gallery_footer.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/gallery_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/gallery_header.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/image_edit_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/image_edit_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/imageblock_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/imageblock_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/imageblock_polaroid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/imageblock_polaroid.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/imageblock_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/imageblock_popup.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/index_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/index_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/mcp_approve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/mcp_approve.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/mcp_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/mcp_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/message.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_actions.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_actions_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_actions_queue.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_album_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_album_overview.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_approve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_approve.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_approve_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_approve_queue.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_image_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_image_overview.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_overview.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_report_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_report_queue.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/moderate_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/moderate_reports.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/plugins_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/plugins_header.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/posting_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/posting_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/posting_javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/posting_javascript.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/recent_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/recent_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/search_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/search_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/search_random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/search_random.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/search_recent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/search_recent.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/search_results.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/ucp_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/ucp_gallery.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/gallery/viewimage_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/gallery/viewimage_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/template/message_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/template/message_body.html -------------------------------------------------------------------------------- /core/styles/prosilver/theme/gallery-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/gallery-color.css -------------------------------------------------------------------------------- /core/styles/prosilver/theme/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/gallery.css -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/icon_contact_gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/icon_contact_gallery.gif -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/icon_gallery_locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/icon_gallery_locked.gif -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/icon_gallery_reported.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/icon_gallery_reported.gif -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/icon_gallery_unapproved.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/icon_gallery_unapproved.gif -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/icon_topic_unapproved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/icon_topic_unapproved.png -------------------------------------------------------------------------------- /core/styles/prosilver/theme/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/styles/prosilver/theme/images/lock.png -------------------------------------------------------------------------------- /core/ucp/main_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/ucp/main_info.php -------------------------------------------------------------------------------- /core/ucp/main_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/ucp/main_module.php -------------------------------------------------------------------------------- /core/ucp/settings_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/ucp/settings_info.php -------------------------------------------------------------------------------- /core/ucp/settings_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/ucp/settings_module.php -------------------------------------------------------------------------------- /core/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/upload.php -------------------------------------------------------------------------------- /core/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/url.php -------------------------------------------------------------------------------- /core/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/core/user.php -------------------------------------------------------------------------------- /exif/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/composer.json -------------------------------------------------------------------------------- /exif/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/config/services.yml -------------------------------------------------------------------------------- /exif/event/exif_listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/event/exif_listener.php -------------------------------------------------------------------------------- /exif/exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/exif.php -------------------------------------------------------------------------------- /exif/ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/ext.php -------------------------------------------------------------------------------- /exif/language/bg/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/bg/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/bg/info_exif.php -------------------------------------------------------------------------------- /exif/language/de/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/de/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/de/info_exif.php -------------------------------------------------------------------------------- /exif/language/en/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/en/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/en/info_exif.php -------------------------------------------------------------------------------- /exif/language/fr/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/fr/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/fr/info_exif.php -------------------------------------------------------------------------------- /exif/language/it/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/it/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/it/info_exif.php -------------------------------------------------------------------------------- /exif/language/ru/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exif/language/ru/info_exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/language/ru/info_exif.php -------------------------------------------------------------------------------- /exif/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/license.txt -------------------------------------------------------------------------------- /exif/migrations/m1_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/migrations/m1_init.php -------------------------------------------------------------------------------- /exif/migrations/m2_fix_exif_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/migrations/m2_fix_exif_field.php -------------------------------------------------------------------------------- /exif/styles/prosilver/template/event/gallery_ucp_settings_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/styles/prosilver/template/event/gallery_ucp_settings_fieldset.html -------------------------------------------------------------------------------- /exif/styles/prosilver/template/event/gallery_viewimage_details.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/styles/prosilver/template/event/gallery_viewimage_details.bkp -------------------------------------------------------------------------------- /exif/styles/prosilver/template/event/gallery_viewimage_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanasov/phpbbgallery/HEAD/exif/styles/prosilver/template/event/gallery_viewimage_details.html --------------------------------------------------------------------------------