├── .gitignore ├── .platform.app.yaml ├── .platform ├── routes.yaml └── services.yaml ├── .sensiolabs.yml ├── .styleci.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ ├── CmfBlogBundle │ │ └── views │ │ │ └── default_layout.html.twig │ ├── LuneticsLocaleBundle │ │ └── views │ │ │ └── Switcher │ │ │ └── switcher_links.html.twig │ ├── TwigBundle │ │ └── views │ │ │ └── Exception │ │ │ └── error.html.twig │ ├── translations │ │ ├── CmfSonataPhpcrAdminIntegrationBundle.de.xliff │ │ ├── CmfSonataPhpcrAdminIntegrationBundle.en.xliff │ │ ├── CmfSonataPhpcrAdminIntegrationBundle.fr.xliff │ │ ├── CmfSonataPhpcrAdminIntegrationBundle.sk.xliff │ │ ├── messages.de.yml │ │ ├── messages.en.yml │ │ ├── messages.fr.yml │ │ └── messages.sk.yml │ └── views │ │ ├── admin │ │ ├── custom_layout.html.twig │ │ ├── form_admin_fields.html.twig │ │ ├── switcher_links.html.twig │ │ └── user_block.html.twig │ │ ├── base.html.twig │ │ ├── block │ │ └── demo_action_block.html.twig │ │ ├── demo │ │ ├── controller.html.twig │ │ └── template_explicit.html.twig │ │ ├── homepage │ │ └── index.html.twig │ │ ├── image │ │ └── upload.html.twig │ │ ├── includes │ │ ├── footer_menu.html.twig │ │ ├── main_menu.html.twig │ │ └── switcher_links.html.twig │ │ ├── security │ │ └── login.html.twig │ │ └── static_content │ │ ├── hello.html.twig │ │ └── index.html.twig ├── autoload.php └── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── phpcr_doctrine_dbal.yml.dist │ ├── phpcr_jackrabbit.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ └── services.yml ├── bin ├── console ├── reloadFixtures.sh └── symfony_requirements ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src ├── .htaccess └── AppBundle │ ├── AppBundle.php │ ├── Controller │ ├── ContentController.php │ ├── DefaultController.php │ └── SecurityController.php │ ├── DataFixtures │ └── PHPCR │ │ ├── LoadMenuData.php │ │ ├── LoadNewsData.php │ │ ├── LoadRoutingData.php │ │ └── LoadStaticPageData.php │ ├── DependencyInjection │ └── Compiler │ │ └── DocumentClassPass.php │ ├── Document │ ├── DemoClassContent.php │ ├── DemoNewsContent.php │ ├── DemoSeoContent.php │ ├── DemoSeoExtractor.php │ ├── DemoTemplateContent.php │ └── Image.php │ ├── EventListener │ └── SandboxExceptionListener.php │ ├── Resources │ ├── config │ │ ├── cmf_routing_auto.yml │ │ └── serializer │ │ │ ├── Document.DemoSeoContent.yml │ │ │ └── cmf │ │ │ └── Model.StaticContent.yml │ ├── data │ │ └── page.yml │ └── rdf-mappings │ │ ├── AppBundle.Document.DemoSeoContent.xml │ │ └── AppBundle.Document.DemoSeoExtractor.xml │ ├── Security │ └── ResourceVoter.php │ └── Twig │ └── MenuExtension.php ├── tests ├── Functional │ ├── AdminDashboardTest.php │ ├── AdminTest.php │ ├── HomepageTest.php │ ├── StaticPageTest.php │ └── WebTestCase.php ├── travis_doctrine_dbal.sh └── travis_jackrabbit.sh ├── travis.php.ini ├── vagrant ├── README.md ├── Vagrantfile └── cookbook │ ├── recipes │ └── default.rb │ └── templates │ └── default │ ├── jackrabbit.erb │ └── vhost.conf.erb ├── var ├── SymfonyRequirements.php └── logs │ └── .gitkeep └── web ├── .htaccess ├── app.php ├── app_dev.php ├── assets ├── css │ ├── sonata_admin.css │ └── style.css ├── images │ ├── pager-next.png │ └── symfony-cmf-logo.svg ├── js │ └── rawdata.js └── vendor │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── jquery.min.js ├── config.php ├── favicon.ico ├── logo_symfony_cmf.png ├── reload-fixtures.php └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.platform.app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.platform.app.yaml -------------------------------------------------------------------------------- /.platform/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.platform/routes.yaml -------------------------------------------------------------------------------- /.platform/services.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.sensiolabs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.sensiolabs.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/CmfBlogBundle/views/default_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/CmfBlogBundle/views/default_layout.html.twig -------------------------------------------------------------------------------- /app/Resources/LuneticsLocaleBundle/views/Switcher/switcher_links.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/LuneticsLocaleBundle/views/Switcher/switcher_links.html.twig -------------------------------------------------------------------------------- /app/Resources/TwigBundle/views/Exception/error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/TwigBundle/views/Exception/error.html.twig -------------------------------------------------------------------------------- /app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.de.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.de.xliff -------------------------------------------------------------------------------- /app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.en.xliff -------------------------------------------------------------------------------- /app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.fr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.fr.xliff -------------------------------------------------------------------------------- /app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.sk.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/CmfSonataPhpcrAdminIntegrationBundle.sk.xliff -------------------------------------------------------------------------------- /app/Resources/translations/messages.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/messages.de.yml -------------------------------------------------------------------------------- /app/Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /app/Resources/translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/messages.fr.yml -------------------------------------------------------------------------------- /app/Resources/translations/messages.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/translations/messages.sk.yml -------------------------------------------------------------------------------- /app/Resources/views/admin/custom_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/admin/custom_layout.html.twig -------------------------------------------------------------------------------- /app/Resources/views/admin/form_admin_fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/admin/form_admin_fields.html.twig -------------------------------------------------------------------------------- /app/Resources/views/admin/switcher_links.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/admin/switcher_links.html.twig -------------------------------------------------------------------------------- /app/Resources/views/admin/user_block.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/admin/user_block.html.twig -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/Resources/views/block/demo_action_block.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/block/demo_action_block.html.twig -------------------------------------------------------------------------------- /app/Resources/views/demo/controller.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/demo/controller.html.twig -------------------------------------------------------------------------------- /app/Resources/views/demo/template_explicit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/demo/template_explicit.html.twig -------------------------------------------------------------------------------- /app/Resources/views/homepage/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/homepage/index.html.twig -------------------------------------------------------------------------------- /app/Resources/views/image/upload.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/image/upload.html.twig -------------------------------------------------------------------------------- /app/Resources/views/includes/footer_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/includes/footer_menu.html.twig -------------------------------------------------------------------------------- /app/Resources/views/includes/main_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/includes/main_menu.html.twig -------------------------------------------------------------------------------- /app/Resources/views/includes/switcher_links.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/includes/switcher_links.html.twig -------------------------------------------------------------------------------- /app/Resources/views/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/security/login.html.twig -------------------------------------------------------------------------------- /app/Resources/views/static_content/hello.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/static_content/hello.html.twig -------------------------------------------------------------------------------- /app/Resources/views/static_content/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/Resources/views/static_content/index.html.twig -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/phpcr_doctrine_dbal.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/phpcr_doctrine_dbal.yml.dist -------------------------------------------------------------------------------- /app/config/phpcr_jackrabbit.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/phpcr_jackrabbit.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/bin/console -------------------------------------------------------------------------------- /bin/reloadFixtures.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/bin/reloadFixtures.sh -------------------------------------------------------------------------------- /bin/symfony_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/bin/symfony_requirements -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /src/AppBundle/AppBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/AppBundle.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/ContentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Controller/ContentController.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/AppBundle/DataFixtures/PHPCR/LoadMenuData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/DataFixtures/PHPCR/LoadMenuData.php -------------------------------------------------------------------------------- /src/AppBundle/DataFixtures/PHPCR/LoadNewsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/DataFixtures/PHPCR/LoadNewsData.php -------------------------------------------------------------------------------- /src/AppBundle/DataFixtures/PHPCR/LoadRoutingData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/DataFixtures/PHPCR/LoadRoutingData.php -------------------------------------------------------------------------------- /src/AppBundle/DataFixtures/PHPCR/LoadStaticPageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/DataFixtures/PHPCR/LoadStaticPageData.php -------------------------------------------------------------------------------- /src/AppBundle/DependencyInjection/Compiler/DocumentClassPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/DependencyInjection/Compiler/DocumentClassPass.php -------------------------------------------------------------------------------- /src/AppBundle/Document/DemoClassContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/DemoClassContent.php -------------------------------------------------------------------------------- /src/AppBundle/Document/DemoNewsContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/DemoNewsContent.php -------------------------------------------------------------------------------- /src/AppBundle/Document/DemoSeoContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/DemoSeoContent.php -------------------------------------------------------------------------------- /src/AppBundle/Document/DemoSeoExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/DemoSeoExtractor.php -------------------------------------------------------------------------------- /src/AppBundle/Document/DemoTemplateContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/DemoTemplateContent.php -------------------------------------------------------------------------------- /src/AppBundle/Document/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Document/Image.php -------------------------------------------------------------------------------- /src/AppBundle/EventListener/SandboxExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/EventListener/SandboxExceptionListener.php -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/cmf_routing_auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/config/cmf_routing_auto.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/serializer/Document.DemoSeoContent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/config/serializer/Document.DemoSeoContent.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/serializer/cmf/Model.StaticContent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/config/serializer/cmf/Model.StaticContent.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/data/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/data/page.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/rdf-mappings/AppBundle.Document.DemoSeoContent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/rdf-mappings/AppBundle.Document.DemoSeoContent.xml -------------------------------------------------------------------------------- /src/AppBundle/Resources/rdf-mappings/AppBundle.Document.DemoSeoExtractor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Resources/rdf-mappings/AppBundle.Document.DemoSeoExtractor.xml -------------------------------------------------------------------------------- /src/AppBundle/Security/ResourceVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Security/ResourceVoter.php -------------------------------------------------------------------------------- /src/AppBundle/Twig/MenuExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/src/AppBundle/Twig/MenuExtension.php -------------------------------------------------------------------------------- /tests/Functional/AdminDashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/Functional/AdminDashboardTest.php -------------------------------------------------------------------------------- /tests/Functional/AdminTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/Functional/AdminTest.php -------------------------------------------------------------------------------- /tests/Functional/HomepageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/Functional/HomepageTest.php -------------------------------------------------------------------------------- /tests/Functional/StaticPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/Functional/StaticPageTest.php -------------------------------------------------------------------------------- /tests/Functional/WebTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/Functional/WebTestCase.php -------------------------------------------------------------------------------- /tests/travis_doctrine_dbal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/travis_doctrine_dbal.sh -------------------------------------------------------------------------------- /tests/travis_jackrabbit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/tests/travis_jackrabbit.sh -------------------------------------------------------------------------------- /travis.php.ini: -------------------------------------------------------------------------------- 1 | memory_limit = -1 -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/cookbook/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/vagrant/cookbook/recipes/default.rb -------------------------------------------------------------------------------- /vagrant/cookbook/templates/default/jackrabbit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/vagrant/cookbook/templates/default/jackrabbit.erb -------------------------------------------------------------------------------- /vagrant/cookbook/templates/default/vhost.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/vagrant/cookbook/templates/default/vhost.conf.erb -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/assets/css/sonata_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/css/sonata_admin.css -------------------------------------------------------------------------------- /web/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/css/style.css -------------------------------------------------------------------------------- /web/assets/images/pager-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/images/pager-next.png -------------------------------------------------------------------------------- /web/assets/images/symfony-cmf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/images/symfony-cmf-logo.svg -------------------------------------------------------------------------------- /web/assets/js/rawdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/js/rawdata.js -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /web/assets/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /web/assets/vendor/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/assets/vendor/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/assets/vendor/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/assets/vendor/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/assets/vendor/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/assets/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/assets/vendor/jquery.min.js -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/logo_symfony_cmf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/logo_symfony_cmf.png -------------------------------------------------------------------------------- /web/reload-fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/reload-fixtures.php -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/cmf-sandbox/HEAD/web/robots.txt --------------------------------------------------------------------------------