├── .env ├── .env.dev ├── .env.test ├── .gitignore ├── .htaccess ├── COPYING.txt ├── LICENSE ├── README.md ├── app ├── code │ ├── ForumSuite │ │ ├── CHANGELOG.md │ │ ├── ExcellenceBundle │ │ │ ├── CHANGELOG.md │ │ │ ├── DependencyInjection │ │ │ │ └── ForumSuiteExcellenceExtension.php │ │ │ ├── ForumSuiteExcellenceBundle.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ ├── config │ │ │ │ │ └── services.yaml │ │ │ │ └── translations │ │ │ │ │ ├── messages.ar.yaml │ │ │ │ │ └── messages.en.yaml │ │ │ └── composer.json │ │ ├── ForumBundle │ │ │ ├── Block │ │ │ │ ├── Cms │ │ │ │ │ └── Categories.php │ │ │ │ └── User │ │ │ │ │ └── LastUsers.php │ │ │ ├── CHANGELOG.md │ │ │ ├── DependencyInjection │ │ │ │ └── ForumSuiteForumExtension.php │ │ │ ├── ForumSuiteForumBundle.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ ├── config │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── system.yaml │ │ │ │ │ └── services.yaml │ │ │ │ ├── public │ │ │ │ │ └── images │ │ │ │ │ │ ├── login.png │ │ │ │ │ │ ├── online.png │ │ │ │ │ │ └── viewers-white.png │ │ │ │ ├── translations │ │ │ │ │ ├── messages.ar.yaml │ │ │ │ │ └── messages.en.yaml │ │ │ │ └── views │ │ │ │ │ └── frontend │ │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ └── _forums.scss │ │ │ │ │ ├── layout │ │ │ │ │ └── cms_index_index.yaml │ │ │ │ │ └── templates │ │ │ │ │ ├── cms │ │ │ │ │ └── forums.html.twig │ │ │ │ │ └── user │ │ │ │ │ ├── last_users.html.twig │ │ │ │ │ └── login.html.twig │ │ │ └── composer.json │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ └── ProgramCms │ │ ├── AclBundle │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ └── Role │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── NewController.php │ │ │ │ └── SaveController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAclExtension.php │ │ ├── Entity │ │ │ ├── Permission.php │ │ │ └── Role.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── AclSerializer.php │ │ │ ├── Provider │ │ │ │ ├── Button │ │ │ │ │ └── Role │ │ │ │ │ │ ├── Back.php │ │ │ │ │ │ ├── NewButton.php │ │ │ │ │ │ └── Save.php │ │ │ │ ├── DataSource │ │ │ │ │ └── Acl │ │ │ │ │ │ ├── DataProvider.php │ │ │ │ │ │ └── Roles.php │ │ │ │ └── Listing │ │ │ │ │ ├── AdminRole │ │ │ │ │ └── DataProvider.php │ │ │ │ │ └── Role │ │ │ │ │ └── DataProvider.php │ │ │ └── ResourceModel │ │ │ │ └── Role │ │ │ │ └── Collection.php │ │ ├── ProgramCmsAclBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── PermissionRepository.php │ │ │ └── RoleRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ └── layout │ │ │ │ ├── acl_role_edit.layout.twig │ │ │ │ ├── acl_role_index.layout.twig │ │ │ │ ├── acl_role_new.layout.twig │ │ │ │ └── includes │ │ │ │ └── role_users.layout.twig │ │ ├── Security │ │ │ ├── AccessDeniedHandler.php │ │ │ └── PermissionVoter.php │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── Role │ │ │ │ └── Actions.php │ │ └── composer.json │ │ ├── AdminBundle │ │ ├── Block │ │ │ ├── Account │ │ │ │ ├── Login.php │ │ │ │ └── Navigation.php │ │ │ ├── Dashboard │ │ │ │ └── AdvancedReporting.php │ │ │ ├── Legal │ │ │ │ └── SiteUpdate.php │ │ │ ├── Page │ │ │ │ ├── Copyright.php │ │ │ │ └── Footer.php │ │ │ ├── Recovery │ │ │ │ └── Recovery.php │ │ │ └── Sidebar.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── CreateAdmin.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ ├── Dashboard │ │ │ │ └── IndexController.php │ │ │ │ ├── Index │ │ │ │ └── IndexController.php │ │ │ │ ├── Recovery │ │ │ │ └── IndexController.php │ │ │ │ ├── SystemAccount │ │ │ │ ├── IndexController.php │ │ │ │ ├── LogoutController.php │ │ │ │ └── SaveController.php │ │ │ │ ├── Tool │ │ │ │ └── CacheController.php │ │ │ │ └── User │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── NewController.php │ │ │ │ └── SaveController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAdminExtension.php │ │ ├── Entity │ │ │ ├── AdminUser.php │ │ │ └── Cache.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Migrations │ │ │ └── AdminWebsiteSetup.php │ │ ├── Model │ │ │ ├── Account │ │ │ │ └── DataProvider.php │ │ │ ├── Collection │ │ │ │ └── Account │ │ │ │ │ └── Collection.php │ │ │ ├── MenuConfigSerializer.php │ │ │ ├── Provider │ │ │ │ ├── Button │ │ │ │ │ ├── AdminUser │ │ │ │ │ │ ├── BackButton.php │ │ │ │ │ │ ├── NewButton.php │ │ │ │ │ │ └── SaveButton.php │ │ │ │ │ ├── Cache │ │ │ │ │ │ └── FlushCacheButton.php │ │ │ │ │ └── SaveAccountButton.php │ │ │ │ ├── DataSource │ │ │ │ │ └── ThemeSelector.php │ │ │ │ └── Listing │ │ │ │ │ ├── AdminUser │ │ │ │ │ └── DataProvider.php │ │ │ │ │ └── Cache │ │ │ │ │ └── DataProvider.php │ │ │ └── ResourceModel │ │ │ │ ├── AdminUser │ │ │ │ └── Collection.php │ │ │ │ └── Cache │ │ │ │ └── Collection.php │ │ ├── ProgramCmsAdminBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── AdminUserRepository.php │ │ │ └── CacheRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── discussion.png │ │ │ │ │ ├── down-arrow.png │ │ │ │ │ ├── flashes │ │ │ │ │ ├── danger.png │ │ │ │ │ └── success.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── menu.png │ │ │ │ │ ├── see.png │ │ │ │ │ ├── system.png │ │ │ │ │ ├── up-arrow.png │ │ │ │ │ └── updated-site.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ ├── messages.en.yaml │ │ │ │ ├── messages.es.yaml │ │ │ │ ├── messages.fr.yaml │ │ │ │ └── messages.zh.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ ├── _flashes.scss │ │ │ │ │ │ ├── _footer-admin.scss │ │ │ │ │ │ ├── _login-admin.scss │ │ │ │ │ │ ├── _main-admin.scss │ │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── BlinkMacSystemFont-Black.otf │ │ │ │ │ │ ├── BlinkMacSystemFont-Medium.otf │ │ │ │ │ │ └── BlinkMacSystemFont-Regular.otf │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ ├── report_controller.js │ │ │ │ │ └── sidebar_controller.js │ │ │ │ ├── layout │ │ │ │ ├── admin_dashboard_index.yaml │ │ │ │ ├── admin_index_index.yaml │ │ │ │ ├── admin_recovery_index.yaml │ │ │ │ ├── admin_systemaccount_index.yaml │ │ │ │ ├── admin_tool_cache.yaml │ │ │ │ ├── admin_user_edit.yaml │ │ │ │ ├── admin_user_index.yaml │ │ │ │ └── admin_user_new.yaml │ │ │ │ └── templates │ │ │ │ ├── admin_account_dropdown.html.twig │ │ │ │ ├── dashboard │ │ │ │ ├── advanced_reporting.html.twig │ │ │ │ └── home.html.twig │ │ │ │ ├── flashes.html.twig │ │ │ │ ├── footer.html.twig │ │ │ │ ├── links.html.twig │ │ │ │ ├── login.html.twig │ │ │ │ ├── recovery │ │ │ │ └── recovery.html.twig │ │ │ │ ├── sidebar.html.twig │ │ │ │ └── site_update.html.twig │ │ ├── Security │ │ │ └── LoginAuthenticator.php │ │ ├── Tests │ │ │ └── MenuConfigSerializerTest.php │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ ├── Cache │ │ │ │ └── Actions.php │ │ │ │ └── UserAdmin │ │ │ │ └── Actions.php │ │ └── composer.json │ │ ├── AdminChatBundle │ │ ├── Block │ │ │ ├── Call.php │ │ │ └── ChatWidget.php │ │ ├── CHANGELOG.md │ │ ├── Component │ │ │ └── Config │ │ │ │ └── StartServerButton.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ ├── Api │ │ │ │ ├── ConversationsController.php │ │ │ │ ├── MessagesController.php │ │ │ │ ├── NewMessageController.php │ │ │ │ ├── SearchController.php │ │ │ │ └── UsersConversation.php │ │ │ │ └── Call │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAdminChatExtension.php │ │ ├── Entity │ │ │ ├── AdminConversation.php │ │ │ └── AdminMessage.php │ │ ├── Helper │ │ │ ├── ConversationHelper.php │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── ProgramCmsAdminChatBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── AdminConversationRepository.php │ │ │ └── AdminMessageRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ ├── images │ │ │ │ │ ├── add_user.png │ │ │ │ │ ├── call.png │ │ │ │ │ ├── call │ │ │ │ │ │ ├── disable_audio.png │ │ │ │ │ │ ├── disable_camera.png │ │ │ │ │ │ ├── disconnect.png │ │ │ │ │ │ ├── enable_audio.png │ │ │ │ │ │ ├── enable_camera.png │ │ │ │ │ │ └── users.png │ │ │ │ │ ├── close_conversation.png │ │ │ │ │ └── new_message.png │ │ │ │ └── sounds │ │ │ │ │ ├── call.mp3 │ │ │ │ │ └── notification.mp3 │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ ├── _chat.scss │ │ │ │ │ │ └── _chat_call.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ ├── chat_call_controller.js │ │ │ │ │ └── chat_client_controller.js │ │ │ │ ├── layout │ │ │ │ ├── admin_chat_call_index.yaml │ │ │ │ └── default.yaml │ │ │ │ └── templates │ │ │ │ ├── call │ │ │ │ └── call.html.twig │ │ │ │ ├── chat_widget.html.twig │ │ │ │ └── config │ │ │ │ └── fields │ │ │ │ └── start_server.html.twig │ │ ├── composer.json │ │ └── server.js │ │ ├── AdminNotificationBundle │ │ ├── Block │ │ │ └── Notification.php │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAdminNotificationExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsAdminNotificationBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.zh.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ ├── _admin-notification.scss │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ └── default.yaml │ │ │ │ └── templates │ │ │ │ ├── admin_notifications.html.twig │ │ │ │ └── notification.html.twig │ │ └── composer.json │ │ ├── AdsenseBundle │ │ ├── Block │ │ │ └── Adsense.php │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAdsenseExtension.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── LICENSE │ │ ├── ProgramCmsAdsenseBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ ├── default.yaml │ │ │ │ └── post_index_view.yaml │ │ │ │ └── templates │ │ │ │ ├── adsense.html.twig │ │ │ │ └── post │ │ │ │ └── ads.html.twig │ │ └── composer.json │ │ ├── AiBundle │ │ ├── CHANGELOG.md │ │ ├── Decorator │ │ │ └── Block │ │ │ │ └── Page │ │ │ │ └── Copyright.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAiExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsAiBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ └── translations │ │ │ │ └── messages.ar.yaml │ │ └── composer.json │ │ ├── ApiBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsApiExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsApiBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yaml │ │ └── composer.json │ │ ├── AssistanceBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsAssistanceExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsAssistanceBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ └── default.yaml │ │ └── composer.json │ │ ├── BuilderBundle │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ └── Eav │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsBuilderExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsBuilderBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ └── layout │ │ │ │ └── builder_eav_index.layout.twig │ │ └── composer.json │ │ ├── CaptchaBundle │ │ ├── Block │ │ │ └── Captcha.php │ │ ├── CHANGELOG.md │ │ ├── Decorator │ │ │ └── Model │ │ │ │ └── Validation │ │ │ │ └── RegisterValidatorDecorator.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsCaptchaExtension.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── LICENSE │ │ ├── ProgramCmsCaptchaBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ └── user_account_register.yaml │ │ │ │ └── templates │ │ │ │ └── captcha.html.twig │ │ └── composer.json │ │ ├── CatalogBundle │ │ ├── App │ │ │ └── Eav │ │ │ │ └── CategoryEntityValue.php │ │ ├── Block │ │ │ ├── Category │ │ │ │ └── View.php │ │ │ └── CategoryTreeButtons.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ └── Category │ │ │ │ │ ├── AbstractCategoryController.php │ │ │ │ │ ├── AddController.php │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── RemoveController.php │ │ │ │ │ └── SaveController.php │ │ │ └── Category │ │ │ │ └── ViewController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsCatalogExtension.php │ │ ├── Entity │ │ │ ├── CategoryEavAttribute.php │ │ │ ├── CategoryEntity.php │ │ │ ├── CategoryEntityDatetime.php │ │ │ ├── CategoryEntityDecimal.php │ │ │ ├── CategoryEntityInt.php │ │ │ ├── CategoryEntityText.php │ │ │ └── CategoryEntityVarchar.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Migrations │ │ │ └── Category │ │ │ │ ├── CreateDefaultCategory.php │ │ │ │ ├── EditCategoryEav.php │ │ │ │ └── SetupEavModel.php │ │ ├── Model │ │ │ ├── Category │ │ │ │ └── DataProvider.php │ │ │ ├── Collection │ │ │ │ └── Category │ │ │ │ │ └── Collection.php │ │ │ └── Provider │ │ │ │ ├── Button │ │ │ │ └── Category │ │ │ │ │ ├── RemoveCategoryButton.php │ │ │ │ │ ├── ResetButton.php │ │ │ │ │ └── SaveCategoryButton.php │ │ │ │ └── DataSource │ │ │ │ ├── Category │ │ │ │ ├── Categories.php │ │ │ │ ├── RootCategories.php │ │ │ │ └── TreeDataProvider.php │ │ │ │ └── DisplayMode.php │ │ ├── ProgramCmsCatalogBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── CategoryEavAttributeRepository.php │ │ │ ├── CategoryEntityDatetimeRepository.php │ │ │ ├── CategoryEntityDecimalRepository.php │ │ │ ├── CategoryEntityIntRepository.php │ │ │ ├── CategoryEntityTextRepository.php │ │ │ ├── CategoryEntityVarcharRepository.php │ │ │ └── CategoryRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── acl.yaml │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── catalog.png │ │ │ │ │ ├── edit_category.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── locked_folder.png │ │ │ │ │ ├── reporting.png │ │ │ │ │ ├── settings.png │ │ │ │ │ └── top_users.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ │ ├── catalog_category_add.yaml │ │ │ │ │ ├── catalog_category_edit.yaml │ │ │ │ │ ├── catalog_category_index.yaml │ │ │ │ │ └── includes │ │ │ │ │ │ └── category_form.yaml │ │ │ │ └── templates │ │ │ │ │ └── tree_buttons.html.twig │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ └── _category.scss │ │ │ │ ├── layout │ │ │ │ └── catalog_category_view.yaml │ │ │ │ └── templates │ │ │ │ └── category │ │ │ │ └── navbar │ │ │ │ └── category_options.html.twig │ │ ├── Security │ │ │ └── CanEditCategoryVoter.php │ │ └── composer.json │ │ ├── CmsBundle │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ └── Page │ │ │ │ │ └── IndexController.php │ │ │ └── Index │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsCmsExtension.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── ProgramCmsCmsBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── messages.png │ │ │ │ │ └── notifications.png │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ ├── cms_index_index.yaml │ │ │ │ └── default.yaml │ │ └── composer.json │ │ ├── CommentBundle │ │ ├── Api │ │ │ └── CommentInterface.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ └── Index │ │ │ │ │ └── IndexController.php │ │ │ └── User │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsCommentExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsCommentBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ └── layout │ │ │ │ │ ├── comment_index_index.layout.twig │ │ │ │ │ └── user_index_edit.layout.twig │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ ├── comment_user_index.layout.twig │ │ │ │ └── default.layout.twig │ │ └── composer.json │ │ ├── ConfigBundle │ │ ├── App │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ │ ├── Source │ │ │ │ │ ├── BundledConfigSource.php │ │ │ │ │ └── RuntimeConfigSource.php │ │ │ │ └── Type │ │ │ │ │ ├── System.php │ │ │ │ │ └── System │ │ │ │ │ └── Reader.php │ │ │ ├── Context.php │ │ │ └── ScopeConfigInterface.php │ │ ├── Block │ │ │ └── ConfigTabs.php │ │ ├── CHANGELOG.md │ │ ├── Component │ │ │ └── ConfigForm.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ ├── AbstractConfigController.php │ │ │ │ └── SystemConfig │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── SaveController.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── ProgramCmsConfigExtension.php │ │ ├── Entity │ │ │ └── CoreConfigData.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Attribute │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Image.php │ │ │ │ └── Frontend │ │ │ │ │ ├── AbstractFrontend.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── FrontendInterface.php │ │ │ │ │ └── Image.php │ │ │ ├── Collection │ │ │ │ └── Collection.php │ │ │ ├── Config.php │ │ │ ├── ConfigSerializer.php │ │ │ ├── Loader.php │ │ │ ├── Provider │ │ │ │ └── Button │ │ │ │ │ └── SaveConfigButton.php │ │ │ ├── ScopeDefiner.php │ │ │ ├── Structure │ │ │ │ ├── AbstractElement.php │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractComposite.php │ │ │ │ │ ├── Field.php │ │ │ │ │ ├── FlyweightFactory.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── Iterator.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ ├── Section.php │ │ │ │ │ │ └── Tab.php │ │ │ │ │ ├── Section.php │ │ │ │ │ └── Tab.php │ │ │ │ └── ElementInterface.php │ │ │ └── StructureElementInterface.php │ │ ├── ProgramCmsConfigBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── CoreConfigDataRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── acl.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── down-arrow.png │ │ │ │ │ └── up-arrow.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ ├── messages.en.yaml │ │ │ │ ├── messages.es.yaml │ │ │ │ └── messages.fr.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ └── _menu.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ └── config-menu_controller.js │ │ │ │ ├── layout │ │ │ │ ├── config_systemconfig_edit.yaml │ │ │ │ └── config_systemconfig_index.yaml │ │ │ │ └── templates │ │ │ │ └── config_menu.html.twig │ │ └── composer.json │ │ ├── ContactBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsContactExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsContactBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ └── default.yaml │ │ └── composer.json │ │ ├── ContentBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsContentExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsContentBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ ├── css │ │ │ │ │ └── editor.css │ │ │ │ ├── images │ │ │ │ │ └── content.png │ │ │ │ └── js │ │ │ │ │ └── frontend │ │ │ │ │ └── editor.js │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ └── assets │ │ │ │ └── css │ │ │ │ └── source │ │ │ │ └── _bundle.scss │ │ └── composer.json │ │ ├── CoreBundle │ │ ├── Agent │ │ │ └── Detector.php │ │ ├── App │ │ │ ├── Area.php │ │ │ ├── AreaInterface.php │ │ │ ├── AreaList.php │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ │ ├── ConfigSourceAggregated.php │ │ │ │ ├── ConfigSourceInterface.php │ │ │ │ ├── ConfigTypeInterface.php │ │ │ │ ├── ConverterInterface.php │ │ │ │ ├── FileResolver.php │ │ │ │ ├── Initial │ │ │ │ │ └── Reader.php │ │ │ │ ├── InitialConfigSource.php │ │ │ │ ├── Scope │ │ │ │ │ └── Converter.php │ │ │ │ └── ScopeCodeResolver.php │ │ │ ├── DefaultScope.php │ │ │ ├── DeploymentConfig │ │ │ │ └── Reader.php │ │ │ ├── Kernel.php │ │ │ ├── Request │ │ │ │ └── Request.php │ │ │ ├── RequestInterface.php │ │ │ ├── ScopeConfigInterface.php │ │ │ ├── ScopeInterface.php │ │ │ ├── ScopeResolver.php │ │ │ ├── ScopeResolverInterface.php │ │ │ ├── ScopeResolverPool.php │ │ │ └── State.php │ │ ├── Bundle │ │ │ ├── Directory.php │ │ │ └── Directory │ │ │ │ └── Reader.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── InstallCommand.php │ │ │ └── SetupUpgradeCommand.php │ │ ├── Config │ │ │ ├── FileIterator.php │ │ │ ├── FileIteratorFactory.php │ │ │ └── FileResolverInterface.php │ │ ├── Controller │ │ │ ├── AbstractController.php │ │ │ ├── AdminController.php │ │ │ ├── Context.php │ │ │ ├── ContextInterface.php │ │ │ ├── Controller.php │ │ │ └── ControllerInterface.php │ │ ├── Data │ │ │ ├── Process │ │ │ │ ├── Find.php │ │ │ │ └── Sort.php │ │ │ └── Structure.php │ │ ├── DateTime │ │ │ ├── Transformer.php │ │ │ └── TransformerInterface.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsCoreExtension.php │ │ ├── Entity │ │ │ └── Bundle.php │ │ ├── Exception │ │ │ └── FileSystemException.php │ │ ├── Helper │ │ │ ├── AbstractHelper.php │ │ │ ├── AbstractHelperInterface.php │ │ │ ├── Context.php │ │ │ ├── Language.php │ │ │ └── State.php │ │ ├── LICENSE │ │ ├── Mailer │ │ │ ├── Config │ │ │ │ └── TemplateConfigBuilder.php │ │ │ └── Template │ │ │ │ ├── TransportBuilder.php │ │ │ │ └── TransportBuilderInterface.php │ │ ├── Model │ │ │ ├── DataObject.php │ │ │ ├── Db │ │ │ │ ├── Collection │ │ │ │ │ ├── AbstractCollection.php │ │ │ │ │ └── CollectionInterface.php │ │ │ │ └── Entity │ │ │ │ │ ├── AbstractEntity.php │ │ │ │ │ ├── Entity.php │ │ │ │ │ └── EntityInterface.php │ │ │ ├── Filesystem │ │ │ │ └── DirectoryList.php │ │ │ ├── ObjectManager.php │ │ │ ├── ObjectManagerInterface.php │ │ │ └── Utils │ │ │ │ ├── BundleManager.php │ │ │ │ └── BundleManagerInterface.php │ │ ├── ProgramCmsCoreBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── AbstractRepository.php │ │ │ ├── BundleRepository.php │ │ │ └── RepositoryInterface.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ └── translations │ │ │ │ └── messages.ar.yaml │ │ ├── Serialize │ │ │ ├── Serializer │ │ │ │ ├── Json.php │ │ │ │ └── ObjectSerializer.php │ │ │ └── SerializerInterface.php │ │ ├── Theme │ │ │ ├── AbstractTheme.php │ │ │ ├── BackendTheme.php │ │ │ ├── Theme.php │ │ │ └── ThemeInterface.php │ │ ├── View │ │ │ ├── Asset │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigInterface.php │ │ │ │ └── Repository.php │ │ │ ├── Design │ │ │ │ ├── Fallback │ │ │ │ │ ├── BundleFactory.php │ │ │ │ │ ├── ModularSwitchFactory.php │ │ │ │ │ ├── Rule │ │ │ │ │ │ ├── Bundle.php │ │ │ │ │ │ ├── Composite.php │ │ │ │ │ │ ├── ModularSwitch.php │ │ │ │ │ │ ├── RuleInterface.php │ │ │ │ │ │ ├── Simple.php │ │ │ │ │ │ └── Theme.php │ │ │ │ │ ├── RulePool.php │ │ │ │ │ ├── SimpleFactory.php │ │ │ │ │ └── ThemeFactory.php │ │ │ │ ├── FileResolution │ │ │ │ │ └── Fallback │ │ │ │ │ │ ├── AssetFile.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── LayoutFile.php │ │ │ │ │ │ ├── PageLayoutFile.php │ │ │ │ │ │ ├── Resolver │ │ │ │ │ │ ├── Merge.php │ │ │ │ │ │ └── Simple.php │ │ │ │ │ │ ├── ResolverInterface.php │ │ │ │ │ │ ├── ScssAssetFile.php │ │ │ │ │ │ └── TemplateFile.php │ │ │ │ ├── Theme │ │ │ │ │ ├── ThemeFactory.php │ │ │ │ │ └── ThemeProviderInterface.php │ │ │ │ └── ThemeInterface.php │ │ │ ├── DesignInterface.php │ │ │ ├── DesignLoader.php │ │ │ ├── Element │ │ │ │ ├── AbstractBlock.php │ │ │ │ ├── BlockInterface.php │ │ │ │ ├── Context.php │ │ │ │ ├── Html │ │ │ │ │ └── Link │ │ │ │ │ │ └── Item.php │ │ │ │ ├── Template.php │ │ │ │ └── Template │ │ │ │ │ ├── Context.php │ │ │ │ │ └── File │ │ │ │ │ └── Resolver.php │ │ │ ├── FileSystem.php │ │ │ ├── Layout.php │ │ │ ├── Layout │ │ │ │ ├── Data │ │ │ │ │ └── Structure.php │ │ │ │ └── Element.php │ │ │ ├── LayoutInterface.php │ │ │ ├── Page │ │ │ │ ├── Breadcrumb.php │ │ │ │ ├── Config.php │ │ │ │ └── Title.php │ │ │ ├── Result │ │ │ │ ├── AbstractResult.php │ │ │ │ ├── Layout.php │ │ │ │ ├── Page.php │ │ │ │ ├── PageFactory.php │ │ │ │ └── ResultInterface.php │ │ │ └── Template │ │ │ │ ├── MinifierInterface.php │ │ │ │ └── Twig │ │ │ │ └── Minifier.php │ │ └── composer.json │ │ ├── DataPatchBundle │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── ExecuteDataPatches.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsDataPatchExtension.php │ │ ├── Entity │ │ │ └── DataPatch.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── AbstractDataPatch.php │ │ │ └── DataPatchInterface.php │ │ ├── ProgramCmsDataPatchBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── DataPatchRepository.php │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yaml │ │ └── composer.json │ │ ├── DependencyBundle │ │ ├── BundleDependenciesResolver.php │ │ ├── CHANGELOG.md │ │ ├── DependentBundleInterface.php │ │ ├── Exception │ │ │ ├── BundleDependencyException.php │ │ │ └── BundleStackNotCacheableException.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ │ ├── DriveBundle │ │ ├── Block │ │ │ ├── FileManager.php │ │ │ └── FileViewer.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ ├── Ajax │ │ │ │ │ ├── FileController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ └── SearchController.php │ │ │ │ ├── Index │ │ │ │ │ └── IndexController.php │ │ │ │ └── Upload │ │ │ │ │ └── FileController.php │ │ │ └── Ajax │ │ │ │ └── UploadController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsDriveExtension.php │ │ ├── Entity │ │ │ └── DriveFile.php │ │ ├── Helper │ │ │ ├── Data.php │ │ │ └── FileHelper.php │ │ ├── LICENSE │ │ ├── Model │ │ │ └── Provider │ │ │ │ └── Button │ │ │ │ ├── NewFileButton.php │ │ │ │ ├── NewFolderButton.php │ │ │ │ └── UploadButton.php │ │ ├── ProgramCmsDriveBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── DriveFileRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── drive.png │ │ │ │ │ ├── file_types │ │ │ │ │ ├── file.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ └── video.png │ │ │ │ │ ├── list.png │ │ │ │ │ └── rect.png │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ └── source │ │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ │ └── _file_manager.scss │ │ │ │ │ └── js │ │ │ │ │ │ └── controllers │ │ │ │ │ │ ├── drive_search_controller.js │ │ │ │ │ │ └── file_manager_controller.js │ │ │ │ ├── layout │ │ │ │ │ └── drive_index_index.yaml │ │ │ │ └── templates │ │ │ │ │ ├── file_manager.html.twig │ │ │ │ │ ├── file_viewer.html.twig │ │ │ │ │ ├── filters │ │ │ │ │ └── search.html.twig │ │ │ │ │ └── presentation_mode.html.twig │ │ │ │ └── frontend │ │ │ │ └── assets │ │ │ │ └── css │ │ │ │ └── source │ │ │ │ ├── _bundle.scss │ │ │ │ └── _file_manager.scss │ │ ├── Setup │ │ │ ├── DriveManager.php │ │ │ └── DriveManagerInterface.php │ │ └── composer.json │ │ ├── EavBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsEavExtension.php │ │ ├── Entity │ │ │ ├── EavAttribute.php │ │ │ ├── EavAttributeGroup.php │ │ │ ├── EavAttributeLabel.php │ │ │ ├── EavAttributeSet.php │ │ │ ├── EavEntityDatetime.php │ │ │ ├── EavEntityDecimal.php │ │ │ ├── EavEntityInt.php │ │ │ ├── EavEntityText.php │ │ │ ├── EavEntityType.php │ │ │ └── EavEntityVarchar.php │ │ ├── EventListener │ │ │ ├── EavEntityListener.php │ │ │ └── EavEntityPersistSubscriber.php │ │ ├── Helper │ │ │ └── Entity.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Attribute │ │ │ │ ├── AbstractEavEntity.php │ │ │ │ └── Data │ │ │ │ │ └── AbstractData.php │ │ │ ├── Config.php │ │ │ ├── Entity │ │ │ │ ├── Attribute │ │ │ │ │ ├── AdditionalEavAttribute.php │ │ │ │ │ ├── AdditionalEavAttributeInterface.php │ │ │ │ │ ├── AttributeValue.php │ │ │ │ │ ├── AttributeValueInterface.php │ │ │ │ │ ├── Backend │ │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Image.php │ │ │ │ │ └── Frontend │ │ │ │ │ │ ├── AbstractFrontend.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── FrontendInterface.php │ │ │ │ │ │ └── Image.php │ │ │ │ ├── Entity.php │ │ │ │ └── EntityInterface.php │ │ │ └── EntityManager │ │ │ │ ├── Attribute │ │ │ │ └── Collection.php │ │ │ │ ├── AttributeInterface.php │ │ │ │ ├── Entity │ │ │ │ ├── Attribute │ │ │ │ │ └── Collection.php │ │ │ │ └── Type │ │ │ │ │ └── Collection.php │ │ │ │ └── ReadHandler.php │ │ ├── ProgramCmsEavBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── EavAttributeGroupRepository.php │ │ │ ├── EavAttributeLabelRepository.php │ │ │ ├── EavAttributeRepository.php │ │ │ ├── EavAttributeSetRepository.php │ │ │ ├── EavEntityDatetimeRepository.php │ │ │ ├── EavEntityDecimalRepository.php │ │ │ ├── EavEntityIntRepository.php │ │ │ ├── EavEntityTextRepository.php │ │ │ ├── EavEntityTypeRepository.php │ │ │ └── EavEntityVarcharRepository.php │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yaml │ │ ├── Setup │ │ │ ├── EavSetup.php │ │ │ └── EavSetupInterface.php │ │ └── composer.json │ │ ├── FavoriteBundle │ │ ├── Block │ │ │ └── Index.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Index │ │ │ │ ├── IndexController.php │ │ │ │ ├── NewController.php │ │ │ │ └── RemoveController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsFavoriteExtension.php │ │ ├── Entity │ │ │ └── Favorite.php │ │ ├── LICENSE │ │ ├── ProgramCmsFavoriteBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── FavoriteRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ ├── default.yaml │ │ │ │ ├── favorite_index_index.yaml │ │ │ │ └── user_account.yaml │ │ │ │ └── templates │ │ │ │ └── list.html.twig │ │ └── composer.json │ │ ├── GdprBundle │ │ ├── Block │ │ │ └── GdprContainer.php │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsGdprExtension.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── LICENSE │ │ ├── ProgramCmsGdprBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ └── _gdpr-container.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ └── gdpr-container_controller.js │ │ │ │ ├── layout │ │ │ │ └── default.yaml │ │ │ │ └── templates │ │ │ │ └── gdpr_container.html.twig │ │ └── composer.json │ │ ├── GtmBundle │ │ ├── Block │ │ │ └── Gtm.php │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsGtmExtension.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── LICENSE │ │ ├── ProgramCmsGtmBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ └── default.yaml │ │ │ │ └── templates │ │ │ │ ├── before_body_gtm.html.twig │ │ │ │ └── gtm.html.twig │ │ └── composer.json │ │ ├── ImportBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsImportExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsImportBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── adminhtml │ │ │ │ ├── menu.yaml │ │ │ │ └── system.yaml │ │ │ │ └── services.yaml │ │ └── composer.json │ │ ├── LoginAsUserBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsLoginAsUserExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsLoginAsUserBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yaml │ │ │ └── translations │ │ │ │ └── messages.ar.yaml │ │ └── composer.json │ │ ├── MailBundle │ │ ├── Block │ │ │ └── EmailEditor.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ ├── Ajax │ │ │ │ └── LoadTemplateController.php │ │ │ │ └── Index │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── NewController.php │ │ │ │ └── SaveController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsMailExtension.php │ │ ├── Entity │ │ │ └── EmailTemplate.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Collection │ │ │ │ └── EmailTemplateCollection.php │ │ │ └── Provider │ │ │ │ ├── Button │ │ │ │ └── NewTemplateButton.php │ │ │ │ └── Listing │ │ │ │ └── EmailTemplateDataProvider.php │ │ ├── ProgramCmsMailBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── EmailTemplateRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ └── _bundle.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ └── email_editor_controller.js │ │ │ │ ├── layout │ │ │ │ ├── mailer_index_edit.yaml │ │ │ │ ├── mailer_index_index.yaml │ │ │ │ └── mailer_index_new.yaml │ │ │ │ ├── page_layout │ │ │ │ └── email-editor.layout.twig │ │ │ │ └── templates │ │ │ │ └── email_editor.html.twig │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── Template │ │ │ │ └── Actions.php │ │ └── composer.json │ │ ├── ManagerBundle │ │ ├── Block │ │ │ └── BundleBrowser.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ └── BundleGenerator.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ └── Bundle │ │ │ │ ├── ActivateController.php │ │ │ │ ├── BrowseController.php │ │ │ │ ├── DisableController.php │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsManagerExtension.php │ │ ├── Entity │ │ │ └── Bundle.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Collection │ │ │ │ └── Bundle │ │ │ │ │ └── Collection.php │ │ │ └── Provider │ │ │ │ ├── Button │ │ │ │ └── Bundles │ │ │ │ │ └── AddBundleButton.php │ │ │ │ └── Listing │ │ │ │ └── Bundles │ │ │ │ └── DataProvider.php │ │ ├── ProgramCmsManagerBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── manager.png │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ ├── manager_bundle_browse.yaml │ │ │ │ └── manager_bundle_index.yaml │ │ │ │ └── templates │ │ │ │ └── bundle │ │ │ │ └── browse.html.twig │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── Bundle │ │ │ │ └── Actions.php │ │ └── composer.json │ │ ├── MarketingBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsMarketingExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsMarketingBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── marketing.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ └── assets │ │ │ │ └── css │ │ │ │ └── source │ │ │ │ └── _bundle.scss │ │ └── composer.json │ │ ├── MessagingBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsMessagingExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsMessagingBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yaml │ │ └── composer.json │ │ ├── NewsletterBundle │ │ ├── Block │ │ │ ├── Newsletter.php │ │ │ └── User │ │ │ │ └── Subscribe.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ └── Index │ │ │ │ │ └── IndexController.php │ │ │ ├── Manage │ │ │ │ ├── IndexController.php │ │ │ │ └── SaveController.php │ │ │ └── Subscriber │ │ │ │ └── NewController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsNewsletterExtension.php │ │ ├── Entity │ │ │ └── Newsletter.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── ProgramCmsNewsletterBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── NewsletterRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── newsletter.png │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ └── layout │ │ │ │ │ ├── newsletter_index_index.yaml │ │ │ │ │ └── user_index_edit.layout.twig │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ ├── default.yaml │ │ │ │ ├── newsletter_manage_index.yaml │ │ │ │ ├── user_account.yaml │ │ │ │ └── user_account_register.yaml │ │ │ │ └── templates │ │ │ │ ├── dashboard │ │ │ │ └── subscription.html.twig │ │ │ │ ├── newsletter.html.twig │ │ │ │ └── user │ │ │ │ └── subscribe.html.twig │ │ └── composer.json │ │ ├── NotificationBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsNotificationExtension.php │ │ ├── Entity │ │ │ └── Notification.php │ │ ├── LICENSE │ │ ├── Message │ │ │ └── InternalNotification.php │ │ ├── MessageHandler │ │ │ └── InternalNotificationHandler.php │ │ ├── ProgramCmsNotificationBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── notifications.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── notifications.png │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ └── default.yaml │ │ │ │ └── templates │ │ │ │ └── notifications.html.twig │ │ └── composer.json │ │ ├── PageBundle │ │ ├── Api │ │ │ └── PageInterface.php │ │ ├── App │ │ │ └── Eav │ │ │ │ └── AbstractPageEntity.php │ │ ├── Block │ │ │ ├── Page.php │ │ │ └── PageEditor.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ ├── Ajax │ │ │ │ │ └── LoadPageController.php │ │ │ │ └── Index │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ └── Index │ │ │ │ └── ViewController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsPageExtension.php │ │ ├── Entity │ │ │ ├── PageEavAttribute.php │ │ │ ├── PageEntity.php │ │ │ ├── PageEntityDatetime.php │ │ │ ├── PageEntityDecimal.php │ │ │ ├── PageEntityInt.php │ │ │ ├── PageEntityText.php │ │ │ └── PageEntityVarchar.php │ │ ├── LICENSE │ │ ├── Migrations │ │ │ └── SetupEavModel.php │ │ ├── Model │ │ │ ├── Collection │ │ │ │ └── PageCollection.php │ │ │ └── Provider │ │ │ │ ├── Button │ │ │ │ └── NewPageButton.php │ │ │ │ └── Listing │ │ │ │ └── PageDataProvider.php │ │ ├── ProgramCmsPageBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── PageEavAttributeRepository.php │ │ │ ├── PageEntityDatetimeRepository.php │ │ │ ├── PageEntityDecimalRepository.php │ │ │ ├── PageEntityIntRepository.php │ │ │ ├── PageEntityTextRepository.php │ │ │ ├── PageEntityVarcharRepository.php │ │ │ └── PageRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── back.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ │ ├── page_index_edit.yaml │ │ │ │ │ ├── page_index_index.yaml │ │ │ │ │ └── page_index_new.yaml │ │ │ │ └── templates │ │ │ │ │ └── page_editor.html.twig │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ └── page_index_view.layout.twig │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── PageActions.php │ │ └── composer.json │ │ ├── PostBundle │ │ ├── Api │ │ │ └── PostInterface.php │ │ ├── App │ │ │ └── Eav │ │ │ │ └── AbstractPostEntity.php │ │ ├── Block │ │ │ ├── Editor │ │ │ │ └── Editor.php │ │ │ ├── Post.php │ │ │ ├── PostEditor.php │ │ │ ├── Search │ │ │ │ └── Post.php │ │ │ └── User │ │ │ │ ├── LastPosts.php │ │ │ │ └── Posts.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ ├── Ajax │ │ │ │ │ └── LoadPostController.php │ │ │ │ └── Index │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ ├── Ajax │ │ │ │ ├── LoadCommentController.php │ │ │ │ └── LoadPostController.php │ │ │ ├── Comment │ │ │ │ ├── DeleteController.php │ │ │ │ ├── EditController.php │ │ │ │ └── SaveController.php │ │ │ ├── Edit │ │ │ │ ├── ArchivateController.php │ │ │ │ ├── DisableController.php │ │ │ │ ├── EnableController.php │ │ │ │ ├── LockController.php │ │ │ │ └── PinController.php │ │ │ ├── Index │ │ │ │ ├── ArchiveController.php │ │ │ │ ├── EditController.php │ │ │ │ ├── NewController.php │ │ │ │ ├── SaveController.php │ │ │ │ ├── TrendController.php │ │ │ │ └── ViewController.php │ │ │ └── User │ │ │ │ └── IndexController.php │ │ ├── Decorator │ │ │ └── Category │ │ │ │ └── DisplayMode.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsPostExtension.php │ │ ├── Entity │ │ │ ├── Comment.php │ │ │ ├── PostEavAttribute.php │ │ │ ├── PostEntity.php │ │ │ ├── PostEntityDatetime.php │ │ │ ├── PostEntityDecimal.php │ │ │ ├── PostEntityInt.php │ │ │ ├── PostEntityText.php │ │ │ ├── PostEntityVarchar.php │ │ │ └── PostView.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Migrations │ │ │ ├── EditPostEav.php │ │ │ └── SetupEavModel.php │ │ ├── Model │ │ │ ├── Collection │ │ │ │ └── Collection.php │ │ │ ├── PostViewRecorder.php │ │ │ ├── Provider │ │ │ │ ├── Button │ │ │ │ │ ├── BackToPostsButton.php │ │ │ │ │ ├── NewPostButton.php │ │ │ │ │ ├── RemovePostButton.php │ │ │ │ │ ├── ResetButton.php │ │ │ │ │ └── SavePostButton.php │ │ │ │ ├── DataSource │ │ │ │ │ ├── AttributeSets.php │ │ │ │ │ └── User │ │ │ │ │ │ └── Users.php │ │ │ │ └── PostDataProvider.php │ │ │ └── Search │ │ │ │ └── Post.php │ │ ├── ProgramCmsPostBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── CommentRepository.php │ │ │ ├── PostEavAttributeRepository.php │ │ │ ├── PostEntityDatetimeRepository.php │ │ │ ├── PostEntityDecimalRepository.php │ │ │ ├── PostEntityIntRepository.php │ │ │ ├── PostEntityTextRepository.php │ │ │ ├── PostEntityVarcharRepository.php │ │ │ ├── PostRepository.php │ │ │ └── PostViewRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── acl.yaml │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── dislike.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── editor │ │ │ │ │ ├── blocks │ │ │ │ │ │ ├── 2columns.png │ │ │ │ │ │ ├── 3columns.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── check_list.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── column.png │ │ │ │ │ │ ├── divider.png │ │ │ │ │ │ ├── file.png │ │ │ │ │ │ ├── head.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── ordered_list.png │ │ │ │ │ │ ├── quote.png │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── section.png │ │ │ │ │ │ ├── table.png │ │ │ │ │ │ ├── text.png │ │ │ │ │ │ ├── unordered_list.png │ │ │ │ │ │ └── video.png │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── center-align.png │ │ │ │ │ ├── check-list.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── left-align.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── numbered-list.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── right-align.png │ │ │ │ │ ├── text-color.png │ │ │ │ │ ├── traits │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ ├── style_manager.png │ │ │ │ │ │ └── traits.png │ │ │ │ │ ├── underline.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── unordered-list.png │ │ │ │ │ ├── favorite.png │ │ │ │ │ ├── follow.png │ │ │ │ │ ├── hot.png │ │ │ │ │ ├── left-arrow.png │ │ │ │ │ ├── like.png │ │ │ │ │ ├── love.png │ │ │ │ │ ├── manage.png │ │ │ │ │ ├── message.png │ │ │ │ │ ├── more.png │ │ │ │ │ ├── new.png │ │ │ │ │ ├── no_image.png │ │ │ │ │ ├── posts.png │ │ │ │ │ ├── report.png │ │ │ │ │ └── right-arrow.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── layout │ │ │ │ │ ├── catalog_category_edit.yaml │ │ │ │ │ ├── catalog_category_index.yaml │ │ │ │ │ ├── includes │ │ │ │ │ │ └── category_posts.yaml │ │ │ │ │ ├── post_index_edit.yaml │ │ │ │ │ ├── post_index_index.yaml │ │ │ │ │ ├── post_index_new.yaml │ │ │ │ │ └── user_index_edit.yaml │ │ │ │ ├── page_layout │ │ │ │ │ └── editor.layout.twig │ │ │ │ └── templates │ │ │ │ │ ├── editor │ │ │ │ │ └── editor.html.twig │ │ │ │ │ └── post_editor.html.twig │ │ │ │ ├── base │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _begin-ignore.css │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ ├── _coloris.scss │ │ │ │ │ │ ├── _editor.scss │ │ │ │ │ │ ├── _end-ignore.css │ │ │ │ │ │ ├── _post.scss │ │ │ │ │ │ └── editor │ │ │ │ │ │ └── _top_panel.scss │ │ │ │ │ └── js │ │ │ │ │ ├── controllers │ │ │ │ │ ├── editor_controller.js │ │ │ │ │ └── post_viewer_controller.js │ │ │ │ │ └── locale │ │ │ │ │ └── ar.js │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ ├── delete_comment_controller.js │ │ │ │ │ └── new_comment_controller.js │ │ │ │ ├── layout │ │ │ │ ├── catalog_category_view.yaml │ │ │ │ ├── default.yaml │ │ │ │ ├── post_comment_edit.layout.twig │ │ │ │ ├── post_index_archive.yaml │ │ │ │ ├── post_index_edit.yaml │ │ │ │ ├── post_index_new.yaml │ │ │ │ ├── post_index_trend.yaml │ │ │ │ ├── post_index_view.yaml │ │ │ │ ├── post_user_index.yaml │ │ │ │ ├── search_index_index.yaml │ │ │ │ └── user_edit_index.layout.twig │ │ │ │ └── templates │ │ │ │ ├── category │ │ │ │ └── posts.html.twig │ │ │ │ ├── editor.html.twig │ │ │ │ ├── post │ │ │ │ ├── comments.html.twig │ │ │ │ ├── content.html.twig │ │ │ │ ├── head.html.twig │ │ │ │ ├── navbar │ │ │ │ │ ├── forum_name.html.twig │ │ │ │ │ └── post_options.html.twig │ │ │ │ ├── poster.html.twig │ │ │ │ └── related_posts.html.twig │ │ │ │ ├── search │ │ │ │ └── posts.html.twig │ │ │ │ └── user │ │ │ │ ├── last_posts.html.twig │ │ │ │ └── posts.html.twig │ │ ├── Security │ │ │ ├── CanDeletePostOnCategoryVoter.php │ │ │ ├── CanEditPostOnCategoryVoter.php │ │ │ └── PostVoter.php │ │ ├── Ui │ │ │ └── Listing │ │ │ │ └── Column │ │ │ │ └── PostActions.php │ │ └── composer.json │ │ ├── PostReactionBundle │ │ ├── Block │ │ │ └── PostReaction.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Ajax │ │ │ │ └── ReactController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsPostReactionExtension.php │ │ ├── Entity │ │ │ └── PostReaction.php │ │ ├── Enum │ │ │ └── ReactionType.php │ │ ├── EventSubscriber │ │ │ └── DoctrineMappingSubscriber.php │ │ ├── LICENSE │ │ ├── ProgramCmsPostReactionBundle.php │ │ ├── Repository │ │ │ └── PostReactionRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ └── _reaction.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ └── post_reaction_controller.js │ │ │ │ ├── layout │ │ │ │ └── post_index_view.yaml │ │ │ │ └── templates │ │ │ │ └── post_reaction.html.twig │ │ └── composer.json │ │ ├── ReportBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsReportExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsReportBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── report.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ │ └── admin_dashboard_index.layout.twig │ │ │ │ └── templates │ │ │ │ │ ├── last_search_terms.html.twig │ │ │ │ │ ├── tabs.html.twig │ │ │ │ │ └── websites_evolution.html.twig │ │ │ │ └── frontend │ │ │ │ └── layout │ │ │ │ └── user_account.yaml │ │ └── composer.json │ │ ├── RewriteBundle │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Adminhtml │ │ │ │ └── Url │ │ │ │ │ ├── DeleteController.php │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ └── Router │ │ │ │ └── RouteController.php │ │ ├── Decorator │ │ │ └── UrlDecorator.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsRewriteExtension.php │ │ ├── Entity │ │ │ └── UrlRewrite.php │ │ ├── EventListener │ │ │ ├── CategoryPersistSubscriber.php │ │ │ ├── PostPersistSubscriber.php │ │ │ └── UserPersistSubscriber.php │ │ ├── Helper │ │ │ ├── Config.php │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Provider │ │ │ │ ├── Button │ │ │ │ │ └── Url │ │ │ │ │ │ ├── Back.php │ │ │ │ │ │ ├── DeleteButton.php │ │ │ │ │ │ ├── NewButton.php │ │ │ │ │ │ └── Save.php │ │ │ │ ├── DataSource │ │ │ │ │ └── RedirectTypes.php │ │ │ │ └── Listing │ │ │ │ │ └── Url │ │ │ │ │ └── DataProvider.php │ │ │ └── ResourceModel │ │ │ │ └── Url │ │ │ │ └── Collection.php │ │ ├── ProgramCmsRewriteBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── UrlRewriteRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ └── layout │ │ │ │ ├── rewrite_url_edit.yaml │ │ │ │ ├── rewrite_url_index.yaml │ │ │ │ └── rewrite_url_new.yaml │ │ ├── Routing │ │ │ └── RewriteUrlLoader.php │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── Url │ │ │ │ └── Actions.php │ │ └── composer.json │ │ ├── RouterBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsRouterExtension.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── ProgramCmsRouterBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yaml │ │ ├── Routing │ │ │ └── ProgramCmsRouteLoader.php │ │ ├── Service │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Url.php │ │ │ └── UrlInterface.php │ │ └── composer.json │ │ ├── SearchBundle │ │ ├── Block │ │ │ ├── Filters.php │ │ │ ├── Results.php │ │ │ └── Search.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ └── Index │ │ │ │ └── IndexController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsSearchExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsSearchBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ └── messages.en.yaml │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ ├── default.yaml │ │ │ │ └── search_index_index.yaml │ │ │ │ └── templates │ │ │ │ ├── filters.html.twig │ │ │ │ ├── form_search_mini.html.twig │ │ │ │ └── results.html.twig │ │ └── composer.json │ │ ├── SecurityBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsSecurityExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsSecurityBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── system.yaml │ │ │ │ └── services.yaml │ │ │ └── translations │ │ │ │ └── messages.ar.yaml │ │ └── composer.json │ │ ├── SocialShareBundle │ │ ├── Block │ │ │ └── Share.php │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsSocialShareExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsSocialShareBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── instagram.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ └── twitter.png │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ └── post_index_view.yaml │ │ │ │ └── templates │ │ │ │ └── post │ │ │ │ └── share.html.twig │ │ └── composer.json │ │ ├── SupportBundle │ │ ├── CHANGELOG.md │ │ ├── DependencyInjection │ │ │ └── ProgramCmsSocialShareExtension.php │ │ ├── LICENSE │ │ ├── ProgramCmsSocialShareBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── instagram.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ └── twitter.png │ │ │ └── views │ │ │ │ └── frontend │ │ │ │ ├── layout │ │ │ │ └── post_index_view.yaml │ │ │ │ └── templates │ │ │ │ └── post │ │ │ │ └── share.html.twig │ │ └── composer.json │ │ ├── ThemeBundle │ │ ├── Block │ │ │ ├── Html │ │ │ │ ├── Breadcrumb.php │ │ │ │ ├── Header │ │ │ │ │ └── Logo.php │ │ │ │ ├── Item.php │ │ │ │ ├── Title.php │ │ │ │ └── TopMenu.php │ │ │ └── Page │ │ │ │ ├── Body │ │ │ │ └── BeforeBody.php │ │ │ │ ├── Copyright.php │ │ │ │ ├── Current.php │ │ │ │ ├── Head │ │ │ │ ├── Head.php │ │ │ │ └── Title.php │ │ │ │ └── Links.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── GenerateStaticsCommand.php │ │ │ └── UpgradeThemes.php │ │ ├── Composer │ │ │ └── InstallTheme.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ └── Index │ │ │ │ ├── ConfigController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── ViewController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsThemeExtension.php │ │ ├── Entity │ │ │ └── Theme.php │ │ ├── Helper │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ └── LayoutLoader.php │ │ ├── Model │ │ │ ├── Collection │ │ │ │ └── Theme │ │ │ │ │ └── Collection.php │ │ │ ├── PageLayout.php │ │ │ ├── Provider │ │ │ │ ├── Button │ │ │ │ │ └── BackToThemesButton.php │ │ │ │ ├── DataSource │ │ │ │ │ └── ThemeSelector.php │ │ │ │ └── ThemeProvider.php │ │ │ ├── Theme │ │ │ │ └── Grid │ │ │ │ │ └── DataProvider.php │ │ │ └── View │ │ │ │ └── Design.php │ │ ├── ProgramCmsThemeBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ └── ThemeRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── adminhtml │ │ │ │ │ └── menu.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── favicon │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── logo-anime.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── site.webmanifest │ │ │ │ │ ├── loader │ │ │ │ │ ├── spinner-1.5s-90px.gif │ │ │ │ │ └── spinner-1s-150px.gif │ │ │ │ │ ├── logo-anime.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── programcms-logo-presentation.png │ │ │ │ │ └── programcms-logo.png │ │ │ ├── translations │ │ │ │ └── messages.ar.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ └── source │ │ │ │ │ │ │ ├── _ajax-loader.scss │ │ │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ └── js │ │ │ │ │ │ └── app.js │ │ │ │ ├── layout │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── theme_index_index.yaml │ │ │ │ │ └── theme_index_view.yaml │ │ │ │ ├── page_layout │ │ │ │ │ ├── admin-1column.yaml │ │ │ │ │ ├── admin-2columns-left.yaml │ │ │ │ │ ├── admin-empty.yaml │ │ │ │ │ ├── admin-login.yaml │ │ │ │ │ └── editor.yaml │ │ │ │ └── templates │ │ │ │ │ ├── body │ │ │ │ │ └── before_body.html.twig │ │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ │ ├── head │ │ │ │ │ ├── head.html.twig │ │ │ │ │ └── title.html.twig │ │ │ │ │ └── title.html.twig │ │ │ │ ├── base.html.twig │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ ├── _ajax-loader.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _main.scss │ │ │ │ │ ├── _navigation_bar.scss │ │ │ │ │ ├── _top-panel.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── layout │ │ │ │ └── default.yaml │ │ │ │ ├── page_layout │ │ │ │ ├── 1column.yaml │ │ │ │ ├── 2columns-left.yaml │ │ │ │ ├── 3columns.yaml │ │ │ │ └── empty.yaml │ │ │ │ └── templates │ │ │ │ ├── body │ │ │ │ └── before_body.html.twig │ │ │ │ ├── breadcrumb.html.twig │ │ │ │ ├── flashes.html.twig │ │ │ │ ├── head │ │ │ │ ├── head.html.twig │ │ │ │ └── title.html.twig │ │ │ │ ├── logo.html.twig │ │ │ │ ├── navbar_toggler.html.twig │ │ │ │ └── navigation_bar.html.twig │ │ ├── Ui │ │ │ └── Grid │ │ │ │ └── Column │ │ │ │ └── ThemeActions.php │ │ ├── Webpack │ │ │ ├── Generator │ │ │ │ ├── Entry.php │ │ │ │ ├── Module.php │ │ │ │ ├── Module │ │ │ │ │ ├── Rule.php │ │ │ │ │ └── Rules.php │ │ │ │ ├── Output.php │ │ │ │ ├── Performance.php │ │ │ │ ├── Plugins.php │ │ │ │ ├── Plugins │ │ │ │ │ └── Plugin.php │ │ │ │ └── WebpackConfig.php │ │ │ ├── GeneratorInterface.php │ │ │ └── Output.php │ │ └── composer.json │ │ ├── UiBundle │ │ ├── Block │ │ │ ├── ComponentWrapper.php │ │ │ ├── Tabs │ │ │ │ └── Tabs.php │ │ │ └── Toolbar │ │ │ │ ├── ToolbarActions.php │ │ │ │ └── WebsiteSwitcher.php │ │ ├── CHANGELOG.md │ │ ├── Component │ │ │ ├── AbstractComponent.php │ │ │ ├── Form │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractElement.php │ │ │ │ │ ├── Button.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── Editor.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Hidden.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── ImageUploader.php │ │ │ │ │ ├── MultiSelect.php │ │ │ │ │ ├── Password.php │ │ │ │ │ ├── PlainText.php │ │ │ │ │ ├── Select.php │ │ │ │ │ ├── Switcher.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── TextArea.php │ │ │ │ │ └── Tree.php │ │ │ │ ├── Field.php │ │ │ │ ├── Fieldset.php │ │ │ │ └── Form.php │ │ │ ├── Listing │ │ │ │ ├── ActionsColumn.php │ │ │ │ ├── Column.php │ │ │ │ ├── Columns.php │ │ │ │ ├── Columns │ │ │ │ │ ├── DateColumn.php │ │ │ │ │ └── ImageColumn.php │ │ │ │ ├── Listing.php │ │ │ │ ├── SelectionsColumn.php │ │ │ │ ├── Toolbar.php │ │ │ │ └── Toolbar │ │ │ │ │ ├── Filters.php │ │ │ │ │ ├── MassActions.php │ │ │ │ │ ├── Pagination.php │ │ │ │ │ └── Search.php │ │ │ ├── Modal │ │ │ │ └── Modal.php │ │ │ ├── Tree │ │ │ │ └── Tree.php │ │ │ └── Wrapper │ │ │ │ └── UiComponent.php │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ └── Export │ │ │ │ └── CsvController.php │ │ ├── DataProvider │ │ │ ├── AbstractDataProvider.php │ │ │ ├── ButtonProviderInterface.php │ │ │ ├── DataProviderInterface.php │ │ │ └── FilterToCollectionInterface.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsUiExtension.php │ │ ├── LICENSE │ │ ├── Model │ │ │ └── Provider │ │ │ │ ├── DataProvider │ │ │ │ ├── AbstractDataProvider.php │ │ │ │ └── DataProviderInterface.php │ │ │ │ └── DataSource │ │ │ │ ├── EnableDisable.php │ │ │ │ ├── LocaleSelector.php │ │ │ │ ├── Locales.php │ │ │ │ ├── Options.php │ │ │ │ ├── OptionsInterface.php │ │ │ │ ├── TimeZoneSelector.php │ │ │ │ └── YesNo.php │ │ ├── ProgramCmsUiBundle.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── doctrine.yaml │ │ │ │ ├── routes.yaml │ │ │ │ └── services.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── arrows-bg.svg │ │ │ │ │ ├── back.png │ │ │ │ │ ├── calendar.png │ │ │ │ │ ├── close-sign.png │ │ │ │ │ ├── down-arrow.png │ │ │ │ │ ├── filters.png │ │ │ │ │ ├── folder-open.png │ │ │ │ │ ├── folder-search.png │ │ │ │ │ ├── left-arrow.png │ │ │ │ │ ├── open-sign.png │ │ │ │ │ ├── right-arrow.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── up-arrow.png │ │ │ │ │ └── upload.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ ├── messages.en.yaml │ │ │ │ ├── messages.es.yaml │ │ │ │ └── messages.fr.yaml │ │ │ └── views │ │ │ │ └── adminhtml │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ ├── _extends.scss │ │ │ │ │ │ ├── _spinner.scss │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── _buttons-bar.scss │ │ │ │ │ │ ├── _collapser.scss │ │ │ │ │ │ ├── _color.scss │ │ │ │ │ │ ├── _datepicker.scss │ │ │ │ │ │ ├── _editor.scss │ │ │ │ │ │ ├── _field.scss │ │ │ │ │ │ ├── _form.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _image-uploader.scss │ │ │ │ │ │ ├── _modal.scss │ │ │ │ │ │ ├── _scope_dropdown.scss │ │ │ │ │ │ ├── _select.scss │ │ │ │ │ │ ├── _switcher.scss │ │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ │ ├── _tree-field.scss │ │ │ │ │ │ ├── _tree.scss │ │ │ │ │ │ └── _website-switcher.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ ├── app_controller.js │ │ │ │ │ ├── collapser_controller.js │ │ │ │ │ ├── color_controller.js │ │ │ │ │ ├── confirm_modal_controller.js │ │ │ │ │ ├── date_controller.js │ │ │ │ │ ├── filters_controller.js │ │ │ │ │ ├── image_uploader_controller.js │ │ │ │ │ ├── inherit-checkbox_controller.js │ │ │ │ │ ├── listing_search_controller.js │ │ │ │ │ ├── select_controller.js │ │ │ │ │ ├── switcher-field_controller.js │ │ │ │ │ ├── tabs_controller.js │ │ │ │ │ ├── toolbar_controller.js │ │ │ │ │ ├── tree_controller.js │ │ │ │ │ └── tree_field_controller.js │ │ │ │ └── templates │ │ │ │ ├── component_wrapper.html.twig │ │ │ │ ├── form │ │ │ │ ├── fields │ │ │ │ │ ├── button.html.twig │ │ │ │ │ ├── color.html.twig │ │ │ │ │ ├── date.html.twig │ │ │ │ │ ├── editor.html.twig │ │ │ │ │ ├── field.html.twig │ │ │ │ │ ├── file.html.twig │ │ │ │ │ ├── hidden.html.twig │ │ │ │ │ ├── image.html.twig │ │ │ │ │ ├── image_uploader.html.twig │ │ │ │ │ ├── password.html.twig │ │ │ │ │ ├── plain_text.html.twig │ │ │ │ │ ├── select.html.twig │ │ │ │ │ ├── switcher.html.twig │ │ │ │ │ ├── text.html.twig │ │ │ │ │ └── textarea.html.twig │ │ │ │ ├── fieldset.html.twig │ │ │ │ └── form.html.twig │ │ │ │ ├── listing │ │ │ │ ├── column.html.twig │ │ │ │ ├── listing.html.twig │ │ │ │ ├── selections_column.html.twig │ │ │ │ ├── toolbar.html.twig │ │ │ │ └── toolbar │ │ │ │ │ ├── filters.html.twig │ │ │ │ │ ├── mass_actions.html.twig │ │ │ │ │ ├── pagination.html.twig │ │ │ │ │ └── search.html.twig │ │ │ │ ├── modal │ │ │ │ └── modal.html.twig │ │ │ │ ├── tabs │ │ │ │ └── tabs.html.twig │ │ │ │ └── toolbar │ │ │ │ ├── toolbar_buttons.html.twig │ │ │ │ └── website_switcher.html.twig │ │ ├── View │ │ │ └── Element │ │ │ │ ├── ContainerInterface.php │ │ │ │ ├── Context.php │ │ │ │ ├── ContextInterface.php │ │ │ │ ├── UiComponentFactory.php │ │ │ │ └── UiComponentInterface.php │ │ └── composer.json │ │ ├── UserBundle │ │ ├── App │ │ │ └── Eav │ │ │ │ ├── AbstractUserAddressEntity.php │ │ │ │ └── AbstractUserEntity.php │ │ ├── Block │ │ │ ├── Account │ │ │ │ ├── AccountDropDown.php │ │ │ │ ├── Edit │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Information.php │ │ │ │ │ └── Password.php │ │ │ │ ├── Login.php │ │ │ │ ├── Navigation.php │ │ │ │ ├── Recovery.php │ │ │ │ └── Register.php │ │ │ ├── Adminhtml │ │ │ │ └── AccountView.php │ │ │ ├── Community.php │ │ │ └── User │ │ │ │ ├── About.php │ │ │ │ ├── AbstractUser.php │ │ │ │ ├── Identity.php │ │ │ │ ├── Resume.php │ │ │ │ └── Tabs.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ │ ├── Account │ │ │ │ ├── LoginAsUserController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── LogoutController.php │ │ │ │ └── RegisterController.php │ │ │ ├── Address │ │ │ │ ├── DeleteController.php │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── NewController.php │ │ │ ├── Adminhtml │ │ │ │ ├── Account │ │ │ │ │ └── ResetController.php │ │ │ │ ├── Address │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ │ ├── Group │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ │ └── Index │ │ │ │ │ ├── ConnectedController.php │ │ │ │ │ ├── EditController.php │ │ │ │ │ ├── IndexController.php │ │ │ │ │ ├── NewController.php │ │ │ │ │ └── SaveController.php │ │ │ ├── Edit │ │ │ │ ├── IndexController.php │ │ │ │ ├── InformationController.php │ │ │ │ └── PasswordController.php │ │ │ ├── Profile │ │ │ │ ├── IndexController.php │ │ │ │ └── ViewController.php │ │ │ ├── Recovery │ │ │ │ ├── IndexController.php │ │ │ │ ├── UpdatePasswordController.php │ │ │ │ ├── VerifyTokenController.php │ │ │ │ └── VerifyUserController.php │ │ │ └── Save │ │ │ │ ├── AddressController.php │ │ │ │ ├── InformationController.php │ │ │ │ ├── PasswordController.php │ │ │ │ └── UserImageController.php │ │ ├── DependencyInjection │ │ │ └── ProgramCmsUserExtension.php │ │ ├── Entity │ │ │ ├── Address │ │ │ │ ├── UserAddressEntity.php │ │ │ │ ├── UserAddressEntityDatetime.php │ │ │ │ ├── UserAddressEntityDecimal.php │ │ │ │ ├── UserAddressEntityInt.php │ │ │ │ ├── UserAddressEntityText.php │ │ │ │ └── UserAddressEntityVarchar.php │ │ │ ├── Group │ │ │ │ ├── UserGroup.php │ │ │ │ └── UserGroupPermission.php │ │ │ ├── UserEavAttribute.php │ │ │ ├── UserEntity.php │ │ │ ├── UserEntityDatetime.php │ │ │ ├── UserEntityDecimal.php │ │ │ ├── UserEntityInt.php │ │ │ ├── UserEntityText.php │ │ │ ├── UserEntityVarchar.php │ │ │ └── UserLog.php │ │ ├── Helper │ │ │ ├── Config.php │ │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Migrations │ │ │ ├── UserAddressEav.php │ │ │ └── UserEav.php │ │ ├── Model │ │ │ ├── Acl │ │ │ │ └── AclSerializer.php │ │ │ ├── Collection │ │ │ │ ├── UserAddress │ │ │ │ │ └── Collection.php │ │ │ │ └── UserLog │ │ │ │ │ └── Collection.php │ │ │ ├── Provider │ │ │ │ ├── AccountSharingOptions.php │ │ │ │ ├── AccountSharingOptionsInterface.php │ │ │ │ ├── Button │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── BackToUserButton.php │ │ │ │ │ │ ├── ResetButton.php │ │ │ │ │ │ └── SaveAddressButton.php │ │ │ │ │ ├── BackToUserGroupsButton.php │ │ │ │ │ ├── BackToUsersButton.php │ │ │ │ │ ├── DeleteUserButton.php │ │ │ │ │ ├── ForceSignInButton.php │ │ │ │ │ ├── Group │ │ │ │ │ │ ├── Back.php │ │ │ │ │ │ └── Save.php │ │ │ │ │ ├── LoginAsUserButton.php │ │ │ │ │ ├── NewUserButton.php │ │ │ │ │ ├── NewUserGroupButton.php │ │ │ │ │ ├── ResetButton.php │ │ │ │ │ ├── ResetPasswordButton.php │ │ │ │ │ ├── SaveUserButton.php │ │ │ │ │ └── SaveUserGroupButton.php │ │ │ │ ├── DataSource │ │ │ │ │ └── Acl │ │ │ │ │ │ └── DataProvider.php │ │ │ │ ├── Listing │ │ │ │ │ ├── DataProvider.php │ │ │ │ │ ├── Groups │ │ │ │ │ │ └── DataProvider.php │ │ │ │ │ ├── UserAddress │ │ │ │ │ │ └── DataProvider.php │ │ │ │ │ └── UserLog │ │ │ │ │ │ └── DataProvider.php │ │ │ │ └── Source │ │ │ │ │ ├── Sex.php │ │ │ │ │ └── UserGroups.php │ │ │ ├── ResourceModel │ │ │ │ ├── Attribute │ │ │ │ │ └── Collection.php │ │ │ │ ├── Group │ │ │ │ │ └── Collection.php │ │ │ │ └── User │ │ │ │ │ └── Collection.php │ │ │ └── Validation │ │ │ │ ├── RegisterValidator.php │ │ │ │ └── RegisterValidatorInterface.php │ │ ├── ProgramCmsUserBundle.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── Address │ │ │ │ ├── UserAddressEntityDatetimeRepository.php │ │ │ │ ├── UserAddressEntityDecimalRepository.php │ │ │ │ ├── UserAddressEntityIntRepository.php │ │ │ │ ├── UserAddressEntityRepository.php │ │ │ │ ├── UserAddressEntityTextRepository.php │ │ │ │ └── UserAddressEntityVarcharRepository.php │ │ │ ├── Group │ │ │ │ ├── UserGroupPermissionRepository.php │ │ │ │ └── UserGroupRepository.php │ │ │ ├── UserEavAttributeRepository.php │ │ │ ├── UserEntityDatetimeRepository.php │ │ │ ├── UserEntityDecimalRepository.php │ │ │ ├── UserEntityIntRepository.php │ │ │ ├── UserEntityRepository.php │ │ │ ├── UserEntityTextRepository.php │ │ │ ├── UserEntityVarcharRepository.php │ │ │ └── UserLogRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── acl.yaml │ │ │ │ ├── adminhtml │ │ │ │ │ ├── acl.yaml │ │ │ │ │ ├── menu.yaml │ │ │ │ │ └── system.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── email_templates.yaml │ │ │ │ ├── routes.yaml │ │ │ │ ├── services.yaml │ │ │ │ └── validator.yaml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ ├── flashes │ │ │ │ │ ├── danger.png │ │ │ │ │ └── success.png │ │ │ │ │ ├── no-photo-m.png │ │ │ │ │ └── users.png │ │ │ ├── translations │ │ │ │ ├── messages.ar.yaml │ │ │ │ ├── messages.en.yaml │ │ │ │ └── messages.fr.yaml │ │ │ └── views │ │ │ │ ├── adminhtml │ │ │ │ ├── assets │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── _bundle.scss │ │ │ │ ├── layout │ │ │ │ │ ├── includes │ │ │ │ │ │ ├── address_form.yaml │ │ │ │ │ │ ├── user_acl.yaml │ │ │ │ │ │ ├── user_addresses.yaml │ │ │ │ │ │ └── user_log.yaml │ │ │ │ │ ├── user_address_edit.yaml │ │ │ │ │ ├── user_address_new.yaml │ │ │ │ │ ├── user_group_edit.yaml │ │ │ │ │ ├── user_group_index.yaml │ │ │ │ │ ├── user_group_new.yaml │ │ │ │ │ ├── user_index_connected.yaml │ │ │ │ │ ├── user_index_edit.yaml │ │ │ │ │ ├── user_index_index.yaml │ │ │ │ │ └── user_index_new.yaml │ │ │ │ └── templates │ │ │ │ │ └── account_view.html.twig │ │ │ │ └── frontend │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── source │ │ │ │ │ │ ├── _account.scss │ │ │ │ │ │ ├── _bundle.scss │ │ │ │ │ │ └── _flashes.scss │ │ │ │ └── js │ │ │ │ │ └── controllers │ │ │ │ │ ├── image_uploader_controller.js │ │ │ │ │ └── recovery_controller.js │ │ │ │ ├── layout │ │ │ │ ├── default.yaml │ │ │ │ ├── user_account.yaml │ │ │ │ ├── user_account_login.yaml │ │ │ │ ├── user_account_register.yaml │ │ │ │ ├── user_address_edit.yaml │ │ │ │ ├── user_address_index.yaml │ │ │ │ ├── user_address_new.yaml │ │ │ │ ├── user_edit_index.yaml │ │ │ │ ├── user_edit_information.yaml │ │ │ │ ├── user_edit_password.yaml │ │ │ │ ├── user_profile_index.yaml │ │ │ │ ├── user_profile_view.yaml │ │ │ │ └── user_recovery_index.yaml │ │ │ │ └── templates │ │ │ │ ├── account_dropdown.html.twig │ │ │ │ ├── account_navigation.html.twig │ │ │ │ ├── address │ │ │ │ ├── address_form.html.twig │ │ │ │ └── addresses.html.twig │ │ │ │ ├── authentication │ │ │ │ ├── login.html.twig │ │ │ │ └── register.html.twig │ │ │ │ ├── community.html.twig │ │ │ │ ├── dashboard │ │ │ │ ├── dashboard.html.twig │ │ │ │ ├── information.html.twig │ │ │ │ ├── navigation.bar.html.twig │ │ │ │ └── password.html.twig │ │ │ │ ├── email_templates │ │ │ │ └── recovery.html.twig │ │ │ │ ├── online.html.twig │ │ │ │ ├── recovery │ │ │ │ └── forgotten_password.html.twig │ │ │ │ └── user │ │ │ │ ├── about.html.twig │ │ │ │ ├── identity.html.twig │ │ │ │ ├── resume.html.twig │ │ │ │ └── tabs.html.twig │ │ ├── Security │ │ │ ├── LoginAuthenticator.php │ │ │ └── PermissionVoter.php │ │ ├── Ui │ │ │ ├── Component │ │ │ │ └── NewAddressButton.php │ │ │ ├── DataProvider │ │ │ │ └── WebsiteViewFilter.php │ │ │ └── Listing │ │ │ │ └── Column │ │ │ │ ├── UserActions.php │ │ │ │ ├── UserAddressActions.php │ │ │ │ └── UserGroupActions.php │ │ └── composer.json │ │ └── WebsiteBundle │ │ ├── App │ │ ├── ScopedAttributeValue.php │ │ └── ScopedAttributeValueInterface.php │ │ ├── Block │ │ ├── LocaleSwitcher.php │ │ └── WebsiteSwitcher.php │ │ ├── CHANGELOG.md │ │ ├── Controller │ │ ├── Adminhtml │ │ │ ├── Website │ │ │ │ ├── EditController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── NewController.php │ │ │ │ ├── RemoveController.php │ │ │ │ └── SaveController.php │ │ │ ├── WebsiteGroup │ │ │ │ ├── EditController.php │ │ │ │ ├── NewController.php │ │ │ │ ├── RemoveController.php │ │ │ │ └── SaveController.php │ │ │ └── WebsiteView │ │ │ │ ├── EditController.php │ │ │ │ ├── NewController.php │ │ │ │ ├── RemoveController.php │ │ │ │ └── SaveController.php │ │ └── Switcher │ │ │ └── SwitchController.php │ │ ├── DependencyInjection │ │ └── ProgramCmsWebsiteExtension.php │ │ ├── Entity │ │ ├── Website.php │ │ ├── WebsiteGroup.php │ │ └── WebsiteView.php │ │ ├── Helper │ │ ├── Config.php │ │ └── Contact.php │ │ ├── LICENSE │ │ ├── Migrations │ │ └── WebsiteSetup.php │ │ ├── Model │ │ ├── Collection │ │ │ ├── Website │ │ │ │ └── Collection.php │ │ │ ├── WebsiteGroup │ │ │ │ └── Collection.php │ │ │ └── WebsiteView │ │ │ │ └── Collection.php │ │ ├── Config │ │ │ └── Processor │ │ │ │ └── Fallback.php │ │ ├── Provider │ │ │ ├── Button │ │ │ │ ├── AddGroupButton.php │ │ │ │ ├── AddWebsiteViewButton.php │ │ │ │ ├── BackToWebsiteButton.php │ │ │ │ ├── BackToWebsiteGroupButton.php │ │ │ │ ├── RemoveWebsiteButton.php │ │ │ │ ├── RemoveWebsiteGroupButton.php │ │ │ │ ├── RemoveWebsiteViewButton.php │ │ │ │ ├── SaveWebsiteButton.php │ │ │ │ ├── SaveWebsiteGroupButton.php │ │ │ │ └── SaveWebsiteViewButton.php │ │ │ ├── CountrySelector.php │ │ │ └── DataSource │ │ │ │ ├── Groups.php │ │ │ │ ├── WebsiteTree.php │ │ │ │ ├── WebsiteViews.php │ │ │ │ └── Websites.php │ │ ├── Resolver │ │ │ ├── Website.php │ │ │ ├── WebsiteGroup.php │ │ │ └── WebsiteView.php │ │ ├── ScopeInterface.php │ │ ├── Website │ │ │ ├── DataProvider.php │ │ │ └── Form │ │ │ │ └── DataProvider.php │ │ ├── WebsiteGroup │ │ │ └── Form │ │ │ │ └── DataProvider.php │ │ ├── WebsiteManager.php │ │ ├── WebsiteManagerInterface.php │ │ ├── WebsiteView │ │ │ └── Form │ │ │ │ └── DataProvider.php │ │ └── WebsiteViewResolver.php │ │ ├── ProgramCmsWebsiteBundle.php │ │ ├── README.md │ │ ├── Repository │ │ ├── WebsiteGroupRepository.php │ │ ├── WebsiteRepository.php │ │ └── WebsiteViewRepository.php │ │ ├── Resources │ │ ├── config │ │ │ ├── adminhtml │ │ │ │ ├── acl.yaml │ │ │ │ ├── menu.yaml │ │ │ │ └── system.yaml │ │ │ ├── api.yaml │ │ │ ├── config.yaml │ │ │ ├── routes.yaml │ │ │ └── services.yaml │ │ ├── public │ │ │ ├── css │ │ │ │ └── frontend │ │ │ │ │ └── home.cms.css │ │ │ └── images │ │ │ │ ├── flags │ │ │ │ ├── ad.png │ │ │ │ ├── ae.png │ │ │ │ ├── af.png │ │ │ │ ├── ag.png │ │ │ │ ├── ai.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── ao.png │ │ │ │ ├── aq.png │ │ │ │ ├── ar.png │ │ │ │ ├── as.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── ax.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bl.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── bq.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bv.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── cc.png │ │ │ │ ├── cd.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cw.png │ │ │ │ ├── cx.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dj.png │ │ │ │ ├── dk.png │ │ │ │ ├── dm.png │ │ │ │ ├── do.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── eh.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fk.png │ │ │ │ ├── fm.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb-eng.png │ │ │ │ ├── gb-nir.png │ │ │ │ ├── gb-sct.png │ │ │ │ ├── gb-wls.png │ │ │ │ ├── gb.png │ │ │ │ ├── gd.png │ │ │ │ ├── ge.png │ │ │ │ ├── gf.png │ │ │ │ ├── gg.png │ │ │ │ ├── gh.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gm.png │ │ │ │ ├── gn.png │ │ │ │ ├── gp.png │ │ │ │ ├── gq.png │ │ │ │ ├── gr.png │ │ │ │ ├── gs.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gw.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hm.png │ │ │ │ ├── hn.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── im.png │ │ │ │ ├── in.png │ │ │ │ ├── io.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── je.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── km.png │ │ │ │ ├── kn.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── kw.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── la.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── li.png │ │ │ │ ├── lk.png │ │ │ │ ├── lr.png │ │ │ │ ├── ls.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── me.png │ │ │ │ ├── mf.png │ │ │ │ ├── mg.png │ │ │ │ ├── mh.png │ │ │ │ ├── mk.png │ │ │ │ ├── ml.png │ │ │ │ ├── mm.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── mq.png │ │ │ │ ├── mr.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mu.png │ │ │ │ ├── mv.png │ │ │ │ ├── mw.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── ne.png │ │ │ │ ├── nf.png │ │ │ │ ├── ng.png │ │ │ │ ├── ni.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nu.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── pg.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── pn.png │ │ │ │ ├── pr.png │ │ │ │ ├── ps.png │ │ │ │ ├── pt.png │ │ │ │ ├── pw.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── re.png │ │ │ │ ├── ro.png │ │ │ │ ├── rs.png │ │ │ │ ├── ru.png │ │ │ │ ├── rw.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sc.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── sh.png │ │ │ │ ├── si.png │ │ │ │ ├── sj.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── sm.png │ │ │ │ ├── sn.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── ss.png │ │ │ │ ├── st.png │ │ │ │ ├── sv.png │ │ │ │ ├── sx.png │ │ │ │ ├── sy.png │ │ │ │ ├── sz.png │ │ │ │ ├── tc.png │ │ │ │ ├── td.png │ │ │ │ ├── tf.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tj.png │ │ │ │ ├── tk.png │ │ │ │ ├── tl.png │ │ │ │ ├── tm.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── um.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── uz.png │ │ │ │ ├── va.png │ │ │ │ ├── vc.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── vu.png │ │ │ │ ├── wf.png │ │ │ │ ├── ws.png │ │ │ │ ├── xk.png │ │ │ │ ├── ye.png │ │ │ │ ├── yt.png │ │ │ │ ├── za.png │ │ │ │ ├── zm.png │ │ │ │ └── zw.png │ │ │ │ ├── messages.png │ │ │ │ ├── notifications.png │ │ │ │ └── websites.png │ │ ├── translations │ │ │ ├── messages.ar.yaml │ │ │ └── messages.en.yaml │ │ └── views │ │ │ ├── adminhtml │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── _bundle.scss │ │ │ ├── layout │ │ │ │ ├── website_website_edit.yaml │ │ │ │ ├── website_website_new.yaml │ │ │ │ ├── website_websitegroup_edit.yaml │ │ │ │ ├── website_websitegroup_new.yaml │ │ │ │ ├── website_websiteview_edit.yaml │ │ │ │ └── website_websiteview_new.yaml │ │ │ └── templates │ │ │ │ └── new_root_website.html.twig │ │ │ └── frontend │ │ │ ├── layout │ │ │ └── default.yaml │ │ │ └── templates │ │ │ ├── locale_switcher.html.twig │ │ │ └── website_switcher.html.twig │ │ └── composer.json └── design │ ├── adminhtml │ └── ProgramCms │ │ └── Backend │ │ ├── CHANGELOG.md │ │ ├── ProgramCmsBackendTheme.php │ │ ├── README.md │ │ ├── composer.json │ │ └── translations │ │ └── messages.ar.yaml │ └── frontend │ └── ProgramCms │ ├── Blank │ ├── CHANGELOG.md │ ├── ProgramCmsBlankTheme.php │ ├── README.md │ └── composer.json │ ├── Forumtimes │ ├── CHANGELOG.md │ ├── ProgramCmsCatalogBundle │ │ └── layout │ │ │ └── catalog_category_view.yaml │ ├── ProgramCmsCmsBundle │ │ └── layout │ │ │ └── cms_index_index.yaml │ ├── ProgramCmsForumtimesTheme.php │ ├── ProgramCmsPostBundle │ │ └── layout │ │ │ └── post_index_view.yaml │ ├── ProgramCmsThemeBundle │ │ ├── assets │ │ │ └── css │ │ │ │ └── source │ │ │ │ └── _bundle.scss │ │ └── layout │ │ │ └── default.yaml │ ├── README.md │ └── composer.json │ └── Sport │ ├── CHANGELOG.md │ ├── ProgramCmsSportTheme.php │ ├── README.md │ └── composer.json ├── bin ├── console ├── pcms └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── cache.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── mailer.yaml │ ├── messenger.yaml │ ├── monolog.yaml │ ├── security.yaml │ ├── services.yaml │ └── translation.yaml ├── preload.php ├── routes │ └── framework.yaml └── themes.php ├── docs ├── functional │ └── index.md ├── index.md └── technical │ ├── backend │ └── index.md │ └── frontend │ └── index.md ├── migrations └── .gitignore ├── package-lock.json ├── package.json ├── phpunit.xml.dist ├── postcss.config.js ├── progra.sql ├── public ├── chart.js ├── efEditor │ ├── efEditor.css │ ├── efEditor.js │ └── images │ │ ├── backgroundColor.png │ │ ├── bold.png │ │ ├── centerAlign.png │ │ ├── checkboxList.png │ │ ├── code.png │ │ ├── emoji.png │ │ ├── export.png │ │ ├── fullscreen.png │ │ ├── image.png │ │ ├── italic.png │ │ ├── leftAlign.png │ │ ├── numberedList.png │ │ ├── orderedList.png │ │ ├── rightAlign.png │ │ ├── separator.png │ │ ├── table.png │ │ ├── textColor.png │ │ ├── underline.png │ │ ├── url.png │ │ ├── video.png │ │ └── widget.png ├── images │ ├── backend-admin-login-demo.png │ ├── backend-category-demo.png │ ├── backend-config-demo.png │ ├── backend-email-builder-demo.png │ ├── backend-page-builder-demo.png │ ├── backend-website-demo.png │ ├── dashboard-ar.png │ ├── electroforums-logo.png │ ├── frontend-demo.png │ ├── logo-anime.png │ ├── logo.png │ ├── programcms-logo-presentation.png │ ├── programcms-logo-revolution.png │ └── programcms-logo.png └── index.php ├── robots.txt ├── tests └── bootstrap.php ├── translations ├── .gitignore └── messages.ar.yaml ├── ts_modules └── @programcms │ ├── drive │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json │ ├── loader │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json │ ├── modal │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json │ └── user │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json └── webpack.config.js /.env: -------------------------------------------------------------------------------- 1 | APP_ENV=dev 2 | APP_SECRET=4fcefdf7d0a90566d3a0f0968cdb7006 3 | DATABASE_URL="mysql://root:@127.0.0.1:3306/progra?serverVersion=8&charset=utf8mb4" 4 | MAILER_DSN="smtp://ce4c248dcf2163:****f53b@sandbox.smtp.mailtrap.io:2525" 5 | APP_DOMAIN=dev-progra.com 6 | MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0 -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- 1 | APP_ENV=dev 2 | APP_SECRET=4fcefdf7d0a90566d3a0f0968cdb7006 3 | DATABASE_URL="mysql://root:@127.0.0.1:3306/progra?serverVersion=8&charset=utf8mb4" 4 | MAILER_DSN="smtp://ce4c248dcf2163:6ee651a426f53b@sandbox.smtp.mailtrap.io:2525" 5 | APP_DOMAIN=dev-progra.com -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | # define your env variables for the test env here 2 | KERNEL_CLASS='ProgramCms\CoreBundle\App\Kernel' 3 | APP_SECRET='$ecretf0rt3st' 4 | SYMFONY_DEPRECATIONS_HELPER=999999 5 | PANTHER_APP_ENV=panther 6 | PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots 7 | -------------------------------------------------------------------------------- /app/code/ForumSuite/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-04-20) 2 | 3 | * Initialize Suite 4 | 5 | -------------------------------------------------------------------------------- /app/code/ForumSuite/ExcellenceBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ForumSuite/ExcellenceBundle/README.md: -------------------------------------------------------------------------------- 1 | The Forum bundle contains common infrastructure that provides an ability to apply Forum Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ForumSuite/ExcellenceBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Excellence": "نقاط التميز" -------------------------------------------------------------------------------- /app/code/ForumSuite/ExcellenceBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ForumSuite/ExcellenceBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/README.md: -------------------------------------------------------------------------------- 1 | The Forum bundle contains common infrastructure that provides an ability to apply Forum Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/config/acl.yaml: -------------------------------------------------------------------------------- 1 | acl: 2 | ProgramCmsUserBundle_user: 3 | -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/public/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ForumSuite/ForumBundle/Resources/public/images/login.png -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/public/images/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ForumSuite/ForumBundle/Resources/public/images/online.png -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/public/images/viewers-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ForumSuite/ForumBundle/Resources/public/images/viewers-white.png -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ForumSuite/ForumBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ForumSuite/ForumBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "forums"; -------------------------------------------------------------------------------- /app/code/ForumSuite/README.md: -------------------------------------------------------------------------------- 1 | The ForumSuite package contains common infrastructure that provides an ability to apply Forum Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AclBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AclBundle/README.md: -------------------------------------------------------------------------------- 1 | The ACL bundle contains common infrastructure that provides an ability to apply ACL in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/README.md: -------------------------------------------------------------------------------- 1 | The User bundle contains common infrastructure that provides an ability to apply Administration in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/dashboard.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/discussion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/discussion.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/down-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/flashes/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/flashes/danger.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/flashes/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/flashes/success.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/help.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/link.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/logo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/menu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/see.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/see.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/system.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/up-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/public/images/updated-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/public/images/updated-site.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- 1 | "Dashboard": "Dashboard" -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/translations/messages.es.yaml: -------------------------------------------------------------------------------- 1 | "Dashboard": "Panel" -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/translations/messages.fr.yaml: -------------------------------------------------------------------------------- 1 | "Dashboard": "Tableau de bord" 2 | "My Account": "Mon Compte" -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminBundle/Resources/views/adminhtml/assets/css/source/fonts/BlinkMacSystemFont-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminBundle/Resources/views/adminhtml/assets/css/source/fonts/BlinkMacSystemFont-Black.otf -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-07-15) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/README.md: -------------------------------------------------------------------------------- 1 | The Chat bundle contains common infrastructure that provides Chat and assistance in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/add_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/add_user.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disable_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disable_audio.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disable_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disable_camera.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/disconnect.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/enable_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/enable_audio.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/enable_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/enable_camera.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/call/users.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/close_conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/close_conversation.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/images/new_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/images/new_message.png -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/sounds/call.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/sounds/call.mp3 -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/public/sounds/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/public/sounds/notification.mp3 -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AdminChatBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminChatBundle/Resources/views/adminhtml/layout/default.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | content: 3 | blocks: 4 | chat.widget: 5 | class: ProgramCms\AdminChatBundle\Block\ChatWidget 6 | template: "@ProgramCmsAdminChatBundle/chat_widget.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminNotificationBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminNotificationBundle/README.md: -------------------------------------------------------------------------------- 1 | The AdminNotification bundle contains common infrastructure that provides an ability to apply Admin Notifications in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AdminNotificationBundle/Resources/translations/messages.zh.yaml: -------------------------------------------------------------------------------- 1 | "Cache Management": "缓存管理" -------------------------------------------------------------------------------- /app/code/ProgramCms/AdsenseBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-11-29) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AdsenseBundle/README.md: -------------------------------------------------------------------------------- 1 | The Adsense bundle contains common infrastructure that provides an ability to apply Google Adsense in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AdsenseBundle/Resources/views/frontend/layout/default.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | head: 3 | blocks: 4 | gadsense.script: 5 | class: ProgramCms\AdsenseBundle\Block\Adsense 6 | template: "@ProgramCmsAdsenseBundle/adsense.html.twig" 7 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AdsenseBundle/Resources/views/frontend/templates/post/ads.html.twig: -------------------------------------------------------------------------------- 1 |
Ads.
-------------------------------------------------------------------------------- /app/code/ProgramCms/AiBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-06-29) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AiBundle/README.md: -------------------------------------------------------------------------------- 1 | The AI bundle contains common infrastructure that provides an ability to apply AI in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AiBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "since %s Years ago": "منذ %s سنة" 2 | "Mohamed EL QUCHIRI": "محمد القشيري" 3 | "Med EL QUCHIRI": "محمد القشيري" -------------------------------------------------------------------------------- /app/code/ProgramCms/ApiBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-11-06) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ApiBundle/README.md: -------------------------------------------------------------------------------- 1 | The API bundle contains common infrastructure that provides an ability to apply API in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AssistanceBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-07-15) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/AssistanceBundle/README.md: -------------------------------------------------------------------------------- 1 | The Assistance bundle contains common infrastructure that provides assistance in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/AssistanceBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Assistance": "مساعدة" -------------------------------------------------------------------------------- /app/code/ProgramCms/AssistanceBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/AssistanceBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/AssistanceBundle/Resources/views/frontend/layout/default.yaml: -------------------------------------------------------------------------------- 1 | referenceBlocks: 2 | footer.links: 3 | blocks: 4 | assistance-link: 5 | class: ProgramCms\ThemeBundle\Block\Page\Current 6 | arguments: 7 | label: Assistance 8 | path: assistance 9 | -------------------------------------------------------------------------------- /app/code/ProgramCms/BuilderBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-04-29) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/BuilderBundle/README.md: -------------------------------------------------------------------------------- 1 | The Builder bundle contains common infrastructure that provides assistance in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/BuilderBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/BuilderBundle/Resources/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/BuilderBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/BuilderBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/CaptchaBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-10-23) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/CaptchaBundle/README.md: -------------------------------------------------------------------------------- 1 | The Captcha bundle contains common infrastructure that provides an ability to apply Captcha features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/README.md: -------------------------------------------------------------------------------- 1 | The Catalog bundle contains common infrastructure that provides an ability to apply Catalog in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/catalog.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/edit_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/edit_category.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/folder.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/locked_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/locked_folder.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/reporting.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/settings.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/public/images/top_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/public/images/top_users.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CatalogBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/CatalogBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "category"; -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/README.md: -------------------------------------------------------------------------------- 1 | The CMS bundle contains common infrastructure that provides an ability to apply CMS features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/Resources/public/images/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CmsBundle/Resources/public/images/messages.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/Resources/public/images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CmsBundle/Resources/public/images/notifications.png -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Home Page": "الصفحة الرئيسية" 2 | "Privacy and Cookie Policy": "سياسة الخصوصية وملفات تعريف الارتباط" 3 | "About Us": "معلومات عنا" 4 | "Blog": "المدونة" -------------------------------------------------------------------------------- /app/code/ProgramCms/CmsBundle/Resources/views/frontend/layout/cms_index_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/CmsBundle/Resources/views/frontend/layout/cms_index_index.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/CommentBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/CommentBundle/README.md: -------------------------------------------------------------------------------- 1 | The Comment bundle contains common infrastructure that provides an ability to apply Comment features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/CommentBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Comments": "تعليقات" -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/README.md: -------------------------------------------------------------------------------- 1 | The Config bundle contains common infrastructure that provides an ability to manage Centralized Config features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/Resources/public/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ConfigBundle/Resources/public/images/down-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/Resources/public/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ConfigBundle/Resources/public/images/up-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- 1 | "Dashboard": "Dashboard" -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/Resources/translations/messages.es.yaml: -------------------------------------------------------------------------------- 1 | "Dashboard": "Panel" -------------------------------------------------------------------------------- /app/code/ProgramCms/ConfigBundle/Resources/views/adminhtml/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "menu"; -------------------------------------------------------------------------------- /app/code/ProgramCms/ContactBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ContactBundle/README.md: -------------------------------------------------------------------------------- 1 | The Comment bundle contains common infrastructure that provides an ability to apply Comment features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ContactBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Contact Us": "اتصل بنا" -------------------------------------------------------------------------------- /app/code/ProgramCms/ContactBundle/Resources/views/frontend/layout/default.yaml: -------------------------------------------------------------------------------- 1 | referenceBlocks: 2 | footer.links: 3 | blocks: 4 | contact-us-link: 5 | class: ProgramCms\ThemeBundle\Block\Page\Current 6 | arguments: 7 | label: Contact Us 8 | path: contact-us 9 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ContentBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ContentBundle/README.md: -------------------------------------------------------------------------------- 1 | The Content bundle contains common infrastructure that provides an ability to apply Content features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ContentBundle/Resources/public/images/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ContentBundle/Resources/public/images/content.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ContentBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Content": "المحتوى" 2 | "Elements": "عناصر" 3 | "Pages": "الصفحات" 4 | "Blocks": "قطعة من المحتوى" 5 | "Design": "تصميم" 6 | "Themes": "الثيمات" -------------------------------------------------------------------------------- /app/code/ProgramCms/CoreBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/CoreBundle/README.md: -------------------------------------------------------------------------------- 1 | The Core bundle contains common infrastructure that provides an ability to apply Core features in ProgramCMS application. 2 | 3 | #Contexts: 4 | Contexts are classes that helps injecting more classes without breaking sub-classes. -------------------------------------------------------------------------------- /app/code/ProgramCms/DataPatchBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-07-28) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/DependencyBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-07-15) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/DependencyBundle/README.md: -------------------------------------------------------------------------------- 1 | The Dependency bundle contains common infrastructure that provides an ability to apply Dependency features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/README.md: -------------------------------------------------------------------------------- 1 | The ACL bundle contains common infrastructure that provides an ability to apply ACL in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/drive.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/file.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/image.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/pdf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/file_types/video.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/public/images/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/DriveBundle/Resources/public/images/rect.png -------------------------------------------------------------------------------- /app/code/ProgramCms/DriveBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "file_manager"; -------------------------------------------------------------------------------- /app/code/ProgramCms/EavBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/FavoriteBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-03-19) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/FavoriteBundle/README.md: -------------------------------------------------------------------------------- 1 | The Favorite bundle contains common infrastructure that provides Favorite in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/FavoriteBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/FavoriteBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/GdprBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-03-17) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/GdprBundle/README.md: -------------------------------------------------------------------------------- 1 | The GDPR bundle contains common infrastructure that provides GDPR in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/GdprBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/GdprBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/GdprBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "gdpr-container"; -------------------------------------------------------------------------------- /app/code/ProgramCms/GdprBundle/Resources/views/frontend/layout/default.yaml: -------------------------------------------------------------------------------- 1 | referenceBlocks: 2 | footer.links: 3 | blocks: 4 | gdpr.container: 5 | class: ProgramCms\GdprBundle\Block\GdprContainer 6 | template: "@ProgramCmsGdprBundle/gdpr_container.html.twig" 7 | -------------------------------------------------------------------------------- /app/code/ProgramCms/GtmBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-10-26) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/GtmBundle/README.md: -------------------------------------------------------------------------------- 1 | The GTM bundle contains common infrastructure that provides an ability to apply GTM in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ImportBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-06-30) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ImportBundle/README.md: -------------------------------------------------------------------------------- 1 | The Import bundle contains common infrastructure that provides an ability to Import/Export Entities in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ImportBundle/Resources/config/adminhtml/menu.yaml: -------------------------------------------------------------------------------- 1 | ## 2 | # Copyright © ProgramCMS. All rights reserved. 3 | # See COPYING.txt for license details. 4 | # 5 | # Developed by Mohamed EL QUCHIRI 6 | ## -------------------------------------------------------------------------------- /app/code/ProgramCms/ImportBundle/Resources/config/adminhtml/system.yaml: -------------------------------------------------------------------------------- 1 | ## 2 | # Copyright © ProgramCMS. All rights reserved. 3 | # See COPYING.txt for license details. 4 | # 5 | # Developed by Mohamed EL QUCHIRI 6 | ## -------------------------------------------------------------------------------- /app/code/ProgramCms/LoginAsUserBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-03-27) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/LoginAsUserBundle/README.md: -------------------------------------------------------------------------------- 1 | The LoginAsUser bundle contains common infrastructure that provides an ability to Login as User in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/LoginAsUserBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/LoginAsUserBundle/Resources/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/MailBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-03-24) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/MailBundle/README.md: -------------------------------------------------------------------------------- 1 | The Mail bundle contains common infrastructure that provides Mail in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/MailBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/MailBundle/Resources/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/MailBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/MailBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/ManagerBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ManagerBundle/README.md: -------------------------------------------------------------------------------- 1 | The Manager bundle contains common infrastructure that provides an ability to apply Manager features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ManagerBundle/Resources/public/images/manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ManagerBundle/Resources/public/images/manager.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ManagerBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Manager": "المشغل" 2 | "Installed Bundles": "الحزم المثبتة" 3 | "Browse Bundles in Store »": "تصفح الحزم في المتجر »" 4 | "Browse Themes in Store »": "تصفح الثيمات في المتجر »" -------------------------------------------------------------------------------- /app/code/ProgramCms/MarketingBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-07-15) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/MarketingBundle/README.md: -------------------------------------------------------------------------------- 1 | The Marketing bundle contains common infrastructure that provides an ability to apply Marketing features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/MarketingBundle/Resources/public/images/marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/MarketingBundle/Resources/public/images/marketing.png -------------------------------------------------------------------------------- /app/code/ProgramCms/MarketingBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Marketing": "التسويق" 2 | "Communication": "التواصل" 3 | "Email Templates": "قوالب الايمايل" 4 | "URL Rewrite": "تحويل الروابط" 5 | "Search Terms": "مصطلحات البحث" 6 | "Monetization": "تحقيق الدخل" -------------------------------------------------------------------------------- /app/code/ProgramCms/MarketingBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/MarketingBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/MessagingBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/MessagingBundle/README.md: -------------------------------------------------------------------------------- 1 | The Messaging bundle contains common infrastructure that provides an ability to apply Messaging features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/NewsletterBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/NewsletterBundle/README.md: -------------------------------------------------------------------------------- 1 | The Newsletter bundle contains common infrastructure that provides an ability to apply Newsletter features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/NewsletterBundle/Resources/public/images/newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/NewsletterBundle/Resources/public/images/newsletter.png -------------------------------------------------------------------------------- /app/code/ProgramCms/NewsletterBundle/Resources/views/adminhtml/layout/newsletter_index_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/NewsletterBundle/Resources/views/adminhtml/layout/newsletter_index_index.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/NotificationBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/NotificationBundle/README.md: -------------------------------------------------------------------------------- 1 | The Notification bundle contains common infrastructure that provides an ability to apply Notification System features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/NotificationBundle/Resources/config/notifications.yaml: -------------------------------------------------------------------------------- 1 | welcome_message: 2 | frontend_model: '' -------------------------------------------------------------------------------- /app/code/ProgramCms/NotificationBundle/Resources/public/images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/NotificationBundle/Resources/public/images/notifications.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-04-27) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/README.md: -------------------------------------------------------------------------------- 1 | The Favorite bundle contains common infrastructure that provides Favorite in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/public/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PageBundle/Resources/public/images/back.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PageBundle/Resources/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PageBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/views/adminhtml/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/views/adminhtml/layout/page_index_edit.yaml: -------------------------------------------------------------------------------- 1 | layout: editor 2 | referenceContainers: 3 | main.editor: 4 | blocks: 5 | page_editor: 6 | class: ProgramCms\PageBundle\Block\PageEditor 7 | template: '@ProgramCmsPageBundle/page_editor.html.twig' 8 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PageBundle/Resources/views/adminhtml/layout/page_index_new.yaml: -------------------------------------------------------------------------------- 1 | layout: editor 2 | referenceContainers: 3 | main.editor: 4 | blocks: 5 | page_editor: 6 | class: ProgramCms\PageBundle\Block\PageEditor 7 | template: "@ProgramCmsPageBundle/page_editor.html.twig" 8 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/README.md: -------------------------------------------------------------------------------- 1 | The Post bundle contains common infrastructure that provides an ability to apply Post features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/delete.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/dislike.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/edit.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/2columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/2columns.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/3columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/3columns.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/button.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/check_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/check_list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/code.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/column.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/divider.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/file.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/head.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/image.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/ordered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/ordered_list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/quote.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/readme.txt: -------------------------------------------------------------------------------- 1 | Color Code : #444444 -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/section.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/table.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/text.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/unordered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/unordered_list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/blocks/video.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/bold.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/center-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/center-align.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/check-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/check-list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/image.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/italic.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/left-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/left-align.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/link.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/numbered-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/numbered-list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/print.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/redo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/right-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/right-align.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/text-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/text-color.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/layers.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/settings.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/style_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/style_manager.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/traits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/traits/traits.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/underline.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/undo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/editor/unordered-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/editor/unordered-list.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/favorite.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/follow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/hot.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/left-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/like.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/love.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/manage.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/message.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/more.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/new.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/no_image.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/posts.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/report.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/public/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/public/images/right-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/adminhtml/layout/catalog_category_edit.yaml: -------------------------------------------------------------------------------- 1 | layout: admin-2columns-left 2 | requires: 3 | - includes/category_posts 4 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/adminhtml/layout/catalog_category_index.yaml: -------------------------------------------------------------------------------- 1 | layout: admin-2columns-left 2 | requires: 3 | - includes/category_posts 4 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/adminhtml/layout/post_index_new.yaml: -------------------------------------------------------------------------------- 1 | layout: admin-2columns-left 2 | requires: 3 | - includes/post_form 4 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/adminhtml/layout/user_index_edit.yaml: -------------------------------------------------------------------------------- 1 | referenceBlocks: 2 | user_form: 3 | blocks: 4 | user_posts: 5 | class: ui.block.form.fieldset 6 | after: "-" 7 | arguments: 8 | data: 9 | label: "Posts" 10 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/base/assets/css/source/_begin-ignore.css: -------------------------------------------------------------------------------- 1 | /*!rtl:begin:ignore*/ -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/base/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "editor"; 9 | @import "post"; -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/base/assets/css/source/_end-ignore.css: -------------------------------------------------------------------------------- 1 | /*!rtl:end:ignore*/ -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/catalog_category_view.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | content: 3 | blocks: 4 | category.view: 5 | class: ProgramCms\CatalogBundle\Block\Category\View 6 | template: "@ProgramCmsPostBundle/category/posts.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/post_index_archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/post_index_archive.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/post_index_trend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/post_index_trend.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/post_user_index.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | content: 3 | blocks: 4 | post.user.index: 5 | class: ProgramCms\PostBundle\Block\User\Posts 6 | template: "@ProgramCmsPostBundle/user/posts.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/layout/search_index_index.yaml: -------------------------------------------------------------------------------- 1 | referenceBlocks: 2 | search.results: 3 | blocks: 4 | search.post.results: 5 | class: ProgramCms\PostBundle\Block\Search\Post 6 | template: "@ProgramCmsPostBundle/search/posts.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/PostBundle/Resources/views/frontend/templates/post/head.html.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostReactionBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/PostReactionBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "reaction"; -------------------------------------------------------------------------------- /app/code/ProgramCms/ReportBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ReportBundle/README.md: -------------------------------------------------------------------------------- 1 | The Report bundle contains common infrastructure that provides an ability to apply Report features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/ReportBundle/Resources/public/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ReportBundle/Resources/public/images/report.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ReportBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ReportBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/RewriteBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-10-19) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/RewriteBundle/README.md: -------------------------------------------------------------------------------- 1 | The ACL bundle contains common infrastructure that provides an ability to apply ACL in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/RouterBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-19) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/RouterBundle/README.md: -------------------------------------------------------------------------------- 1 | The Router bundle contains common infrastructure that provides an ability to apply and use routes in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/SearchBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/SearchBundle/README.md: -------------------------------------------------------------------------------- 1 | The Search bundle contains common infrastructure that provides an ability to apply Search Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/SearchBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Search anything here ..": "ابحث عن أي شيء هنا .." 2 | "Advanced Search": "البحث المتقدم" -------------------------------------------------------------------------------- /app/code/ProgramCms/SearchBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SearchBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/SecurityBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/SecurityBundle/README.md: -------------------------------------------------------------------------------- 1 | The Security bundle contains common infrastructure that provides an ability to apply Security operations in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/SecurityBundle/Resources/translations/messages.ar.yaml: -------------------------------------------------------------------------------- 1 | "Security": "الحماية" -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/README.md: -------------------------------------------------------------------------------- 1 | The Search bundle contains common infrastructure that provides an ability to apply Search Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/Resources/public/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SocialShareBundle/Resources/public/images/facebook.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/Resources/public/images/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SocialShareBundle/Resources/public/images/instagram.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/Resources/public/images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SocialShareBundle/Resources/public/images/linkedin.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SocialShareBundle/Resources/public/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SocialShareBundle/Resources/public/images/twitter.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/README.md: -------------------------------------------------------------------------------- 1 | The Search bundle contains common infrastructure that provides an ability to apply Search Model features in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/Resources/public/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SupportBundle/Resources/public/images/facebook.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/Resources/public/images/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SupportBundle/Resources/public/images/instagram.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/Resources/public/images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SupportBundle/Resources/public/images/linkedin.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/Resources/public/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/SupportBundle/Resources/public/images/twitter.png -------------------------------------------------------------------------------- /app/code/ProgramCms/SupportBundle/Resources/views/frontend/layout/post_index_view.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | sidebar.additional.sticky: 3 | blocks: 4 | post_share: 5 | class: ProgramCms\SocialShareBundle\Block\Share 6 | template: "@ProgramCmsSocialShareBundle/post/share.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-19) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/favicon.ico -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/logo-anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/logo-anime.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/favicon/logo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/loader/spinner-1.5s-90px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/loader/spinner-1.5s-90px.gif -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/loader/spinner-1s-150px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/loader/spinner-1s-150px.gif -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/logo-anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/logo-anime.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/logo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/preview.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/programcms-logo-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/programcms-logo-presentation.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/public/images/programcms-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/public/images/programcms-logo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/views/adminhtml/page_layout/editor.yaml: -------------------------------------------------------------------------------- 1 | require: admin-1column 2 | referenceContainers: 3 | page.content: 4 | containers: 5 | main.editor: 6 | htmlTag: div 7 | htmlClass: main-wrapper 8 | removes: 9 | - main.wrapper -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/views/frontend/assets/css/source/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/ThemeBundle/Resources/views/frontend/assets/css/source/_header.scss -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/views/frontend/page_layout/2columns-left.yaml: -------------------------------------------------------------------------------- 1 | require: 1column 2 | 3 | referenceContainers: 4 | columns: 5 | containers: 6 | sidebar.main: 7 | htmlTag: div 8 | htmlClass: col-md side-col 9 | before: "-" 10 | -------------------------------------------------------------------------------- /app/code/ProgramCms/ThemeBundle/Resources/views/frontend/page_layout/3columns.yaml: -------------------------------------------------------------------------------- 1 | require: 2columns-left 2 | 3 | referenceContainers: 4 | columns: 5 | containers: 6 | sidebar.additional: 7 | htmlTag: div 8 | htmlClass: col-md 9 | after: "-" -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/README.md: -------------------------------------------------------------------------------- 1 | The UI bundle contains common infrastructure that provides an ability to apply and use UI in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/config/doctrine.yaml: -------------------------------------------------------------------------------- 1 | doctrine: 2 | orm: 3 | resolve_target_entities: 4 | App\Model\InvoiceSubjectInterface: App\Entity\Customer -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/back.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/calendar.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/close-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/close-sign.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/down-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/filters.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/folder-open.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/folder-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/folder-search.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/left-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/open-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/open-sign.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/right-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/search.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/up-arrow.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/public/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/public/images/upload.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/translations/messages.es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/translations/messages.es.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/translations/messages.fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UiBundle/Resources/translations/messages.fr.yaml -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/views/adminhtml/assets/css/source/_extends.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | -------------------------------------------------------------------------------- /app/code/ProgramCms/UiBundle/Resources/views/adminhtml/assets/css/source/components/_form.scss: -------------------------------------------------------------------------------- 1 | .form-control { 2 | &:hover { 3 | border: 1px solid #888888; 4 | } 5 | } -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/README.md: -------------------------------------------------------------------------------- 1 | The User bundle contains common infrastructure that provides an ability to apply and use users in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/public/images/flashes/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UserBundle/Resources/public/images/flashes/danger.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/public/images/flashes/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UserBundle/Resources/public/images/flashes/success.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/public/images/no-photo-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UserBundle/Resources/public/images/no-photo-m.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/public/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/UserBundle/Resources/public/images/users.png -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- 1 | hello: "Bonjour" -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/translations/messages.fr.yaml: -------------------------------------------------------------------------------- 1 | "Global": "Global" 2 | "Per Website": "Par Site Web" -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/views/adminhtml/layout/user_address_edit.yaml: -------------------------------------------------------------------------------- 1 | layout: admin-2columns-left 2 | requires: 3 | - includes/address_form -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/views/adminhtml/layout/user_address_new.yaml: -------------------------------------------------------------------------------- 1 | layout: admin-2columns-left 2 | requires: 3 | - includes/address_form -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/views/frontend/assets/css/source/_bundle.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright © ProgramCMS. All rights reserved. 3 | * See COPYING.txt for license details. 4 | * 5 | * Developed by Mohamed EL QUCHIRI 6 | */ 7 | 8 | @import "flashes"; 9 | @import "account"; -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/views/frontend/layout/user_account_login.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | content: 3 | blocks: 4 | user.login.form: 5 | class: ProgramCms\UserBundle\Block\Account\Login 6 | template: "@ProgramCmsUserBundle/authentication/login.html.twig" 7 | -------------------------------------------------------------------------------- /app/code/ProgramCms/UserBundle/Resources/views/frontend/layout/user_profile_index.yaml: -------------------------------------------------------------------------------- 1 | referenceContainers: 2 | content: 3 | blocks: 4 | user.community.block: 5 | class: ProgramCms\UserBundle\Block\Community 6 | template: "@ProgramCmsUserBundle/community.html.twig" -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-20) 2 | 3 | * Initialize Bundle 4 | 5 | -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/README.md: -------------------------------------------------------------------------------- 1 | The User bundle contains common infrastructure that provides an ability to apply and use websites in ProgramCMS application. -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/config/api.yaml: -------------------------------------------------------------------------------- 1 | ## 2 | # Copyright © ProgramCMS. All rights reserved. 3 | # See COPYING.txt for license details. 4 | # 5 | # Developed by Mohamed EL QUCHIRI 6 | ## 7 | api: 8 | -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/css/frontend/home.cms.css: -------------------------------------------------------------------------------- 1 | .home-cms { 2 | 3 | } 4 | .home-cms .home-cms-right-panel .card { 5 | margin-bottom: 17px; 6 | } -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ad.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ae.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/af.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ag.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ai.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/al.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/am.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ao.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/aq.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ar.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/as.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/at.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/au.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/aw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ax.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/az.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ba.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bb.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bd.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/be.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bi.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bj.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bq.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/br.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bs.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/by.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/bz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ca.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cd.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ch.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ci.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ck.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/co.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cx.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cy.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/cz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/de.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dj.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/do.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/dz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ec.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ee.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/eg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/eh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/er.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/es.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/et.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fi.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fj.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/fr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ga.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-eng.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-nir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-nir.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-sct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-sct.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb-wls.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gb.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gd.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ge.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gi.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gp.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gq.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gs.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/gy.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ht.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/hu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/id.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ie.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/il.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/im.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/in.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/io.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/iq.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ir.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/is.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/it.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/je.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/jp.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ke.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ki.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/km.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kp.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ky.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/kz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/la.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lb.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/li.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ls.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/lv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ly.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ma.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/md.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/me.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ml.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mo.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mp.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mq.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ms.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mx.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/my.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/mz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/na.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ne.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ng.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ni.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/no.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/np.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/nz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/om.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pa.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pe.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ph.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ps.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/pw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/py.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/qa.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/re.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ro.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/rs.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ru.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/rw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sa.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sb.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sd.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/se.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sh.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/si.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sj.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/so.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ss.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/st.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sx.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sy.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/sz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/td.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/th.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tj.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tl.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/to.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tr.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tv.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/tz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ua.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ug.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/um.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/us.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/uy.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/uz.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/va.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vc.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ve.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vg.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vi.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vn.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/vu.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/wf.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ws.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/xk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/xk.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/ye.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/yt.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/za.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/zm.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/flags/zw.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/messages.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/notifications.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/public/images/websites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/public/images/websites.png -------------------------------------------------------------------------------- /app/code/ProgramCms/WebsiteBundle/Resources/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/code/ProgramCms/WebsiteBundle/Resources/translations/messages.en.yaml -------------------------------------------------------------------------------- /app/design/adminhtml/ProgramCms/Backend/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-19) 2 | 3 | * Initialize Theme 4 | 5 | -------------------------------------------------------------------------------- /app/design/adminhtml/ProgramCms/Backend/README.md: -------------------------------------------------------------------------------- 1 | The Blank Theme contains common infrastructure that provides an ability to apply and use blank theme in ProgramCMS application. -------------------------------------------------------------------------------- /app/design/adminhtml/ProgramCms/Backend/translations/messages.ar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elquchiri/programcms/f84f8ad885e32b77c1e12cdf74c6082eb24230fe/app/design/adminhtml/ProgramCms/Backend/translations/messages.ar.yaml -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Blank/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2023-03-19) 2 | 3 | * Initialize Theme 4 | 5 | -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Blank/README.md: -------------------------------------------------------------------------------- 1 | The Blank Theme contains common infrastructure that provides an ability to apply and use theme in ProgramCMS application. -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Forumtimes/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-02-08) 2 | 3 | * Initialize Theme 4 | 5 | -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Forumtimes/ProgramCmsThemeBundle/layout/default.yaml: -------------------------------------------------------------------------------- 1 | moves: 2 | header.panel.wrapper: 3 | destination: page.wrapper 4 | before: "-" 5 | form.search.mini: 6 | destination: navigation.bar 7 | -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Forumtimes/README.md: -------------------------------------------------------------------------------- 1 | The Blank Theme contains common infrastructure that provides an ability to apply and use theme in ProgramCMS application. -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Sport/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2024-02-08) 2 | 3 | * Initialize Theme 4 | 5 | -------------------------------------------------------------------------------- /app/design/frontend/ProgramCms/Sport/README.md: -------------------------------------------------------------------------------- 1 | The Blank Theme contains common infrastructure that provides an ability to apply and use theme in ProgramCMS application. -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | mailer: 3 | dsn: '%env(MAILER_DSN)%' 4 | -------------------------------------------------------------------------------- /config/packages/services.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | autowire: true # Automatically injects dependencies in your services. 4 | autoconfigure: true # Automatically registers your services as commands, event subscribers, etc. 5 | public: true -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | default_locale: en 3 | translator: 4 | default_path: '%kernel.project_dir%/translations' 5 | fallbacks: 6 | - en 7 | -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- 1 |