├── .bowerrc ├── .editorconfig ├── .formatter.yml ├── .gitignore ├── .gitsplit.yml ├── .gush.yml ├── .php_cs ├── .translation.yml ├── .travis.yml ├── CHANGELOG-0.5.md ├── CHANGELOG-1.0.md ├── CHANGELOG-2.0.md ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── app ├── AppCache.php ├── AppKernel.php ├── DoctrineMigrations │ └── Version20160131002537.php ├── Resources │ ├── StoreFallbackBundle │ │ └── views │ │ │ └── Exception │ │ │ └── error404.html.twig │ ├── StoreOverrideBundle │ │ └── views │ │ │ └── Exception │ │ │ ├── error.html.twig │ │ │ └── error503.html.twig │ └── views │ │ └── _base.html.twig ├── autoload.php ├── config │ ├── common │ │ ├── cache.yml │ │ ├── filesystem.yml │ │ ├── metrics.yml │ │ ├── services.yml │ │ ├── sitemap.yml │ │ ├── translations.yml │ │ └── twig.yml │ ├── config.yml │ ├── config_dev.yml │ ├── config_local.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── heroku.php │ ├── parameters.yml.dist │ ├── parameters_dev.yml │ ├── parameters_test.yml │ ├── routing │ │ ├── routing.yml │ │ ├── routing_admin.yml │ │ ├── routing_api.yml │ │ ├── routing_dev.yml │ │ ├── routing_local.yml │ │ └── routing_store.yml │ └── security │ │ ├── accessControl.yml │ │ ├── firewalls.yml │ │ └── security.yml ├── console └── install.sh ├── appveyor.yml ├── behat.yml.dist ├── bower.json ├── composer.json ├── composer.lock ├── docker ├── README.md └── docker-compose.yml ├── features ├── admin │ ├── category.feature │ ├── login.feature │ ├── manufacturer.feature │ ├── menu.feature │ ├── pack.feature │ └── product.feature ├── store │ ├── address.feature │ ├── cart.feature │ ├── category.feature │ ├── coupon.feature │ ├── homepage.feature │ ├── login.feature │ ├── not_found.feature │ ├── pack.feature │ ├── page.feature │ ├── password_recover.feature │ ├── product.feature │ ├── registration.feature │ ├── store_unavailable.feature │ └── user.feature └── workflow │ ├── page.feature │ ├── payment.feature │ ├── product.feature │ └── purchasables_in_cart.feature ├── gruntfile.js ├── heroku.json ├── humans.txt ├── package.json ├── phpunit.xml.dist ├── scripts └── reload ├── src └── Elcodi │ ├── Admin │ ├── AttributeBundle │ │ ├── AdminAttributeBundle.php │ │ ├── Controller │ │ │ ├── AttributeController.php │ │ │ └── Component │ │ │ │ └── AttributeComponentController.php │ │ ├── DependencyInjection │ │ │ └── AdminAttributeExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ └── AttributeType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Attribute │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ ├── BannerBundle │ │ ├── AdminBannerBundle.php │ │ ├── Controller │ │ │ ├── BannerController.php │ │ │ └── BannerZoneController.php │ │ ├── DependencyInjection │ │ │ └── AdminBannerExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ ├── BannerType.php │ │ │ │ └── BannerZoneType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ ├── Banner │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listComponent.html.twig │ │ │ ├── nav.html.twig │ │ │ ├── new.html.twig │ │ │ ├── newComponent.html.twig │ │ │ ├── view.html.twig │ │ │ └── viewComponent.html.twig │ │ │ └── BannerZone │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listComponent.html.twig │ │ │ ├── new.html.twig │ │ │ ├── newComponent.html.twig │ │ │ ├── view.html.twig │ │ │ └── viewComponent.html.twig │ ├── CartBundle │ │ ├── AdminCartBundle.php │ │ ├── Builder │ │ │ ├── MenuBuilder.php │ │ │ └── OrdersNotShippedBuilder.php │ │ ├── Controller │ │ │ ├── Component │ │ │ │ ├── CustomerOrderComponentController.php │ │ │ │ └── OrderComponentController.php │ │ │ ├── CustomerOrderController.php │ │ │ └── OrderController.php │ │ ├── DependencyInjection │ │ │ └── AdminCartExtension.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ ├── CustomerOrder │ │ │ └── list.html.twig │ │ │ └── Order │ │ │ ├── address.html.twig │ │ │ ├── date.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ ├── CoreBundle │ │ ├── AdminCoreBundle.php │ │ ├── Behat │ │ │ └── Context.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── Abstracts │ │ │ │ ├── AbstractAdminController.php │ │ │ │ └── AbstractStatsController.php │ │ │ ├── HomeController.php │ │ │ └── MenuController.php │ │ ├── DependencyInjection │ │ │ └── AdminCoreExtension.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ ├── public │ │ │ ├── components │ │ │ │ ├── frontendcore-js │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── _oGlobalSettings.js │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── core.js │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── desktop.js │ │ │ │ │ │ └── mobile.js │ │ │ │ │ ├── ie-old.js │ │ │ │ │ ├── libs │ │ │ │ │ │ └── tinyMCE │ │ │ │ │ │ │ ├── langs │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ ├── advlist │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── anchor │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── autolink │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── autoresize │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── autosave │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── bbcode │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── charmap │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── contextmenu │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── directionality │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── emoticons │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── example_dependency │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── fullpage │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── importcss │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── insertdatetime │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── layer │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── legacyoutput │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── lists │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ │ ├── moxieplayer.swf │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── nonbreaking │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── noneditable │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── paste │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── preview │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── print │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── save │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── searchreplace │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── spellchecker │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── tabfocus │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── textcolor │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── visualblocks │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── visualchars │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ └── wordcount │ │ │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ │ │ ├── skins │ │ │ │ │ │ │ └── lightgray │ │ │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ │ │ │ └── tinymce.woff │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ │ │ ├── object.gif │ │ │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ │ │ └── wline.gif │ │ │ │ │ │ │ │ ├── skin.ie7.min.css │ │ │ │ │ │ │ │ └── skin.min.css │ │ │ │ │ │ │ ├── themes │ │ │ │ │ │ │ └── modern │ │ │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ │ │ └── tinymce.min.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ ├── scss-group.js │ │ │ │ │ │ └── skin-selector.js │ │ │ │ │ ├── shims │ │ │ │ │ │ ├── color-polyfill.js │ │ │ │ │ │ ├── polyfiller.js │ │ │ │ │ │ └── shims │ │ │ │ │ │ │ ├── FlashCanvas │ │ │ │ │ │ │ ├── canvas2png.js │ │ │ │ │ │ │ ├── flashcanvas.js │ │ │ │ │ │ │ └── flashcanvas.swf │ │ │ │ │ │ │ ├── FlashCanvasPro │ │ │ │ │ │ │ ├── canvas2png.js │ │ │ │ │ │ │ ├── flash10canvas.swf │ │ │ │ │ │ │ ├── flash9canvas.swf │ │ │ │ │ │ │ └── flashcanvas.js │ │ │ │ │ │ │ ├── canvas-blob.js │ │ │ │ │ │ │ ├── color-picker.js │ │ │ │ │ │ │ ├── combos │ │ │ │ │ │ │ ├── 1.js │ │ │ │ │ │ │ ├── 10.js │ │ │ │ │ │ │ ├── 11.js │ │ │ │ │ │ │ ├── 12.js │ │ │ │ │ │ │ ├── 13.js │ │ │ │ │ │ │ ├── 14.js │ │ │ │ │ │ │ ├── 15.js │ │ │ │ │ │ │ ├── 16.js │ │ │ │ │ │ │ ├── 17.js │ │ │ │ │ │ │ ├── 18.js │ │ │ │ │ │ │ ├── 2.js │ │ │ │ │ │ │ ├── 21.js │ │ │ │ │ │ │ ├── 22.js │ │ │ │ │ │ │ ├── 23.js │ │ │ │ │ │ │ ├── 25.js │ │ │ │ │ │ │ ├── 27.js │ │ │ │ │ │ │ ├── 28.js │ │ │ │ │ │ │ ├── 29.js │ │ │ │ │ │ │ ├── 3.js │ │ │ │ │ │ │ ├── 30.js │ │ │ │ │ │ │ ├── 31.js │ │ │ │ │ │ │ ├── 33.js │ │ │ │ │ │ │ ├── 34.js │ │ │ │ │ │ │ ├── 4.js │ │ │ │ │ │ │ ├── 5.js │ │ │ │ │ │ │ ├── 6.js │ │ │ │ │ │ │ ├── 7.js │ │ │ │ │ │ │ ├── 8.js │ │ │ │ │ │ │ ├── 9.js │ │ │ │ │ │ │ ├── 97.js │ │ │ │ │ │ │ ├── 98.js │ │ │ │ │ │ │ └── 99.js │ │ │ │ │ │ │ ├── details.js │ │ │ │ │ │ │ ├── dom-extend.js │ │ │ │ │ │ │ ├── es5.js │ │ │ │ │ │ │ ├── es6.js │ │ │ │ │ │ │ ├── excanvas.js │ │ │ │ │ │ │ ├── filereader-xhr.js │ │ │ │ │ │ │ ├── form-combat.js │ │ │ │ │ │ │ ├── form-core.js │ │ │ │ │ │ │ ├── form-datalist-lazy.js │ │ │ │ │ │ │ ├── form-datalist.js │ │ │ │ │ │ │ ├── form-fixrangechange.js │ │ │ │ │ │ │ ├── form-inputmode.js │ │ │ │ │ │ │ ├── form-message.js │ │ │ │ │ │ │ ├── form-native-extend.js │ │ │ │ │ │ │ ├── form-number-date-api.js │ │ │ │ │ │ │ ├── form-number-date-ui.js │ │ │ │ │ │ │ ├── form-shim-extend.js │ │ │ │ │ │ │ ├── form-shim-extend2.js │ │ │ │ │ │ │ ├── form-validation.js │ │ │ │ │ │ │ ├── form-validators.js │ │ │ │ │ │ │ ├── forms-picker.js │ │ │ │ │ │ │ ├── geolocation.js │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── formcfg-ar.js │ │ │ │ │ │ │ ├── formcfg-ca.js │ │ │ │ │ │ │ ├── formcfg-ch-CN.js │ │ │ │ │ │ │ ├── formcfg-cs.js │ │ │ │ │ │ │ ├── formcfg-de.js │ │ │ │ │ │ │ ├── formcfg-el.js │ │ │ │ │ │ │ ├── formcfg-en.js │ │ │ │ │ │ │ ├── formcfg-es.js │ │ │ │ │ │ │ ├── formcfg-fa.js │ │ │ │ │ │ │ ├── formcfg-fr.js │ │ │ │ │ │ │ ├── formcfg-he.js │ │ │ │ │ │ │ ├── formcfg-hi.js │ │ │ │ │ │ │ ├── formcfg-hu.js │ │ │ │ │ │ │ ├── formcfg-it.js │ │ │ │ │ │ │ ├── formcfg-ja.js │ │ │ │ │ │ │ ├── formcfg-lt.js │ │ │ │ │ │ │ ├── formcfg-nl.js │ │ │ │ │ │ │ ├── formcfg-no.js │ │ │ │ │ │ │ ├── formcfg-pl.js │ │ │ │ │ │ │ ├── formcfg-pt-BR.js │ │ │ │ │ │ │ ├── formcfg-pt-PT.js │ │ │ │ │ │ │ ├── formcfg-pt.js │ │ │ │ │ │ │ ├── formcfg-ru.js │ │ │ │ │ │ │ ├── formcfg-sv.js │ │ │ │ │ │ │ ├── formcfg-zh-CN.js │ │ │ │ │ │ │ └── formcfg-zh-TW.js │ │ │ │ │ │ │ ├── jme │ │ │ │ │ │ │ ├── alternate-media.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── controls.css │ │ │ │ │ │ │ ├── jme.eot │ │ │ │ │ │ │ ├── jme.svg │ │ │ │ │ │ │ ├── jme.ttf │ │ │ │ │ │ │ ├── jme.woff │ │ │ │ │ │ │ ├── mediacontrols-lazy.js │ │ │ │ │ │ │ ├── mediacontrols.js │ │ │ │ │ │ │ └── playlist.js │ │ │ │ │ │ │ ├── jpicker │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── AlphaBar.png │ │ │ │ │ │ │ │ ├── Bars.png │ │ │ │ │ │ │ │ ├── Maps.png │ │ │ │ │ │ │ │ ├── NoColor.png │ │ │ │ │ │ │ │ ├── bar-opacity.png │ │ │ │ │ │ │ │ ├── map-opacity.png │ │ │ │ │ │ │ │ ├── mappoint.gif │ │ │ │ │ │ │ │ ├── picker.gif │ │ │ │ │ │ │ │ ├── preview-opacity.png │ │ │ │ │ │ │ │ └── rangearrows.gif │ │ │ │ │ │ │ └── jpicker.css │ │ │ │ │ │ │ ├── matchMedia.js │ │ │ │ │ │ │ ├── mediacapture-picker.js │ │ │ │ │ │ │ ├── mediacapture.js │ │ │ │ │ │ │ ├── mediaelement-core.js │ │ │ │ │ │ │ ├── mediaelement-debug.js │ │ │ │ │ │ │ ├── mediaelement-jaris.js │ │ │ │ │ │ │ ├── mediaelement-native-fix.js │ │ │ │ │ │ │ ├── mediaelement-yt.js │ │ │ │ │ │ │ ├── moxie │ │ │ │ │ │ │ ├── flash │ │ │ │ │ │ │ │ ├── Moxie.cdn.swf │ │ │ │ │ │ │ │ └── Moxie.min.swf │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── moxie-html4.js │ │ │ │ │ │ │ │ └── moxie-swf.js │ │ │ │ │ │ │ ├── picture.js │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ └── jquery.ui.position.js │ │ │ │ │ │ │ ├── range-ui.js │ │ │ │ │ │ │ ├── sizzle.js │ │ │ │ │ │ │ ├── sticky.js │ │ │ │ │ │ │ ├── styles │ │ │ │ │ │ │ ├── color-picker.png │ │ │ │ │ │ │ ├── forms-ext.css │ │ │ │ │ │ │ ├── forms-picker.css │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ │ ├── shim-ext.css │ │ │ │ │ │ │ ├── shim.css │ │ │ │ │ │ │ ├── transparent.png │ │ │ │ │ │ │ ├── widget.eot │ │ │ │ │ │ │ ├── widget.svg │ │ │ │ │ │ │ ├── widget.ttf │ │ │ │ │ │ │ └── widget.woff │ │ │ │ │ │ │ ├── swf │ │ │ │ │ │ │ └── JarisFLVPlayer.swf │ │ │ │ │ │ │ ├── swfmini-embed.js │ │ │ │ │ │ │ ├── swfmini.js │ │ │ │ │ │ │ ├── track-ui.js │ │ │ │ │ │ │ ├── track.js │ │ │ │ │ │ │ ├── url.js │ │ │ │ │ │ │ ├── usermedia-core.js │ │ │ │ │ │ │ └── usermedia-shim.js │ │ │ │ │ ├── test │ │ │ │ │ │ ├── autocomplete.test.js │ │ │ │ │ │ ├── autosize.test.js │ │ │ │ │ │ ├── carousel.test.js │ │ │ │ │ │ ├── code.test.js │ │ │ │ │ │ ├── dropdown.test.js │ │ │ │ │ │ ├── sidemenu.test.js │ │ │ │ │ │ ├── tip.test.js │ │ │ │ │ │ ├── toggle.test.js │ │ │ │ │ │ └── truncate.test.js │ │ │ │ │ ├── tools.js │ │ │ │ │ ├── ui.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ │ ├── autosize.js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── cart.js │ │ │ │ │ │ ├── center-box.js │ │ │ │ │ │ ├── chartLibs.js │ │ │ │ │ │ ├── charts.js │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── color-polyfill.css │ │ │ │ │ │ └── spectrum.css │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── form-validation-libs.js │ │ │ │ │ │ ├── form-validation.js │ │ │ │ │ │ ├── forms-locale │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.extra.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.extra.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.extra.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.extra.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.extra.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── he.extra.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── id.extra.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.extra.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ms_MY.extra.js │ │ │ │ │ │ ├── ms_MY.js │ │ │ │ │ │ ├── nl.extra.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ru.extra.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.extra.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── zh_cn.extra.js │ │ │ │ │ │ ├── zh_cn.js │ │ │ │ │ │ └── zh_tw.js │ │ │ │ │ │ ├── image-edit.js │ │ │ │ │ │ ├── image-zoom.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── notification.js │ │ │ │ │ │ ├── parallax.js │ │ │ │ │ │ ├── polyfills.js │ │ │ │ │ │ ├── serialize.js │ │ │ │ │ │ ├── side-panel.js │ │ │ │ │ │ ├── sidemenu.js │ │ │ │ │ │ ├── sidepanel.js │ │ │ │ │ │ ├── sortable.js │ │ │ │ │ │ ├── stats.js │ │ │ │ │ │ ├── table-responsive.js │ │ │ │ │ │ ├── table.js │ │ │ │ │ │ ├── tabs.js │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ ├── tip.js │ │ │ │ │ │ ├── toggle.js │ │ │ │ │ │ ├── truncate.js │ │ │ │ │ │ └── wysiwyg.js │ │ │ │ ├── frontendcore-scss │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── _basic-objects.scss │ │ │ │ │ ├── _basic-tools.scss │ │ │ │ │ ├── _config │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _browsers.scss │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _measures.scss │ │ │ │ │ │ ├── _objects.scss │ │ │ │ │ │ └── _ui.scss │ │ │ │ │ ├── _ie-new.scss │ │ │ │ │ ├── _ie-old.scss │ │ │ │ │ ├── _main.scss │ │ │ │ │ ├── _ui.scss │ │ │ │ │ ├── base │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _defaults.scss │ │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ └── _tables.scss │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _desktop.scss │ │ │ │ │ │ ├── _mobile.scss │ │ │ │ │ │ └── _tablet.scss │ │ │ │ │ ├── external │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _mock │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _font-awesome.scss │ │ │ │ │ │ ├── compass │ │ │ │ │ │ │ ├── _animate.scss │ │ │ │ │ │ │ ├── _compass.scss │ │ │ │ │ │ │ ├── _lemonade.scss │ │ │ │ │ │ │ ├── animation │ │ │ │ │ │ │ │ ├── _animate.scss │ │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ │ ├── _shared.scss │ │ │ │ │ │ │ │ └── animate │ │ │ │ │ │ │ │ │ ├── _attention-seekers.scss │ │ │ │ │ │ │ │ │ ├── _bouncing.scss │ │ │ │ │ │ │ │ │ ├── _classes.scss │ │ │ │ │ │ │ │ │ ├── _fading.scss │ │ │ │ │ │ │ │ │ ├── _flippers.scss │ │ │ │ │ │ │ │ │ ├── _lightspeed.scss │ │ │ │ │ │ │ │ │ ├── _rotating.scss │ │ │ │ │ │ │ │ │ ├── _specials.scss │ │ │ │ │ │ │ │ │ ├── bouncing │ │ │ │ │ │ │ │ │ ├── _bouncing-entrances.scss │ │ │ │ │ │ │ │ │ └── _bouncing-exits.scss │ │ │ │ │ │ │ │ │ ├── fading │ │ │ │ │ │ │ │ │ ├── _fading-entrances.scss │ │ │ │ │ │ │ │ │ └── _fading-exits.scss │ │ │ │ │ │ │ │ │ └── rotating │ │ │ │ │ │ │ │ │ ├── _rotating-entrances.scss │ │ │ │ │ │ │ │ │ └── _rotating-exits.scss │ │ │ │ │ │ │ └── compass │ │ │ │ │ │ │ │ ├── _css3.scss │ │ │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ │ │ ├── _layout.scss │ │ │ │ │ │ │ │ ├── _reset-legacy.scss │ │ │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ │ │ ├── _support.scss │ │ │ │ │ │ │ │ ├── _typography.scss │ │ │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ │ │ ├── css3 │ │ │ │ │ │ │ │ ├── _animation.scss │ │ │ │ │ │ │ │ ├── _appearance.scss │ │ │ │ │ │ │ │ ├── _background-clip.scss │ │ │ │ │ │ │ │ ├── _background-origin.scss │ │ │ │ │ │ │ │ ├── _background-size.scss │ │ │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ │ │ │ ├── _box-sizing.scss │ │ │ │ │ │ │ │ ├── _box.scss │ │ │ │ │ │ │ │ ├── _columns.scss │ │ │ │ │ │ │ │ ├── _filter.scss │ │ │ │ │ │ │ │ ├── _font-face.scss │ │ │ │ │ │ │ │ ├── _hyphenation.scss │ │ │ │ │ │ │ │ ├── _images.scss │ │ │ │ │ │ │ │ ├── _inline-block.scss │ │ │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ │ │ ├── _pie.scss │ │ │ │ │ │ │ │ ├── _regions.scss │ │ │ │ │ │ │ │ ├── _shared.scss │ │ │ │ │ │ │ │ ├── _text-shadow.scss │ │ │ │ │ │ │ │ ├── _transform-legacy.scss │ │ │ │ │ │ │ │ ├── _transform.scss │ │ │ │ │ │ │ │ ├── _transition.scss │ │ │ │ │ │ │ │ └── _user-interface.scss │ │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ │ ├── _constants.scss │ │ │ │ │ │ │ │ ├── _display.scss │ │ │ │ │ │ │ │ └── _lists.scss │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── _grid-background.scss │ │ │ │ │ │ │ │ ├── _sticky-footer.scss │ │ │ │ │ │ │ │ └── _stretching.scss │ │ │ │ │ │ │ │ ├── reset │ │ │ │ │ │ │ │ ├── _utilities-legacy.scss │ │ │ │ │ │ │ │ └── _utilities.scss │ │ │ │ │ │ │ │ ├── typography │ │ │ │ │ │ │ │ ├── _links.scss │ │ │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ │ │ ├── _text.scss │ │ │ │ │ │ │ │ ├── _vertical_rhythm.scss │ │ │ │ │ │ │ │ ├── links │ │ │ │ │ │ │ │ │ ├── _hover-link.scss │ │ │ │ │ │ │ │ │ ├── _link-colors.scss │ │ │ │ │ │ │ │ │ └── _unstyled-link.scss │ │ │ │ │ │ │ │ ├── lists │ │ │ │ │ │ │ │ │ ├── _bullets.scss │ │ │ │ │ │ │ │ │ ├── _horizontal-list.scss │ │ │ │ │ │ │ │ │ ├── _inline-block-list.scss │ │ │ │ │ │ │ │ │ └── _inline-list.scss │ │ │ │ │ │ │ │ └── text │ │ │ │ │ │ │ │ │ ├── _ellipsis.scss │ │ │ │ │ │ │ │ │ ├── _force-wrap.scss │ │ │ │ │ │ │ │ │ ├── _nowrap.scss │ │ │ │ │ │ │ │ │ └── _replacement.scss │ │ │ │ │ │ │ │ └── utilities │ │ │ │ │ │ │ │ ├── _color.scss │ │ │ │ │ │ │ │ ├── _general.scss │ │ │ │ │ │ │ │ ├── _links.scss │ │ │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ │ │ ├── _print.scss │ │ │ │ │ │ │ │ ├── _sprites.scss │ │ │ │ │ │ │ │ ├── _tables.scss │ │ │ │ │ │ │ │ ├── _text.scss │ │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ │ └── _contrast.scss │ │ │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ │ │ ├── _hacks.scss │ │ │ │ │ │ │ │ ├── _min.scss │ │ │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ │ │ │ └── _tag-cloud.scss │ │ │ │ │ │ │ │ ├── links │ │ │ │ │ │ │ │ ├── _hover-link.scss │ │ │ │ │ │ │ │ ├── _link-colors.scss │ │ │ │ │ │ │ │ └── _unstyled-link.scss │ │ │ │ │ │ │ │ ├── lists │ │ │ │ │ │ │ │ ├── _bullets.scss │ │ │ │ │ │ │ │ ├── _horizontal-list.scss │ │ │ │ │ │ │ │ ├── _inline-block-list.scss │ │ │ │ │ │ │ │ └── _inline-list.scss │ │ │ │ │ │ │ │ ├── sprites │ │ │ │ │ │ │ │ ├── _base.scss │ │ │ │ │ │ │ │ └── _sprite-img.scss │ │ │ │ │ │ │ │ ├── tables │ │ │ │ │ │ │ │ ├── _alternating-rows-and-columns.scss │ │ │ │ │ │ │ │ ├── _borders.scss │ │ │ │ │ │ │ │ └── _scaffolding.scss │ │ │ │ │ │ │ │ └── text │ │ │ │ │ │ │ │ ├── _ellipsis.scss │ │ │ │ │ │ │ │ ├── _nowrap.scss │ │ │ │ │ │ │ │ └── _replacement.scss │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ │ ├── _font-awesome.scss │ │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ └── susy │ │ │ │ │ │ │ ├── _su.scss │ │ │ │ │ │ │ ├── _susy.scss │ │ │ │ │ │ │ ├── _susyone.scss │ │ │ │ │ │ │ └── susy │ │ │ │ │ │ │ ├── _su.scss │ │ │ │ │ │ │ ├── language │ │ │ │ │ │ │ ├── _susy.scss │ │ │ │ │ │ │ ├── _susyone.scss │ │ │ │ │ │ │ ├── susy │ │ │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ │ │ ├── _bleed.scss │ │ │ │ │ │ │ │ ├── _box-sizing.scss │ │ │ │ │ │ │ │ ├── _breakpoint-plugin.scss │ │ │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ │ │ ├── _context.scss │ │ │ │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ │ │ │ ├── _grids.scss │ │ │ │ │ │ │ │ ├── _gutters.scss │ │ │ │ │ │ │ │ ├── _isolate.scss │ │ │ │ │ │ │ │ ├── _margins.scss │ │ │ │ │ │ │ │ ├── _padding.scss │ │ │ │ │ │ │ │ ├── _rows.scss │ │ │ │ │ │ │ │ ├── _settings.scss │ │ │ │ │ │ │ │ ├── _span.scss │ │ │ │ │ │ │ │ └── _validation.scss │ │ │ │ │ │ │ └── susyone │ │ │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ │ │ ├── _isolation.scss │ │ │ │ │ │ │ │ ├── _margin.scss │ │ │ │ │ │ │ │ ├── _media.scss │ │ │ │ │ │ │ │ ├── _padding.scss │ │ │ │ │ │ │ │ └── _settings.scss │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ │ ├── _shared.scss │ │ │ │ │ │ │ ├── _support.scss │ │ │ │ │ │ │ ├── float │ │ │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ │ │ ├── _end.scss │ │ │ │ │ │ │ │ ├── _isolate.scss │ │ │ │ │ │ │ │ └── _span.scss │ │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ │ │ ├── _direction.scss │ │ │ │ │ │ │ │ ├── _inspect.scss │ │ │ │ │ │ │ │ ├── _margins.scss │ │ │ │ │ │ │ │ ├── _output.scss │ │ │ │ │ │ │ │ └── _padding.scss │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ │ │ ├── _box-sizing.scss │ │ │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ │ │ ├── _prefix.scss │ │ │ │ │ │ │ │ ├── _rem.scss │ │ │ │ │ │ │ │ └── _support.scss │ │ │ │ │ │ │ └── su │ │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ │ ├── _settings.scss │ │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ │ └── _validation.scss │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ └── __index.scss │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _brightness.scss │ │ │ │ │ │ │ ├── _contrast-color.scss │ │ │ │ │ │ │ ├── _gamma.scss │ │ │ │ │ │ │ ├── _lin2log.scss │ │ │ │ │ │ │ ├── _rem-to-px.scss │ │ │ │ │ │ │ └── _strip-unit.scss │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _backgrounds.scss │ │ │ │ │ │ │ ├── _filter-blur.scss │ │ │ │ │ │ │ ├── _font-size.scss │ │ │ │ │ │ │ ├── _line-height.scss │ │ │ │ │ │ │ ├── _parallax-slides.scss │ │ │ │ │ │ │ └── _rem-fallback.scss │ │ │ │ │ │ └── placeholders │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ │ └── _header-footer.scss │ │ │ │ │ ├── modifiers │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _border.scss │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ ├── _font.scss │ │ │ │ │ │ ├── _margin-padding.scss │ │ │ │ │ │ ├── _measures.scss │ │ │ │ │ │ ├── _text.scss │ │ │ │ │ │ ├── _transform.scss │ │ │ │ │ │ └── _visual-formatting.scss │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── animations │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _animations.scss │ │ │ │ │ │ ├── balloons │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ └── _balloon.scss │ │ │ │ │ │ ├── boxes │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _boxes.scss │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ ├── _buttons-group.scss │ │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ │ └── _pattern.scss │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ └── _filters.scss │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _footer.scss │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ ├── _form-search.scss │ │ │ │ │ │ │ ├── _form.scss │ │ │ │ │ │ │ └── _placeholder.scss │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _header-mobile.scss │ │ │ │ │ │ │ └── _header.scss │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _icons.scss │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── circle │ │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ │ ├── __patterns.scss │ │ │ │ │ │ │ │ └── _image-circle.scss │ │ │ │ │ │ │ ├── polaroid │ │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ │ ├── __patterns.scss │ │ │ │ │ │ │ │ └── _image-polaroid.scss │ │ │ │ │ │ │ └── thumbs │ │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ │ ├── _thumbnail-actions.scss │ │ │ │ │ │ │ │ ├── _thumbnail-group.scss │ │ │ │ │ │ │ │ └── _thumbnail.scss │ │ │ │ │ │ ├── labels │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _labels.scss │ │ │ │ │ │ ├── lists │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _list-horizontal.scss │ │ │ │ │ │ │ └── _list.scss │ │ │ │ │ │ ├── loading │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _loading.scss │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _msg-info.scss │ │ │ │ │ │ │ ├── _msg-ko.scss │ │ │ │ │ │ │ ├── _msg-ok.scss │ │ │ │ │ │ │ ├── _msg-warning.scss │ │ │ │ │ │ │ └── _msg.scss │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __pattern.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars-navigation-sub.scss │ │ │ │ │ │ │ ├── __vars-navigation.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ ├── _navigation-dropdown.scss │ │ │ │ │ │ │ ├── _navigation-sub.scss │ │ │ │ │ │ │ └── _navigation.scss │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ └── _pagination.scss │ │ │ │ │ │ ├── ratings │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _placeholder.scss │ │ │ │ │ │ │ └── _rank.scss │ │ │ │ │ │ ├── steps │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _steps.scss │ │ │ │ │ │ ├── switch │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ └── _switch.scss │ │ │ │ │ │ ├── tables │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ └── _tables.scss │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── __vars-mix.scss │ │ │ │ │ │ │ ├── __vars.scss │ │ │ │ │ │ │ └── _tabs.scss │ │ │ │ │ │ └── tags │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _tag-cloud.scss │ │ │ │ │ │ │ └── _tags.scss │ │ │ │ │ ├── skins │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _blue-day.scss │ │ │ │ │ │ ├── _maps.scss │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ │ ├── _defaults.scss │ │ │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ │ ├── _objects.scss │ │ │ │ │ │ │ └── _ui.scss │ │ │ │ │ └── ui │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── animations │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _animations.scss │ │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _autocomplete.scss │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _carousel.scss │ │ │ │ │ │ ├── cart │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _cart.scss │ │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _charts.scss │ │ │ │ │ │ ├── code │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _code.scss │ │ │ │ │ │ ├── image-edit │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _layout.scss │ │ │ │ │ │ └── _toolbar.scss │ │ │ │ │ │ ├── image-zoom │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _image-zoom.scss │ │ │ │ │ │ ├── modals │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _modals.scss │ │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _notifications.scss │ │ │ │ │ │ ├── side-menu │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _side-menu.scss │ │ │ │ │ │ ├── side-panel │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _side-panel.scss │ │ │ │ │ │ ├── sortable │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _sortable.scss │ │ │ │ │ │ ├── stats │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _stats.scss │ │ │ │ │ │ ├── tables │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ ├── _tables-responsive.scss │ │ │ │ │ │ └── _tables.scss │ │ │ │ │ │ ├── tags │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _tags.scss │ │ │ │ │ │ ├── tips │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _tips.scss │ │ │ │ │ │ └── wysiwyg │ │ │ │ │ │ ├── __index.scss │ │ │ │ │ │ └── _wysiwyg.scss │ │ │ │ ├── plupload │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── custom.html │ │ │ │ │ │ ├── dump.php │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ ├── all_runtimes.html │ │ │ │ │ │ │ ├── jquery_ui_widget.html │ │ │ │ │ │ │ ├── queue_widget.html │ │ │ │ │ │ │ └── s3.php │ │ │ │ │ │ └── upload.php │ │ │ │ │ ├── js │ │ │ │ │ │ ├── Moxie.swf │ │ │ │ │ │ ├── Moxie.xap │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku_IQ.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── sr_RS.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th_TH.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── uk_UA.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ │ │ └── zh_TW.js │ │ │ │ │ │ ├── jquery.plupload.queue │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── jquery.plupload.queue.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── backgrounds.gif │ │ │ │ │ │ │ │ ├── buttons-disabled.png │ │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ │ ├── done.gif │ │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ │ ├── throbber.gif │ │ │ │ │ │ │ │ └── transp50.png │ │ │ │ │ │ │ ├── jquery.plupload.queue.js │ │ │ │ │ │ │ └── jquery.plupload.queue.min.js │ │ │ │ │ │ ├── jquery.ui.plupload │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── jquery.ui.plupload.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ │ │ └── plupload.png │ │ │ │ │ │ │ ├── jquery.ui.plupload.js │ │ │ │ │ │ │ └── jquery.ui.plupload.min.js │ │ │ │ │ │ ├── moxie.js │ │ │ │ │ │ ├── moxie.min.js │ │ │ │ │ │ ├── plupload.dev.js │ │ │ │ │ │ ├── plupload.full.min.js │ │ │ │ │ │ └── plupload.min.js │ │ │ │ │ ├── license.txt │ │ │ │ │ └── readme.md │ │ │ │ └── twig.js │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── docs │ │ │ │ │ ├── docco.css │ │ │ │ │ ├── licenses.md │ │ │ │ │ ├── public │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── aller-bold.eot │ │ │ │ │ │ │ ├── aller-bold.ttf │ │ │ │ │ │ │ ├── aller-bold.woff │ │ │ │ │ │ │ ├── aller-light.eot │ │ │ │ │ │ │ ├── aller-light.ttf │ │ │ │ │ │ │ ├── aller-light.woff │ │ │ │ │ │ │ ├── novecento-bold.eot │ │ │ │ │ │ │ ├── novecento-bold.ttf │ │ │ │ │ │ │ └── novecento-bold.woff │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ └── normalize.css │ │ │ │ │ ├── release checklist.md │ │ │ │ │ ├── tests.md │ │ │ │ │ └── twig.html │ │ │ │ │ ├── package.json │ │ │ │ │ ├── twig.js │ │ │ │ │ ├── twig.min.js │ │ │ │ │ └── twig.min.js.map │ │ │ ├── css │ │ │ │ ├── ie-new.css │ │ │ │ ├── ie-old.css │ │ │ │ ├── main.css │ │ │ │ └── ui.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── av.jpg │ │ │ │ ├── avatar1_24.jpg │ │ │ │ ├── avatar1_50.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3_50.jpg │ │ │ │ ├── avatar4_50.jpg │ │ │ │ ├── avatar_24.jpg │ │ │ │ ├── avatar_50.jpg │ │ │ │ ├── avatars │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── avatar1.jpg │ │ │ │ │ └── avatar2.jpg │ │ │ │ ├── background-bamboo-small.png │ │ │ │ ├── background-bamboo.jpg │ │ │ │ ├── background-bamboo.png │ │ │ │ ├── bg.jpg │ │ │ │ ├── blueprint_icon.png │ │ │ │ ├── blur_bg.png │ │ │ │ ├── bubble-tail-l-white.png │ │ │ │ ├── bubble-tail-l.png │ │ │ │ ├── bubble-tail-r-white.png │ │ │ │ ├── bubble-tail.png │ │ │ │ ├── clipboard_icon.png │ │ │ │ ├── db-icon.png │ │ │ │ ├── doc1.png │ │ │ │ ├── doc2.png │ │ │ │ ├── doc3.png │ │ │ │ ├── dr-evil.png │ │ │ │ ├── favicon.png │ │ │ │ ├── fb-icon.png │ │ │ │ ├── fl-icon.png │ │ │ │ ├── flags │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── ad.png │ │ │ │ │ ├── ae.png │ │ │ │ │ ├── af.png │ │ │ │ │ ├── ag.png │ │ │ │ │ ├── ai.png │ │ │ │ │ ├── al.png │ │ │ │ │ ├── am.png │ │ │ │ │ ├── an.png │ │ │ │ │ ├── ao.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 │ │ │ │ │ ├── bm.png │ │ │ │ │ ├── bn.png │ │ │ │ │ ├── bo.png │ │ │ │ │ ├── br.png │ │ │ │ │ ├── bs.png │ │ │ │ │ ├── bt.png │ │ │ │ │ ├── bv.png │ │ │ │ │ ├── bw.png │ │ │ │ │ ├── by.png │ │ │ │ │ ├── bz.png │ │ │ │ │ ├── ca.png │ │ │ │ │ ├── catalonia.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 │ │ │ │ │ ├── cs.png │ │ │ │ │ ├── cu.png │ │ │ │ │ ├── cv.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 │ │ │ │ │ ├── england.png │ │ │ │ │ ├── er.png │ │ │ │ │ ├── es.png │ │ │ │ │ ├── et.png │ │ │ │ │ ├── europeanunion.png │ │ │ │ │ ├── fam.png │ │ │ │ │ ├── fi.png │ │ │ │ │ ├── fj.png │ │ │ │ │ ├── fk.png │ │ │ │ │ ├── fm.png │ │ │ │ │ ├── fo.png │ │ │ │ │ ├── fr.png │ │ │ │ │ ├── ga.png │ │ │ │ │ ├── gb.png │ │ │ │ │ ├── gd.png │ │ │ │ │ ├── ge.png │ │ │ │ │ ├── gf.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 │ │ │ │ │ ├── in.png │ │ │ │ │ ├── io.png │ │ │ │ │ ├── iq.png │ │ │ │ │ ├── ir.png │ │ │ │ │ ├── is.png │ │ │ │ │ ├── it.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── ro.png │ │ │ │ │ ├── rs.png │ │ │ │ │ ├── ru.png │ │ │ │ │ ├── rw.png │ │ │ │ │ ├── sa.png │ │ │ │ │ ├── sb.png │ │ │ │ │ ├── sc.png │ │ │ │ │ ├── scotland.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 │ │ │ │ │ ├── st.png │ │ │ │ │ ├── sv.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 │ │ │ │ │ ├── wales.png │ │ │ │ │ ├── wf.png │ │ │ │ │ ├── ws.png │ │ │ │ │ ├── ye.png │ │ │ │ │ ├── yt.png │ │ │ │ │ ├── za.png │ │ │ │ │ ├── zm.png │ │ │ │ │ └── zw.png │ │ │ │ ├── gallery │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── img1.jpg │ │ │ │ │ ├── img2.jpg │ │ │ │ │ ├── img3.jpg │ │ │ │ │ ├── img4.jpg │ │ │ │ │ ├── img5.jpg │ │ │ │ │ ├── img6.jpg │ │ │ │ │ └── img7.jpg │ │ │ │ ├── gh-icon.png │ │ │ │ ├── gp-icon.png │ │ │ │ ├── grey.png │ │ │ │ ├── icon-mic.jpg │ │ │ │ ├── in-icon.png │ │ │ │ ├── li-icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu-tail-left.png │ │ │ │ ├── mic-icon.png │ │ │ │ ├── minus.png │ │ │ │ ├── mov_bbb.mp4 │ │ │ │ ├── mov_bbb.ogg │ │ │ │ ├── photos_licenses.txt │ │ │ │ ├── pi-icon.png │ │ │ │ ├── plus.png │ │ │ │ ├── stat-down.png │ │ │ │ ├── stat-same.png │ │ │ │ ├── stat-up.png │ │ │ │ ├── state_online.png │ │ │ │ ├── state_online2.png │ │ │ │ ├── sunset2.jpg │ │ │ │ ├── tu-icon.png │ │ │ │ ├── tw-icon.png │ │ │ │ ├── uh-si.png │ │ │ │ ├── uploads │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ └── img6.jpg │ │ │ │ ├── user-icon.png │ │ │ │ └── yt-icon.png │ │ │ ├── js │ │ │ │ ├── jquery.icheck │ │ │ │ │ └── demo │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── custom.styl │ │ │ │ │ │ └── js │ │ │ │ │ │ └── custom.js │ │ │ │ ├── jquery.upload │ │ │ │ │ └── server │ │ │ │ │ │ ├── node │ │ │ │ │ │ └── public │ │ │ │ │ │ │ └── files │ │ │ │ │ │ │ └── thumbnail │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ └── php │ │ │ │ │ │ └── files │ │ │ │ │ │ └── crop.php │ │ │ │ ├── modules │ │ │ │ │ ├── boxpopuli.js │ │ │ │ │ ├── category-parent.js │ │ │ │ │ ├── confirm.js │ │ │ │ │ ├── example.js │ │ │ │ │ ├── form-coupons.js │ │ │ │ │ ├── form-refresh-on-filled.js │ │ │ │ │ ├── form-save-on-edit.js │ │ │ │ │ ├── form-shipping-rates.js │ │ │ │ │ ├── hide.js │ │ │ │ │ ├── image-delete.js │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── multiple-select.js │ │ │ │ │ ├── on-off-table.js │ │ │ │ │ ├── slug.js │ │ │ │ │ ├── upload-gallery.js │ │ │ │ │ ├── upload-single.js │ │ │ │ │ ├── variants.js │ │ │ │ │ └── window-content.js │ │ │ │ └── test │ │ │ │ │ └── example.js │ │ │ └── twig │ │ │ │ ├── commentForm.html.twig │ │ │ │ ├── commentItem.html.twig │ │ │ │ ├── commentNew.html.twig │ │ │ │ └── commentWrapper.html.twig │ │ │ ├── scss │ │ │ ├── _config │ │ │ │ ├── __index.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _objects.scss │ │ │ │ └── _ui.scss │ │ │ ├── devices │ │ │ │ ├── __index-devices.scss │ │ │ │ ├── _desktop.scss │ │ │ │ ├── _mobile.scss │ │ │ │ └── _tablet.scss │ │ │ ├── helpers │ │ │ │ ├── __index.scss │ │ │ │ ├── classes │ │ │ │ │ └── __index.scss │ │ │ │ ├── functions │ │ │ │ │ └── __index.scss │ │ │ │ ├── mixins │ │ │ │ │ └── __index.scss │ │ │ │ └── placeholders │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _icon-rounded.scss │ │ │ ├── ie-new.scss │ │ │ ├── ie-old.scss │ │ │ ├── main.scss │ │ │ ├── objects │ │ │ │ ├── __index.scss │ │ │ │ ├── boxpopuli │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _boxpopuli.scss │ │ │ │ ├── checkbox │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _checkbox.scss │ │ │ │ ├── container │ │ │ │ │ ├── __index.scss │ │ │ │ │ ├── _body.scss │ │ │ │ │ └── _container.scss │ │ │ │ ├── dashboard │ │ │ │ │ ├── __index.scss │ │ │ │ │ ├── _dashboard-panels.scss │ │ │ │ │ └── _dashboard-tabs.scss │ │ │ │ ├── date-hour │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _date-hour.scss │ │ │ │ ├── filter-reports │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _filter-reports.scss │ │ │ │ ├── fixed-bottom │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _fixed-bottom.scss │ │ │ │ ├── form-configuration │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _form-configuration.scss │ │ │ │ ├── form-grid │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _form-grid.scss │ │ │ │ ├── header-mobile │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _header-mobile.scss │ │ │ │ ├── hidden-placeholder │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _hidden-placeholder.scss │ │ │ │ ├── no-items │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _no-items.scss │ │ │ │ ├── order │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _order-history.scss │ │ │ │ ├── papa │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _papa-air.scss │ │ │ │ ├── section-header │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _section-header.scss │ │ │ │ ├── sidebar │ │ │ │ │ ├── __index.scss │ │ │ │ │ ├── _sidebar-user.scss │ │ │ │ │ └── _sidebar.scss │ │ │ │ ├── thumbnail │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _thumbnail-first-principal.scss │ │ │ │ ├── welcome │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _welcome.scss │ │ │ │ └── wysiwyg │ │ │ │ │ ├── __index.scss │ │ │ │ │ └── _fc-wysiwyg.scss │ │ │ ├── ui.scss │ │ │ └── ui │ │ │ │ └── __index.scss │ │ │ ├── translations │ │ │ ├── messages.ca.yml │ │ │ ├── messages.de.yml │ │ │ ├── messages.en.yml │ │ │ ├── messages.es.yml │ │ │ ├── messages.fi.yml │ │ │ ├── messages.fr.yml │ │ │ ├── messages.gl.yml │ │ │ ├── messages.it.yml │ │ │ └── messages.sr.yml │ │ │ └── views │ │ │ ├── Common │ │ │ ├── breadcrumb.html.twig │ │ │ ├── component.html.twig │ │ │ ├── flashMessages.html.twig │ │ │ ├── formComponent.html.twig │ │ │ ├── listComponent.html.twig │ │ │ └── viewComponent.html.twig │ │ │ ├── Forms │ │ │ ├── fields-plugins.html.twig │ │ │ └── fields.html.twig │ │ │ ├── Home │ │ │ └── index.html.twig │ │ │ ├── Navs │ │ │ ├── side.html.twig │ │ │ ├── side_elements.html.twig │ │ │ ├── side_elements_mobile.html.twig │ │ │ └── top.html.twig │ │ │ ├── Tables │ │ │ ├── actions.html.twig │ │ │ ├── head.html.twig │ │ │ └── paginator.html.twig │ │ │ ├── base.html.twig │ │ │ ├── footscript.html.twig │ │ │ ├── layout.html.twig │ │ │ └── layouts │ │ │ └── center_box.html.twig │ ├── CouponBundle │ │ ├── AdminCouponBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── Component │ │ │ │ └── CouponComponentController.php │ │ │ └── CouponController.php │ │ ├── DependencyInjection │ │ │ └── AdminCouponExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ └── CouponType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Coupon │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ ├── CurrencyBundle │ │ ├── AdminCurrencyBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── Components │ │ │ │ └── CurrencyComponentController.php │ │ │ └── CurrencyController.php │ │ ├── DataFixtures │ │ │ └── Currency │ │ │ │ └── CurrencyEuroData.php │ │ ├── DependencyInjection │ │ │ └── AdminCurrencyExtension.php │ │ ├── Form │ │ │ ├── DataMapper │ │ │ │ └── MoneyDataMapper.php │ │ │ └── Type │ │ │ │ ├── CurrencyType.php │ │ │ │ └── MoneyType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Currency │ │ │ ├── Component │ │ │ └── listComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── nav.html.twig │ ├── GeoBundle │ │ ├── AdminGeoBundle.php │ │ ├── Controller │ │ │ └── LocationController.php │ │ ├── DependencyInjection │ │ │ └── AdminGeoExtension.php │ │ ├── Form │ │ │ ├── LocationSelectorBuilder.php │ │ │ └── Type │ │ │ │ └── AddressType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ │ ├── public │ │ │ └── js │ │ │ │ └── LocationSelectors.js │ │ │ └── views │ │ │ └── Location │ │ │ └── showCitySelector.html.twig │ ├── LanguageBundle │ │ ├── AdminLanguageBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── Components │ │ │ │ └── LanguageComponentController.php │ │ │ └── LanguageController.php │ │ ├── DependencyInjection │ │ │ └── AdminLanguageExtension.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── menu.yml │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ │ └── views │ │ │ └── Language │ │ │ ├── Component │ │ │ └── listComponent.html.twig │ │ │ └── list.html.twig │ ├── MediaBundle │ │ ├── AdminMediaBundle.php │ │ ├── Controller │ │ │ ├── Component │ │ │ │ └── ImageComponentController.php │ │ │ └── ImageController.php │ │ ├── DependencyInjection │ │ │ └── AdminMediaExtension.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ ├── Gallery │ │ │ └── Component │ │ │ │ └── view.html.twig │ │ │ ├── Image │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ │ │ └── Module │ │ │ ├── _image-single-form-field.html.twig │ │ │ ├── _images-form-field.html.twig │ │ │ └── _images-gallery.html.twig │ ├── MetricBundle │ │ ├── AdminMetricBundle.php │ │ ├── AdminPanelTypes.php │ │ ├── Controller │ │ │ ├── PanelController.php │ │ │ └── ReportsController.php │ │ ├── DependencyInjection │ │ │ └── AdminMetricExtension.php │ │ ├── Model │ │ │ ├── IntervalContainer.php │ │ │ └── PartialInterval.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routing.yml │ │ │ │ ├── services.yml │ │ │ │ └── twig.yml │ │ │ └── views │ │ │ │ ├── Metric │ │ │ │ ├── metricCheese.html.twig │ │ │ │ ├── metricLine.html.twig │ │ │ │ ├── metricOrderTotals.html.twig │ │ │ │ └── metricTop.html.twig │ │ │ │ ├── Panel │ │ │ │ └── panel.html.twig │ │ │ │ └── Reports │ │ │ │ └── view.html.twig │ │ ├── Services │ │ │ └── MetricIntervalsResolver.php │ │ └── Twig │ │ │ └── MetricIntervalsExtension.php │ ├── NewsletterBundle │ │ ├── AdminNewsletterBundle.php │ │ ├── Controller │ │ │ ├── Component │ │ │ │ └── NewsletterSubscriptionComponentController.php │ │ │ └── NewsletterSubscriptionController.php │ │ ├── DependencyInjection │ │ │ └── AdminNewsletterExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ └── NewsletterSubscriptionType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── NewsletterSubscription │ │ │ ├── Component │ │ │ ├── editComponent.html.twig │ │ │ ├── listComponent.html.twig │ │ │ ├── newComponent.html.twig │ │ │ └── viewComponent.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── list.html.twig │ │ │ ├── nav.html.twig │ │ │ ├── new.html.twig │ │ │ └── view.html.twig │ ├── PageBundle │ │ ├── AdminPageBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── BlogPostController.php │ │ │ ├── Component │ │ │ │ ├── BlogPostComponentController.php │ │ │ │ ├── EmailComponentController.php │ │ │ │ └── PageComponentController.php │ │ │ ├── EmailController.php │ │ │ └── PageController.php │ │ ├── DependencyInjection │ │ │ └── AdminPageExtension.php │ │ ├── Form │ │ │ ├── EventListener │ │ │ │ └── PermanentPageSubscriber.php │ │ │ └── Type │ │ │ │ ├── BlogPostType.php │ │ │ │ ├── EmailType.php │ │ │ │ └── PageType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── eventListeners.yml │ │ │ ├── formTypes.yml │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ ├── BlogPost │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ │ │ ├── Email │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ │ │ └── Page │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ ├── PaymentBundle │ │ ├── AdminPaymentBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── DependencyInjection │ │ │ └── AdminPaymentExtension.php │ │ └── Resources │ │ │ └── config │ │ │ └── menu.yml │ ├── PluginBundle │ │ ├── AdminPluginBundle.php │ │ ├── Builder │ │ │ ├── MenuBuilder.php │ │ │ ├── PluginCategoryMenuBuilder.php │ │ │ └── PluginMenuBuilder.php │ │ ├── Controller │ │ │ └── PluginController.php │ │ ├── DependencyInjection │ │ │ ├── AdminPluginExtension.php │ │ │ └── Configuration.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── categoriesMenu.yml │ │ │ ├── menu.yml │ │ │ ├── pluginMenu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Plugin │ │ │ ├── configure.html.twig │ │ │ └── list.html.twig │ ├── ProductBundle │ │ ├── AdminProductBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ ├── CategoryController.php │ │ │ ├── Component │ │ │ │ ├── CategoryComponentController.php │ │ │ │ ├── ManufacturerComponentController.php │ │ │ │ ├── PackComponentController.php │ │ │ │ ├── ProductComponentController.php │ │ │ │ └── VariantComponentController.php │ │ │ ├── ManufacturerController.php │ │ │ ├── PackController.php │ │ │ ├── ProductController.php │ │ │ └── VariantController.php │ │ ├── DependencyInjection │ │ │ └── AdminProductExtension.php │ │ ├── EventListener │ │ │ └── NewCategoryPositionEventListener.php │ │ ├── Form │ │ │ └── Type │ │ │ │ ├── CategoryType.php │ │ │ │ ├── ManufacturerType.php │ │ │ │ ├── PackType.php │ │ │ │ ├── ProductType.php │ │ │ │ └── VariantType.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── formTypes.yml │ │ │ │ ├── menu.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── services.yml │ │ │ │ └── validator.yml │ │ │ └── views │ │ │ │ ├── Category │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── listComponent.html.twig │ │ │ │ ├── Manufacturer │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── listComponent.html.twig │ │ │ │ ├── Pack │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── listComponent.html.twig │ │ │ │ ├── Product │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── listComponent.html.twig │ │ │ │ └── Variant │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ └── listComponent.html.twig │ │ ├── Services │ │ │ └── CategorySorter.php │ │ └── Validation │ │ │ ├── MinimumMoney.php │ │ │ └── MinimumMoneyValidator.php │ ├── RuleBundle │ │ ├── AdminRuleBundle.php │ │ ├── Controller │ │ │ └── RuleController.php │ │ ├── DependencyInjection │ │ │ └── AdminRuleExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ └── RuleType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ ├── Rule │ │ │ ├── Component │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── listComponent.html.twig │ │ │ │ ├── newComponent.html.twig │ │ │ │ └── viewComponent.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── list.html.twig │ │ │ ├── nav.html.twig │ │ │ ├── new.html.twig │ │ │ └── view.html.twig │ │ │ └── RuleGroup │ │ │ ├── Component │ │ │ ├── editComponent.html.twig │ │ │ ├── listComponent.html.twig │ │ │ ├── newComponent.html.twig │ │ │ └── viewComponent.html.twig │ │ │ ├── edit.html.twig │ │ │ ├── list.html.twig │ │ │ ├── new.html.twig │ │ │ └── view.html.twig │ ├── ShippingBundle │ │ ├── AdminShippingBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── DependencyInjection │ │ │ └── AdminShippingExtension.php │ │ └── Resources │ │ │ └── config │ │ │ └── menu.yml │ ├── StoreBundle │ │ ├── AdminStoreBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ └── StoreController.php │ │ ├── DependencyInjection │ │ │ └── AdminStoreExtension.php │ │ ├── Form │ │ │ └── Type │ │ │ │ ├── StoreAddressType.php │ │ │ │ ├── StoreCorporateType.php │ │ │ │ └── StoreSettingsType.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Store │ │ │ ├── address.html.twig │ │ │ ├── corporate.html.twig │ │ │ └── settings.html.twig │ ├── TemplateBundle │ │ ├── AdminTemplateBundle.php │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── Controller │ │ │ └── TemplateController.php │ │ ├── DependencyInjection │ │ │ └── AdminTemplateExtension.php │ │ └── Resources │ │ │ ├── config │ │ │ ├── menu.yml │ │ │ └── routing.yml │ │ │ └── views │ │ │ └── Template │ │ │ └── list.html.twig │ └── UserBundle │ │ ├── AdminUserBundle.php │ │ ├── Builder │ │ └── MenuBuilder.php │ │ ├── Controller │ │ ├── AdminUserController.php │ │ ├── Component │ │ │ ├── AdminUserComponentController.php │ │ │ └── CustomerComponentController.php │ │ ├── CustomerController.php │ │ ├── PasswordController.php │ │ ├── ProfileController.php │ │ └── SecurityController.php │ │ ├── DependencyInjection │ │ └── AdminUserExtension.php │ │ ├── Form │ │ └── Type │ │ │ ├── AdminUserType.php │ │ │ ├── CustomerType.php │ │ │ ├── LoginType.php │ │ │ ├── PasswordRecoverType.php │ │ │ ├── PasswordRememberType.php │ │ │ ├── ProfileType.php │ │ │ └── RegisterType.php │ │ ├── Resources │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── menu.yml │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ ├── security │ │ │ └── roles.yml │ │ └── views │ │ │ ├── AdminUser │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ │ │ ├── Customer │ │ │ ├── edit.html.twig │ │ │ ├── editComponent.html.twig │ │ │ ├── list.html.twig │ │ │ └── listComponent.html.twig │ │ │ ├── Password │ │ │ ├── recover.html.twig │ │ │ ├── remember.html.twig │ │ │ └── sent.html.twig │ │ │ ├── Profile │ │ │ └── view.html.twig │ │ │ └── Security │ │ │ └── login.html.twig │ │ └── Security │ │ └── OneTimeLoginAuthenticator.php │ ├── Bridge │ ├── BehatBridgeBundle │ │ ├── Abstracts │ │ │ └── AbstractElcodiContext.php │ │ ├── BehatBridgeBundle.php │ │ ├── Context.php │ │ └── DoctrineContext.php │ ├── PaymentSuiteBridgeBundle │ │ ├── DependencyInjection │ │ │ └── ElcodiPaymentSuiteBridgeExtension.php │ │ ├── ElcodiPaymentSuiteBridgeBundle.php │ │ ├── EventListener │ │ │ ├── CartPaidEventListener.php │ │ │ └── OrderToPaidEventListener.php │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── eventListeners.yml │ │ │ │ └── services.yml │ │ └── Services │ │ │ └── PaymentBridge.php │ └── VisithorBridgeBundle │ │ ├── DependencyInjection │ │ └── ElcodiVisithorBridgeExtension.php │ │ ├── ElcodiVisithorBridgeBundle.php │ │ ├── Environment │ │ └── EnvironmentBuilder.php │ │ └── Resources │ │ └── config │ │ └── visithor.yml │ ├── Common │ ├── CommonBundle │ │ ├── Command │ │ │ └── ElcodiInstallCommand.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── ElcodiCommonExtension.php │ │ ├── ElcodiCommonBundle.php │ │ └── Resources │ │ │ ├── config │ │ │ └── commands.yml │ │ │ └── translations │ │ │ ├── messages.ca.yml │ │ │ ├── messages.de.yml │ │ │ ├── messages.en.yml │ │ │ ├── messages.es.yml │ │ │ ├── messages.fr.yml │ │ │ └── messages.gl.yml │ └── FirewallBundle │ │ ├── CompilerPass │ │ └── FirewallCompilerPass.php │ │ ├── ElcodiFirewallBundle.php │ │ └── EventListener │ │ └── FirewallEventListener.php │ ├── Fixtures │ └── DataFixtures │ │ └── ORM │ │ ├── Address │ │ └── AddressData.php │ │ ├── AdminUser │ │ └── AdminUserData.php │ │ ├── Attribute │ │ └── AttributeData.php │ │ ├── Category │ │ └── CategoryData.php │ │ ├── Coupon │ │ └── CouponData.php │ │ ├── Currency │ │ ├── CurrencyData.php │ │ └── currencies.yml │ │ ├── Customer │ │ └── CustomerData.php │ │ ├── Language │ │ ├── LanguageData.php │ │ └── languages.yml │ │ ├── Manufacturer │ │ └── ManufacturerData.php │ │ ├── Menu │ │ └── MenuData.php │ │ ├── Page │ │ └── PageData.php │ │ ├── Product │ │ ├── Abstracts │ │ │ └── AbstractPurchasableData.php │ │ ├── PackData.php │ │ ├── ProductData.php │ │ └── images │ │ │ ├── pack-1.jpg │ │ │ ├── product-1.jpg │ │ │ ├── product-10.jpg │ │ │ ├── product-11.jpg │ │ │ ├── product-12.jpg │ │ │ ├── product-13.jpg │ │ │ ├── product-14.jpg │ │ │ ├── product-15.jpg │ │ │ ├── product-16.jpg │ │ │ ├── product-17.jpg │ │ │ ├── product-18.jpg │ │ │ ├── product-2.jpg │ │ │ ├── product-3.jpg │ │ │ ├── product-4.jpg │ │ │ ├── product-5.jpg │ │ │ ├── product-6.jpg │ │ │ ├── product-7.jpg │ │ │ ├── product-8.jpg │ │ │ └── product-9.jpg │ │ ├── Rates │ │ └── RatesData.php │ │ ├── Rule │ │ └── RuleData.php │ │ ├── Store │ │ └── StoreData.php │ │ ├── Tax │ │ └── TaxData.php │ │ └── Zone │ │ ├── ZoneData.php │ │ └── zones.yml │ ├── Plugin │ ├── BankwireBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiBankwireExtension.php │ │ ├── ElcodiBankwireBundle.php │ │ ├── EventListener │ │ │ └── PaymentCollectEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── external.yml │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ └── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── CustomShippingBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── Builder │ │ │ └── MenuBuilder.php │ │ ├── CONTRIBUTING.md │ │ ├── CompilerPass │ │ │ └── MappingCompilerPass.php │ │ ├── Controller │ │ │ ├── CarrierController.php │ │ │ ├── Component │ │ │ │ ├── CarrierComponentController.php │ │ │ │ └── ShippingRangeComponentController.php │ │ │ └── ShippingRangeController.php │ │ ├── DataFixtures │ │ │ └── ORM │ │ │ │ └── CarrierData.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── ElcodiCustomShippingExtension.php │ │ ├── ElcodiCustomShippingBundle.php │ │ ├── ElcodiShippingRangeTypes.php │ │ ├── Entity │ │ │ ├── Carrier.php │ │ │ ├── Interfaces │ │ │ │ ├── CarrierInterface.php │ │ │ │ ├── ShippingPriceRangeInterface.php │ │ │ │ ├── ShippingRangeInterface.php │ │ │ │ └── ShippingWeightRangeInterface.php │ │ │ ├── ShippingRange.php │ │ │ └── Traits │ │ │ │ ├── ShippingPriceRangeTrait.php │ │ │ │ └── ShippingWeightRangeTrait.php │ │ ├── EventListener │ │ │ └── ShippingCollectEventListener.php │ │ ├── Factory │ │ │ ├── CarrierFactory.php │ │ │ └── ShippingRangeFactory.php │ │ ├── Form │ │ │ └── Type │ │ │ │ ├── CarrierType.php │ │ │ │ └── ShippingRangeType.php │ │ ├── LICENSE │ │ ├── Provider │ │ │ └── ShippingRangesProvider.php │ │ ├── README.md │ │ ├── Repository │ │ │ ├── CarrierRepository.php │ │ │ └── ShippingRangeRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── directors.yml │ │ │ │ ├── doctrine │ │ │ │ │ ├── Carrier.orm.yml │ │ │ │ │ ├── ShippingRange.orm.yml │ │ │ │ │ └── Warehouse.orm.yml │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── external.yml │ │ │ │ ├── factories.yml │ │ │ │ ├── formTypes.yml │ │ │ │ ├── menu.yml │ │ │ │ ├── objectManagers.yml │ │ │ │ ├── repositories.yml │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ └── views │ │ │ │ ├── Carrier │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── listComponent.html.twig │ │ │ │ └── ShippingRange │ │ │ │ ├── edit.html.twig │ │ │ │ ├── editComponent.html.twig │ │ │ │ └── listComponent.html.twig │ │ ├── Tests │ │ │ └── UnitTest │ │ │ │ └── Provider │ │ │ │ └── ShippingRangesProviderTest.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── DisqusBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiDisqusExtension.php │ │ ├── ElcodiDisqusBundle.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── services.yml │ │ │ │ └── templating.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ ├── block.html.twig │ │ │ │ └── javascript.html.twig │ │ ├── Templating │ │ │ └── TwigRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── FacebookBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiFacebookExtension.php │ │ ├── ElcodiFacebookBundle.php │ │ ├── EventListener │ │ │ └── FacebookUsernameEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── services.yml │ │ │ │ └── templating.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ ├── Follow │ │ │ │ └── follow.html.twig │ │ │ │ ├── Post │ │ │ │ ├── image.html.twig │ │ │ │ └── share.html.twig │ │ │ │ └── javascript.html.twig │ │ ├── Services │ │ │ └── FacebookUsernameCleaner.php │ │ ├── Templating │ │ │ ├── FollowRenderer.php │ │ │ ├── JavascriptRenderer.php │ │ │ └── SharePostRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── FreePaymentBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiFreePaymentExtension.php │ │ ├── ElcodiFreePaymentBundle.php │ │ ├── EventListener │ │ │ └── PaymentCollectEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── external.yml │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ └── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── GoogleAnalyticsBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiGoogleAnalyticsExtension.php │ │ ├── ElcodiGoogleAnalyticsBundle.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── services.yml │ │ │ │ └── templating.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ ├── messages.gl.yml │ │ │ │ └── messages.it.yml │ │ │ └── views │ │ │ │ └── javascript.html.twig │ │ ├── Templating │ │ │ └── TwigRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── PaypalWebCheckoutBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiPaypalWebCheckoutExtension.php │ │ ├── ElcodiPaypalWebCheckoutBundle.php │ │ ├── EventListener │ │ │ └── PaymentCollectEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── external.yml │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ └── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── PinterestBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiPinterestExtension.php │ │ ├── ElcodiPinterestBundle.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── services.yml │ │ │ │ └── templating.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ ├── javascript.html.twig │ │ │ │ ├── javascript_asynchronous.html.twig │ │ │ │ └── product_pin.html.twig │ │ ├── Templating │ │ │ └── TwigRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── ProductCsvBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── CONTRIBUTING.md │ │ ├── Controller │ │ │ └── CsvController.php │ │ ├── DependencyInjection │ │ │ └── ElcodiProductCsvExtension.php │ │ ├── ElcodiProductCsvBundle.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routing.yml │ │ │ │ ├── services.yml │ │ │ │ └── twig.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ └── buttons.html.twig │ │ ├── Services │ │ │ └── ProductExporter.php │ │ ├── Templating │ │ │ └── TwigRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── StoreSetupWizardBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── CONTRIBUTING.md │ │ ├── Controller │ │ │ └── WizardController.php │ │ ├── DependencyInjection │ │ │ └── ElcodiStoreSetupWizardExtension.php │ │ ├── ElcodiStoreSetupWizardBundle.php │ │ ├── EventListener │ │ │ ├── DashboardRedirectionEventListener.php │ │ │ └── DisableWizardEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── plugin.yml │ │ │ │ ├── routing.yml │ │ │ │ ├── services.yml │ │ │ │ └── templating.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ └── Wizard │ │ │ │ ├── disable-under-construction.html.twig │ │ │ │ ├── enable-store.html.twig │ │ │ │ ├── next-step.html.twig │ │ │ │ ├── view.html.twig │ │ │ │ └── wizard.html.twig │ │ ├── Services │ │ │ ├── WizardRoutes.php │ │ │ └── WizardStatus.php │ │ ├── Templating │ │ │ └── TwigRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ ├── StoreTemplateBundle │ │ ├── .gitignore │ │ ├── .grunt │ │ │ └── grunt-contrib-jasmine │ │ │ │ ├── jasmine-helper.js │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ ├── phantom-polyfill.js │ │ │ │ └── reporter.js │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── Resources │ │ │ ├── public │ │ │ │ ├── css │ │ │ │ │ ├── 686tees.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── entypo.css │ │ │ │ │ └── main.css │ │ │ │ ├── flags │ │ │ │ │ ├── ad.png │ │ │ │ │ ├── ae.png │ │ │ │ │ ├── af.png │ │ │ │ │ ├── ag.png │ │ │ │ │ ├── ai.png │ │ │ │ │ ├── al.png │ │ │ │ │ ├── am.png │ │ │ │ │ ├── an.png │ │ │ │ │ ├── ao.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 │ │ │ │ │ ├── bm.png │ │ │ │ │ ├── bn.png │ │ │ │ │ ├── bo.png │ │ │ │ │ ├── br.png │ │ │ │ │ ├── bs.png │ │ │ │ │ ├── bt.png │ │ │ │ │ ├── bv.png │ │ │ │ │ ├── bw.png │ │ │ │ │ ├── by.png │ │ │ │ │ ├── bz.png │ │ │ │ │ ├── ca.png │ │ │ │ │ ├── catalonia.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 │ │ │ │ │ ├── cs.png │ │ │ │ │ ├── cu.png │ │ │ │ │ ├── cv.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 │ │ │ │ │ ├── england.png │ │ │ │ │ ├── er.png │ │ │ │ │ ├── es.png │ │ │ │ │ ├── et.png │ │ │ │ │ ├── europeanunion.png │ │ │ │ │ ├── fam.png │ │ │ │ │ ├── fi.png │ │ │ │ │ ├── fj.png │ │ │ │ │ ├── fk.png │ │ │ │ │ ├── fm.png │ │ │ │ │ ├── fo.png │ │ │ │ │ ├── fr.png │ │ │ │ │ ├── ga.png │ │ │ │ │ ├── gb.png │ │ │ │ │ ├── gd.png │ │ │ │ │ ├── ge.png │ │ │ │ │ ├── gf.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 │ │ │ │ │ ├── in.png │ │ │ │ │ ├── io.png │ │ │ │ │ ├── iq.png │ │ │ │ │ ├── ir.png │ │ │ │ │ ├── is.png │ │ │ │ │ ├── it.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── scotland.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 │ │ │ │ │ ├── st.png │ │ │ │ │ ├── sv.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 │ │ │ │ │ ├── wales.png │ │ │ │ │ ├── wf.png │ │ │ │ │ ├── ws.png │ │ │ │ │ ├── ye.png │ │ │ │ │ ├── yt.png │ │ │ │ │ ├── za.png │ │ │ │ │ ├── zm.png │ │ │ │ │ └── zw.png │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ ├── markers.png │ │ │ │ │ └── progress.png │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── contact.js │ │ │ │ │ └── jquery.ui.map.js │ │ │ │ ├── preview.jpg │ │ │ │ └── preview │ │ │ │ │ ├── address-edit.html │ │ │ │ │ ├── address-list.html │ │ │ │ │ ├── blog-post-view.html │ │ │ │ │ ├── blog-posts-list.html │ │ │ │ │ ├── cart-nav-empty.html │ │ │ │ │ ├── cart-nav.html │ │ │ │ │ ├── cart-view-empty.html │ │ │ │ │ ├── cart-view.html │ │ │ │ │ ├── category-nav-empty.html │ │ │ │ │ ├── category-nav.html │ │ │ │ │ ├── category-view-empty.html │ │ │ │ │ ├── category-view.html │ │ │ │ │ ├── checkout-address.html │ │ │ │ │ ├── checkout-payment-fail.html │ │ │ │ │ ├── checkout-payment.html │ │ │ │ │ ├── currency-nav.html │ │ │ │ │ ├── home-view-empty.html │ │ │ │ │ ├── home-view.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── language-nav.html │ │ │ │ │ ├── location-selector.html │ │ │ │ │ ├── order-list-empty.html │ │ │ │ │ ├── order-list.html │ │ │ │ │ ├── order-view-empty.html │ │ │ │ │ ├── order-view.html │ │ │ │ │ ├── product-view-item-empty.html │ │ │ │ │ ├── product-view-item.html │ │ │ │ │ ├── product-view-variant-empty.html │ │ │ │ │ ├── product-view-variant.html │ │ │ │ │ ├── user-edit.html │ │ │ │ │ ├── user-home.html │ │ │ │ │ ├── user-login.html │ │ │ │ │ ├── user-nav.html │ │ │ │ │ ├── user-password-change.html │ │ │ │ │ ├── user-password-recover.html │ │ │ │ │ ├── user-password-sent.html │ │ │ │ │ └── user-register.html │ │ │ ├── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ ├── messages.fr.yml │ │ │ │ └── messages.gl.yml │ │ │ └── views │ │ │ │ ├── Layout │ │ │ │ ├── _checkout.html.twig │ │ │ │ ├── _email.html.twig │ │ │ │ ├── _layout.html.twig │ │ │ │ └── _static.html.twig │ │ │ │ ├── Modules │ │ │ │ ├── _address-item.html.twig │ │ │ │ ├── _address-new.html.twig │ │ │ │ ├── _cart-item.html.twig │ │ │ │ ├── _checkout-progress.html.twig │ │ │ │ ├── _coupon-item.html.twig │ │ │ │ ├── _footer.html.twig │ │ │ │ ├── _header.html.twig │ │ │ │ ├── _message-item.html.twig │ │ │ │ ├── _message-list.html.twig │ │ │ │ ├── _order-coupon-item.html.twig │ │ │ │ ├── _order-item.html.twig │ │ │ │ ├── _paginator.html.twig │ │ │ │ ├── _product-item.html.twig │ │ │ │ ├── _product-pack-item.html.twig │ │ │ │ ├── _purchasable-list.html.twig │ │ │ │ ├── _purchasable-related.html.twig │ │ │ │ └── _shipping-item.html.twig │ │ │ │ ├── Pages │ │ │ │ ├── address-edit.html.twig │ │ │ │ ├── address-list.html.twig │ │ │ │ ├── blog-post-view.html.twig │ │ │ │ ├── blog-posts-list.html.twig │ │ │ │ ├── cart-view.html.twig │ │ │ │ ├── category-view.html.twig │ │ │ │ ├── checkout-address.html.twig │ │ │ │ ├── checkout-payment-fail.html.twig │ │ │ │ ├── checkout-payment.html.twig │ │ │ │ ├── home-view.html.twig │ │ │ │ ├── order-list.html.twig │ │ │ │ ├── order-view.html.twig │ │ │ │ ├── product-view-item.html.twig │ │ │ │ ├── product-view-variant.html.twig │ │ │ │ ├── purchasable-pack-view.html.twig │ │ │ │ ├── user-edit.html.twig │ │ │ │ ├── user-home.html.twig │ │ │ │ ├── user-login.html.twig │ │ │ │ ├── user-password-change.html.twig │ │ │ │ ├── user-password-recover.html.twig │ │ │ │ ├── user-password-sent.html.twig │ │ │ │ └── user-register.html.twig │ │ │ │ ├── Subpages │ │ │ │ ├── cart-nav.html.twig │ │ │ │ ├── category-nav.html.twig │ │ │ │ ├── coupon-add.html.twig │ │ │ │ ├── currency-nav.html.twig │ │ │ │ ├── language-nav.html.twig │ │ │ │ ├── location-selector.html.twig │ │ │ │ └── user-nav.html.twig │ │ │ │ └── fields.html.twig │ │ ├── Scss │ │ │ ├── _config │ │ │ │ ├── __index.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _fonts.scss │ │ │ │ └── _measures.scss │ │ │ ├── base │ │ │ │ ├── __index.scss │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _grid.scss │ │ │ │ └── _reset.scss │ │ │ ├── devices │ │ │ │ ├── __index.scss │ │ │ │ ├── _desktop.scss │ │ │ │ └── _mobile.scss │ │ │ ├── external │ │ │ │ ├── __index.scss │ │ │ │ └── _font-awesome.scss │ │ │ ├── main.scss │ │ │ └── objects │ │ │ │ ├── __index.scss │ │ │ │ ├── address │ │ │ │ ├── __index.scss │ │ │ │ ├── _address-item.scss │ │ │ │ └── _address-list.scss │ │ │ │ ├── blog │ │ │ │ ├── __index.scss │ │ │ │ └── _blog-post.scss │ │ │ │ ├── breadcrumb │ │ │ │ ├── __index.scss │ │ │ │ └── _breadcrumb.scss │ │ │ │ ├── buttons │ │ │ │ ├── __index.scss │ │ │ │ ├── _button-empty.scss │ │ │ │ ├── _button-primary.scss │ │ │ │ ├── _button-secondary.scss │ │ │ │ └── _button.scss │ │ │ │ ├── cart │ │ │ │ ├── __index.scss │ │ │ │ ├── _cart-actions.scss │ │ │ │ ├── _cart-item.scss │ │ │ │ ├── _cart-list.scss │ │ │ │ ├── _cart-nav.scss │ │ │ │ ├── _cart-preview.scss │ │ │ │ ├── _cart-shipping.scss │ │ │ │ └── _cart-total.scss │ │ │ │ ├── category-nav │ │ │ │ ├── __index.scss │ │ │ │ └── _category-nav.scss │ │ │ │ ├── checkout │ │ │ │ ├── __index.scss │ │ │ │ └── _checkout.scss │ │ │ │ ├── coupon │ │ │ │ ├── __index.scss │ │ │ │ ├── _coupon-add.scss │ │ │ │ └── _coupon-item.scss │ │ │ │ ├── currency-nav │ │ │ │ ├── __index.scss │ │ │ │ └── _currency-nav.scss │ │ │ │ ├── empty-page │ │ │ │ ├── __index.scss │ │ │ │ └── _empty-page.scss │ │ │ │ ├── footer │ │ │ │ ├── __index.scss │ │ │ │ ├── _footer-nav.scss │ │ │ │ └── _footer.scss │ │ │ │ ├── form │ │ │ │ ├── __index.scss │ │ │ │ ├── _form-address.scss │ │ │ │ ├── _form-card.scss │ │ │ │ ├── _form-checkout.scss │ │ │ │ ├── _form-login.scss │ │ │ │ ├── _form-stripe.scss │ │ │ │ └── _form.scss │ │ │ │ ├── header │ │ │ │ ├── __index.scss │ │ │ │ └── _header.scss │ │ │ │ ├── inputs │ │ │ │ ├── __index.scss │ │ │ │ └── _input.scss │ │ │ │ ├── login-social │ │ │ │ ├── __index.scss │ │ │ │ └── _login-social.scss │ │ │ │ ├── messages │ │ │ │ ├── __index.scss │ │ │ │ ├── _message-info.scss │ │ │ │ ├── _message-ko.scss │ │ │ │ ├── _message-ok.scss │ │ │ │ ├── _message-warning.scss │ │ │ │ └── _message.scss │ │ │ │ ├── order │ │ │ │ ├── __index.scss │ │ │ │ ├── _order-item.scss │ │ │ │ ├── _order-list.scss │ │ │ │ └── _order-title.scss │ │ │ │ ├── pages │ │ │ │ ├── __index.scss │ │ │ │ └── _pages.scss │ │ │ │ ├── pagination │ │ │ │ ├── __index.scss │ │ │ │ └── _pagination.scss │ │ │ │ ├── product │ │ │ │ ├── __index.scss │ │ │ │ ├── _product-empty.scss │ │ │ │ ├── _product-item.scss │ │ │ │ ├── _product-list.scss │ │ │ │ ├── _product-related.scss │ │ │ │ ├── _product-thumbnail.scss │ │ │ │ ├── _product-title.scss │ │ │ │ ├── _product-to-basket-group.scss │ │ │ │ ├── _product-to-basket.scss │ │ │ │ └── _product-view.scss │ │ │ │ ├── progress │ │ │ │ ├── __index.scss │ │ │ │ └── _progress.scss │ │ │ │ ├── rule │ │ │ │ ├── __index.scss │ │ │ │ └── _rule.scss │ │ │ │ ├── selects │ │ │ │ ├── __index.scss │ │ │ │ └── _select.scss │ │ │ │ ├── switch │ │ │ │ ├── __index.scss │ │ │ │ └── _switch.scss │ │ │ │ ├── user │ │ │ │ ├── __index.scss │ │ │ │ ├── _user-home.scss │ │ │ │ └── _user-nav.scss │ │ │ │ └── white-panel │ │ │ │ ├── __index.scss │ │ │ │ └── _white-panel.scss │ │ ├── StoreTemplateBundle.php │ │ ├── bower.json │ │ ├── composer.json │ │ ├── config.rb │ │ ├── database.json │ │ ├── fixtures │ │ │ ├── addresses.json │ │ │ ├── cart-empty.json │ │ │ ├── cart-full.json │ │ │ ├── categoryTree.json │ │ │ ├── currencies.json │ │ │ ├── currencyCategoryId-1.json │ │ │ ├── currencyCategoryId-null.json │ │ │ ├── form.json │ │ │ ├── img │ │ │ │ ├── 5.jpg │ │ │ │ ├── amnesia.jpg │ │ │ │ ├── banana.jpg │ │ │ │ ├── life-style.jpg │ │ │ │ ├── lips.jpg │ │ │ │ ├── poem.jpg │ │ │ │ └── there.jpg │ │ │ ├── index.html.twig │ │ │ ├── messages.ca.json │ │ │ ├── messages.en.json │ │ │ ├── messages.es.json │ │ │ ├── messages.fr.json │ │ │ ├── order.json │ │ │ ├── orders.json │ │ │ ├── paginator.json │ │ │ ├── product.json │ │ │ ├── products.json │ │ │ ├── related_products.json │ │ │ ├── store.json │ │ │ └── views │ │ │ │ └── _base.html.twig │ │ ├── grunt │ │ │ ├── clean.js │ │ │ ├── compass.js │ │ │ ├── copy.js │ │ │ ├── jshint.js │ │ │ ├── markdown.js │ │ │ ├── replace.js │ │ │ ├── twigRender.js │ │ │ ├── watch.js │ │ │ └── yaml.js │ │ ├── package.json │ │ └── plugin.yml │ ├── StripeBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ │ └── ElcodiStripeExtension.php │ │ ├── ElcodiStripeBundle.php │ │ ├── EventListener │ │ │ └── PaymentCollectEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── eventListeners.yml │ │ │ │ ├── external.yml │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ └── images │ │ │ │ │ └── icon.png │ │ │ └── translations │ │ │ │ ├── messages.ca.yml │ │ │ │ ├── messages.de.yml │ │ │ │ ├── messages.en.yml │ │ │ │ ├── messages.es.yml │ │ │ │ └── messages.gl.yml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ └── TwitterBundle │ │ ├── .editorconfig │ │ ├── .formatter.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── DependencyInjection │ │ └── ElcodiTwitterExtension.php │ │ ├── ElcodiTwitterBundle.php │ │ ├── EventListener │ │ └── TwitterUsernameEventListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ ├── config │ │ │ ├── eventListeners.yml │ │ │ ├── plugin.yml │ │ │ ├── services.yml │ │ │ └── templating.yml │ │ ├── public │ │ │ └── images │ │ │ │ └── icon.png │ │ ├── translations │ │ │ ├── messages.ca.yml │ │ │ ├── messages.de.yml │ │ │ ├── messages.en.yml │ │ │ ├── messages.es.yml │ │ │ └── messages.gl.yml │ │ └── views │ │ │ ├── Follow │ │ │ └── follow.html.twig │ │ │ ├── Tweet │ │ │ └── share.html.twig │ │ │ └── javascript.html.twig │ │ ├── Services │ │ └── TwitterUsernameCleaner.php │ │ ├── Templating │ │ ├── FollowRenderer.php │ │ ├── JavascriptRenderer.php │ │ └── ShareTweetRenderer.php │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── plugin.yml │ └── Store │ ├── CartBundle │ ├── Behat │ │ └── Context.php │ ├── Controller │ │ ├── CartController.php │ │ ├── CheckoutController.php │ │ └── OrderController.php │ ├── DependencyInjection │ │ └── StoreCartExtension.php │ ├── EventListener │ │ ├── SendOrderConfirmationEmailEventListener.php │ │ ├── SendOrderShippedEmailEventListener.php │ │ └── ShippingApplianceEventListener.php │ ├── Form │ │ └── Type │ │ │ ├── CartLineType.php │ │ │ └── CartType.php │ ├── Resources │ │ └── config │ │ │ ├── eventListeners.yml │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ └── StoreCartBundle.php │ ├── CartCouponBundle │ ├── Controller │ │ └── CouponController.php │ ├── DependencyInjection │ │ └── StoreCartCouponExtension.php │ ├── EventListener │ │ └── JustOneManualCouponEventListener.php │ ├── Form │ │ └── Type │ │ │ └── CouponApplyType.php │ ├── Resources │ │ └── config │ │ │ ├── eventListeners.yml │ │ │ ├── formTypes.yml │ │ │ └── routing.yml │ └── StoreCartCouponBundle.php │ ├── ConnectBundle │ ├── CompilerPass │ │ └── MappingCompilerPass.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── StoreConnectExtension.php │ ├── Entity │ │ ├── Authorization.php │ │ └── Interfaces │ │ │ └── AuthorizationInterface.php │ ├── Factory │ │ └── AuthorizationFactory.php │ ├── Repository │ │ └── AuthorizationRepository.php │ ├── Resources │ │ └── config │ │ │ ├── directors.yml │ │ │ ├── doctrine │ │ │ └── Authorization.orm.yml │ │ │ ├── factories.yml │ │ │ ├── objectManagers.yml │ │ │ ├── repositories.yml │ │ │ └── services.yml │ ├── Services │ │ └── OAuthUserProvider.php │ └── StoreConnectBundle.php │ ├── CoreBundle │ ├── Behat │ │ └── Context.php │ ├── Controller │ │ ├── ExceptionController.php │ │ ├── HomeController.php │ │ └── Traits │ │ │ └── TemplateRenderTrait.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── StoreCoreExtension.php │ ├── EventListener │ │ └── StoreUnavailableEventListener.php │ ├── Resources │ │ ├── config │ │ │ ├── eventListeners.yml │ │ │ ├── exceptions.yml │ │ │ ├── routing.yml │ │ │ ├── services.yml │ │ │ └── twig.yml │ │ └── translations │ │ │ ├── messages.ca.yml │ │ │ ├── messages.de.yml │ │ │ ├── messages.en.yml │ │ │ ├── messages.es.yml │ │ │ ├── messages.fi.yml │ │ │ ├── messages.fr.yml │ │ │ ├── messages.gl.yml │ │ │ ├── messages.it.yml │ │ │ ├── messages.sr.yml │ │ │ ├── routes.ca.yml │ │ │ ├── routes.de.yml │ │ │ ├── routes.en.yml │ │ │ ├── routes.es.yml │ │ │ ├── routes.fi.yml │ │ │ ├── routes.fr.yml │ │ │ ├── routes.gl.yml │ │ │ ├── routes.it.yml │ │ │ └── routes.sr.yml │ ├── Services │ │ └── TemplateLocator.php │ ├── StoreCoreBundle.php │ └── Twig │ │ ├── EncryptExtension.php │ │ ├── ReferrerExtension.php │ │ └── TemplateLocatorExtension.php │ ├── CurrencyBundle │ ├── Controller │ │ └── CurrencyController.php │ ├── Resources │ │ └── config │ │ │ └── routing.yml │ └── StoreCurrencyBundle.php │ ├── FallbackBundle │ └── StoreFallbackBundle.php │ ├── GeoBundle │ ├── Behat │ │ └── Context.php │ ├── Controller │ │ ├── AddressController.php │ │ └── LocationController.php │ ├── DependencyInjection │ │ └── StoreGeoExtension.php │ ├── Form │ │ ├── LocationSelectorBuilder.php │ │ └── Type │ │ │ └── AddressType.php │ ├── Resources │ │ ├── config │ │ │ ├── formTypes.yml │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ └── public │ │ │ └── js │ │ │ └── LocationSelectors.js │ └── StoreGeoBundle.php │ ├── LanguageBundle │ ├── Controller │ │ └── LanguageController.php │ ├── Resources │ │ └── config │ │ │ └── routing.yml │ └── StoreLanguageBundle.php │ ├── MetricBundle │ ├── DependencyInjection │ │ └── StoreMetricExtension.php │ ├── EventListener │ │ └── AddOrderCompletedMetricEventListener.php │ ├── Resources │ │ └── config │ │ │ └── eventListeners.yml │ └── StoreMetricBundle.php │ ├── OverrideBundle │ └── StoreOverrideBundle.php │ ├── PageBundle │ ├── Controller │ │ └── BlogController.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── StorePageExtension.php │ ├── EventListener │ │ └── Abstracts │ │ │ └── AbstractEmailSenderEventListener.php │ ├── Resources │ │ ├── config │ │ │ ├── eventListeners.yml │ │ │ ├── routing.yml │ │ │ ├── services.yml │ │ │ └── twig.yml │ │ └── views │ │ │ └── email.html.twig │ ├── StorePageBundle.php │ └── Twig │ │ └── PageExtension.php │ ├── ProductBundle │ ├── Behat │ │ └── Context.php │ ├── Controller │ │ ├── CategoryController.php │ │ └── PurchasableController.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── StoreProductExtension.php │ ├── EventListener │ │ └── CategoriesOrderChangeEventListener.php │ ├── Resources │ │ ├── config │ │ │ ├── eventListeners.yml │ │ │ ├── routing.yml │ │ │ ├── services.yml │ │ │ └── sitemapTransformers.yml │ │ └── public │ │ │ └── js │ │ │ └── variantproduct.js │ ├── Services │ │ └── StoreCategoryTree.php │ ├── StoreProductBundle.php │ └── Transformer │ │ ├── CategoryTransformer.php │ │ └── ProductTransformer.php │ └── UserBundle │ ├── Controller │ ├── PasswordController.php │ ├── SecurityController.php │ └── UserController.php │ ├── DependencyInjection │ └── StoreUserExtension.php │ ├── EventListener │ ├── RememberPasswordCredentialsEventListener.php │ ├── SendPasswordRecoverEmailEventListener.php │ ├── SendPasswordRememberEmailEventListener.php │ └── SendRegistrationEmailEventListener.php │ ├── Form │ └── Type │ │ ├── LoginType.php │ │ ├── PasswordRecoverType.php │ │ ├── PasswordRememberType.php │ │ ├── ProfileType.php │ │ └── RegisterType.php │ ├── Resources │ ├── config │ │ ├── eventListeners.yml │ │ ├── formTypes.yml │ │ └── routing.yml │ └── security │ │ └── roles.yml │ └── StoreUserBundle.php ├── vagrant ├── Vagrantfile └── ansible │ ├── files │ └── authorized_keys │ ├── inventories │ └── dev │ ├── playbook.yml │ ├── roles │ ├── apache │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── vhost22.conf.tpl │ │ │ └── vhost24.conf.tpl │ ├── app │ │ └── tasks │ │ │ └── main.yml │ ├── composer │ │ └── tasks │ │ │ └── main.yml │ ├── mysql │ │ └── tasks │ │ │ └── main.yml │ ├── php │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── configure.yml │ │ │ ├── main.yml │ │ │ ├── mod-php.yml │ │ │ ├── pecl.yml │ │ │ ├── php-cli.yml │ │ │ └── php-fpm.yml │ │ └── templates │ │ │ └── extension.tpl │ ├── redis │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── conf.tpl │ │ │ └── init.tpl │ ├── server │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── timezone.tpl │ ├── vagrant_local │ │ └── tasks │ │ │ └── main.yml │ └── xdebug │ │ ├── defaults │ │ └── main.yml │ │ └── tasks │ │ └── main.yml │ ├── vars │ └── all.yml │ └── windows.sh ├── visithor.yml.dist └── web ├── .htaccess ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── app.php ├── app_dev.php ├── app_test.php ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── ms-icon-70x70.png └── robots.txt /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.formatter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitsplit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.gitsplit.yml -------------------------------------------------------------------------------- /.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.gush.yml -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.php_cs -------------------------------------------------------------------------------- /.translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.translation.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG-0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/CHANGELOG-0.5.md -------------------------------------------------------------------------------- /CHANGELOG-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/CHANGELOG-1.0.md -------------------------------------------------------------------------------- /CHANGELOG-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/CHANGELOG-2.0.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/heroku-php-apache2 web/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app.json -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/DoctrineMigrations/Version20160131002537.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/DoctrineMigrations/Version20160131002537.php -------------------------------------------------------------------------------- /app/Resources/views/_base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/Resources/views/_base.html.twig -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/common/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/cache.yml -------------------------------------------------------------------------------- /app/config/common/filesystem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/filesystem.yml -------------------------------------------------------------------------------- /app/config/common/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/metrics.yml -------------------------------------------------------------------------------- /app/config/common/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/services.yml -------------------------------------------------------------------------------- /app/config/common/sitemap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/sitemap.yml -------------------------------------------------------------------------------- /app/config/common/translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/translations.yml -------------------------------------------------------------------------------- /app/config/common/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/common/twig.yml -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/config_local.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/heroku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/heroku.php -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/parameters_dev.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | 3 | database_path: ~ 4 | -------------------------------------------------------------------------------- /app/config/parameters_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/parameters_test.yml -------------------------------------------------------------------------------- /app/config/routing/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing.yml -------------------------------------------------------------------------------- /app/config/routing/routing_admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing_admin.yml -------------------------------------------------------------------------------- /app/config/routing/routing_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing_api.yml -------------------------------------------------------------------------------- /app/config/routing/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing_dev.yml -------------------------------------------------------------------------------- /app/config/routing/routing_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing_local.yml -------------------------------------------------------------------------------- /app/config/routing/routing_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/routing/routing_store.yml -------------------------------------------------------------------------------- /app/config/security/accessControl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/security/accessControl.yml -------------------------------------------------------------------------------- /app/config/security/firewalls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/security/firewalls.yml -------------------------------------------------------------------------------- /app/config/security/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/config/security/security.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/console -------------------------------------------------------------------------------- /app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/app/install.sh -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/composer.lock -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /features/admin/category.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/category.feature -------------------------------------------------------------------------------- /features/admin/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/login.feature -------------------------------------------------------------------------------- /features/admin/manufacturer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/manufacturer.feature -------------------------------------------------------------------------------- /features/admin/menu.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/menu.feature -------------------------------------------------------------------------------- /features/admin/pack.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/pack.feature -------------------------------------------------------------------------------- /features/admin/product.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/admin/product.feature -------------------------------------------------------------------------------- /features/store/address.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/address.feature -------------------------------------------------------------------------------- /features/store/cart.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/cart.feature -------------------------------------------------------------------------------- /features/store/category.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/category.feature -------------------------------------------------------------------------------- /features/store/coupon.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/coupon.feature -------------------------------------------------------------------------------- /features/store/homepage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/homepage.feature -------------------------------------------------------------------------------- /features/store/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/login.feature -------------------------------------------------------------------------------- /features/store/not_found.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/not_found.feature -------------------------------------------------------------------------------- /features/store/pack.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/pack.feature -------------------------------------------------------------------------------- /features/store/page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/page.feature -------------------------------------------------------------------------------- /features/store/password_recover.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/password_recover.feature -------------------------------------------------------------------------------- /features/store/product.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/product.feature -------------------------------------------------------------------------------- /features/store/registration.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/registration.feature -------------------------------------------------------------------------------- /features/store/store_unavailable.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/store_unavailable.feature -------------------------------------------------------------------------------- /features/store/user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/store/user.feature -------------------------------------------------------------------------------- /features/workflow/page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/workflow/page.feature -------------------------------------------------------------------------------- /features/workflow/payment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/workflow/payment.feature -------------------------------------------------------------------------------- /features/workflow/product.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/workflow/product.feature -------------------------------------------------------------------------------- /features/workflow/purchasables_in_cart.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/features/workflow/purchasables_in_cart.feature -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/gruntfile.js -------------------------------------------------------------------------------- /heroku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/heroku.json -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/humans.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /scripts/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/scripts/reload -------------------------------------------------------------------------------- /src/Elcodi/Admin/AttributeBundle/AdminAttributeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/AttributeBundle/AdminAttributeBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/AttributeBundle/Form/Type/AttributeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/AttributeBundle/Form/Type/AttributeType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/AttributeBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/AttributeBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/AttributeBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/AttributeBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/AdminBannerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/AdminBannerBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/Controller/BannerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/Controller/BannerController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/Form/Type/BannerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/Form/Type/BannerType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/Form/Type/BannerZoneType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/Form/Type/BannerZoneType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/BannerBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/BannerBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/AdminCartBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/AdminCartBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Builder/OrdersNotShippedBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Builder/OrdersNotShippedBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Controller/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Controller/OrderController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Resources/views/Order/date.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Resources/views/Order/date.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Resources/views/Order/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Resources/views/Order/edit.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CartBundle/Resources/views/Order/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CartBundle/Resources/views/Order/list.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/AdminCoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/AdminCoreBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Behat/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Behat/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Controller/HomeController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Controller/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Controller/MenuController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/_mock/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'font-awesome'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/_mock/_font-awesome.scss: -------------------------------------------------------------------------------- 1 | @import '../font-awesome/variables'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/compass/_animate.scss: -------------------------------------------------------------------------------- 1 | @import "animation"; 2 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/compass/compass/utilities/_color.scss: -------------------------------------------------------------------------------- 1 | @import "color/contrast"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/compass/compass/utilities/general/_tabs.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/external/susy/_su.scss: -------------------------------------------------------------------------------- 1 | // Su 2 | // == 3 | 4 | @import 'susy/su'; 5 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/helpers/classes/__index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/animations/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'animations'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/boxes/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'boxes'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/footer/__index.scss: -------------------------------------------------------------------------------- 1 | @import "_footer.scss"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/header/__index.scss: -------------------------------------------------------------------------------- 1 | // Form 2 | @import 'header-mobile'; 3 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/icons/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'icons'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/labels/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'labels'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/loading/__index.scss: -------------------------------------------------------------------------------- 1 | @import "loading"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/steps/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'steps'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/objects/switch/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'switch'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/animations/__index.scss: -------------------------------------------------------------------------------- 1 | @import "_animations.scss"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/autocomplete/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'autocomplete'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/carousel/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'carousel'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/cart/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'cart'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/charts/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'charts'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/code/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'code'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/image-zoom/__index.scss: -------------------------------------------------------------------------------- 1 | @import "image-zoom"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/modals/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'modals'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/notifications/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'notifications'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/side-menu/__index.scss: -------------------------------------------------------------------------------- 1 | @import "_side-menu.scss"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/side-panel/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'side-panel'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/sortable/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'sortable'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/stats/__index.scss: -------------------------------------------------------------------------------- 1 | @import "_stats.scss"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/tags/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'tags'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/tips/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'tips'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/components/frontendcore-scss/ui/wysiwyg/__index.scss: -------------------------------------------------------------------------------- 1 | @import 'wysiwyg'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/css/ie-new.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/css/ie-old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/css/ie-old.css -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/css/main.css -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/css/ui.css -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/Thumbs.db -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/arrow.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/arrow_up.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/av.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/av.jpg -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/avatar2.jpg -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/bg.jpg -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/blur_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/blur_bg.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/db-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/db-icon.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/doc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/doc1.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/doc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/doc2.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/doc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/doc3.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/dr-evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/dr-evil.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/favicon.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/fb-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/fb-icon.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/fl-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/fl-icon.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ad.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ae.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/af.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ag.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ai.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/al.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/am.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/an.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ao.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ar.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/as.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/at.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/au.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/aw.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ax.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/az.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ba.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bb.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bd.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/be.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bf.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bg.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bh.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bi.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bj.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bn.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bo.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/br.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bs.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bt.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bv.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bw.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/by.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/bz.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ca.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cc.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cd.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cf.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cg.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ch.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ci.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ck.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cl.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cn.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/co.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cr.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cs.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cu.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cv.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cx.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cy.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/cz.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/de.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dj.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dk.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/do.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/dz.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ec.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ee.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/eg.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/eh.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/er.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/es.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/et.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fi.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fj.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fk.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fo.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/fr.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ga.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gb.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gd.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ge.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gf.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gh.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gi.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gl.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gn.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gp.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gq.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gr.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gs.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gt.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gu.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gw.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/gy.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hk.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hn.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hr.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ht.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/hu.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/id.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ie.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/il.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/in.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/io.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/iq.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ir.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/is.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/it.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jm.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jo.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/jp.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/ke.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/flags/kg.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/grey.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/logo.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/minus.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/plus.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/images/uh-si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/images/uh-si.png -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/js/jquery.upload/server/node/public/files/thumbnail/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/public/js/modules/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/public/js/modules/md5.js -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/_config/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/scss/_config/_fonts.scss -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/_config/_ui.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/helpers/classes/__index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/helpers/placeholders/__index.scss: -------------------------------------------------------------------------------- 1 | @import "icon-rounded"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/ie-new.scss: -------------------------------------------------------------------------------- 1 | @import '../public/components/frontendcore-scss/ie-new'; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/ie-old.scss: -------------------------------------------------------------------------------- 1 | @import "../public/components/frontendcore-scss/ie-old"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/scss/main.scss -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/boxpopuli/__index.scss: -------------------------------------------------------------------------------- 1 | @import "boxpopuli"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/checkbox/__index.scss: -------------------------------------------------------------------------------- 1 | @import "checkbox"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/container/_body.scss: -------------------------------------------------------------------------------- 1 | body { 2 | height: 100%; 3 | } -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/dashboard/_dashboard-panels.scss: -------------------------------------------------------------------------------- 1 | .dashboard-panels { 2 | [class*='col'] { 3 | position: relative; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/date-hour/__index.scss: -------------------------------------------------------------------------------- 1 | @import "date-hour"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/fixed-bottom/__index.scss: -------------------------------------------------------------------------------- 1 | @import "fixed-bottom"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/form-configuration/__index.scss: -------------------------------------------------------------------------------- 1 | @import "form-configuration"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/form-grid/__index.scss: -------------------------------------------------------------------------------- 1 | @import "form-grid"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/header-mobile/__index.scss: -------------------------------------------------------------------------------- 1 | @import "header-mobile"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/hidden-placeholder/__index.scss: -------------------------------------------------------------------------------- 1 | @import "hidden-placeholder"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/no-items/__index.scss: -------------------------------------------------------------------------------- 1 | @import "no-items"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/order/__index.scss: -------------------------------------------------------------------------------- 1 | @import "order-history"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/papa/__index.scss: -------------------------------------------------------------------------------- 1 | @import "papa-air"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/section-header/__index.scss: -------------------------------------------------------------------------------- 1 | @import "section-header"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/thumbnail/__index.scss: -------------------------------------------------------------------------------- 1 | @import "thumbnail-first-principal"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/welcome/__index.scss: -------------------------------------------------------------------------------- 1 | @import "welcome"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/objects/wysiwyg/__index.scss: -------------------------------------------------------------------------------- 1 | @import "fc-wysiwyg"; -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/scss/ui.scss -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/scss/ui/__index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/views/Navs/top.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/views/Navs/top.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/views/base.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CoreBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CoreBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/AdminCouponBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/AdminCouponBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Controller/CouponController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Controller/CouponController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Form/Type/CouponType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Form/Type/CouponType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CouponBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CouponBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/AdminCurrencyBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/AdminCurrencyBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Form/Type/CurrencyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Form/Type/CurrencyType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Form/Type/MoneyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Form/Type/MoneyType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/CurrencyBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/CurrencyBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/AdminGeoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/AdminGeoBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Controller/LocationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Controller/LocationController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Form/LocationSelectorBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Form/LocationSelectorBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Form/Type/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Form/Type/AddressType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/GeoBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/GeoBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/LanguageBundle/AdminLanguageBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/LanguageBundle/AdminLanguageBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/LanguageBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/LanguageBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/LanguageBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/LanguageBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/LanguageBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/LanguageBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/LanguageBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Admin/MediaBundle/AdminMediaBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MediaBundle/AdminMediaBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MediaBundle/Controller/ImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MediaBundle/Controller/ImageController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MediaBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MediaBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/MediaBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MediaBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/AdminMetricBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/AdminMetricBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/AdminPanelTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/AdminPanelTypes.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Controller/PanelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Controller/PanelController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Controller/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Controller/ReportsController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Model/IntervalContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Model/IntervalContainer.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Model/PartialInterval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Model/PartialInterval.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/MetricBundle/Resources/config/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/MetricBundle/Resources/config/twig.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/NewsletterBundle/AdminNewsletterBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/NewsletterBundle/AdminNewsletterBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/NewsletterBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/NewsletterBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/AdminPageBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/AdminPageBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Controller/BlogPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Controller/BlogPostController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Controller/EmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Controller/EmailController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Controller/PageController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Form/Type/BlogPostType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Form/Type/BlogPostType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Form/Type/EmailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Form/Type/EmailType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Form/Type/PageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Form/Type/PageType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PageBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PageBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PaymentBundle/AdminPaymentBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PaymentBundle/AdminPaymentBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PaymentBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PaymentBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PaymentBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PaymentBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/AdminPluginBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/AdminPluginBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Builder/PluginMenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Builder/PluginMenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Controller/PluginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Controller/PluginController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Resources/config/pluginMenu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Resources/config/pluginMenu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/PluginBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/PluginBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/AdminProductBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/AdminProductBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Controller/PackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Controller/PackController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Form/Type/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Form/Type/CategoryType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Form/Type/ManufacturerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Form/Type/ManufacturerType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Form/Type/PackType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Form/Type/PackType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Form/Type/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Form/Type/ProductType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Form/Type/VariantType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Form/Type/VariantType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Resources/config/validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Resources/config/validator.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Services/CategorySorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Services/CategorySorter.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ProductBundle/Validation/MinimumMoney.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ProductBundle/Validation/MinimumMoney.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/AdminRuleBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/AdminRuleBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Controller/RuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Controller/RuleController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Form/Type/RuleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Form/Type/RuleType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Resources/views/Rule/nav.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Resources/views/Rule/nav.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/RuleBundle/Resources/views/Rule/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/RuleBundle/Resources/views/Rule/new.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Admin/ShippingBundle/AdminShippingBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ShippingBundle/AdminShippingBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ShippingBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ShippingBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/ShippingBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/ShippingBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/AdminStoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/AdminStoreBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Controller/StoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Controller/StoreController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Form/Type/StoreAddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Form/Type/StoreAddressType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Form/Type/StoreCorporateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Form/Type/StoreCorporateType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Form/Type/StoreSettingsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Form/Type/StoreSettingsType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/StoreBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/StoreBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/TemplateBundle/AdminTemplateBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/TemplateBundle/AdminTemplateBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/TemplateBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/TemplateBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/TemplateBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/TemplateBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/TemplateBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/TemplateBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/AdminUserBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/AdminUserBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Controller/AdminUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Controller/AdminUserController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Controller/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Controller/CustomerController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Controller/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Controller/PasswordController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Controller/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Controller/ProfileController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/AdminUserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/AdminUserType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/CustomerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/CustomerType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/LoginType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/LoginType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/PasswordRecoverType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/PasswordRecoverType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/PasswordRememberType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/PasswordRememberType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/ProfileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/ProfileType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Form/Type/RegisterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Form/Type/RegisterType.php -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/config/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Resources/config/menu.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/security/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Admin/UserBundle/Resources/security/roles.yml -------------------------------------------------------------------------------- /src/Elcodi/Admin/UserBundle/Resources/views/Profile/view.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'AdminCoreBundle::layout.html.twig' %} 2 | -------------------------------------------------------------------------------- /src/Elcodi/Bridge/BehatBridgeBundle/BehatBridgeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Bridge/BehatBridgeBundle/BehatBridgeBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Bridge/BehatBridgeBundle/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Bridge/BehatBridgeBundle/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Bridge/BehatBridgeBundle/DoctrineContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Bridge/BehatBridgeBundle/DoctrineContext.php -------------------------------------------------------------------------------- /src/Elcodi/Common/CommonBundle/ElcodiCommonBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Common/CommonBundle/ElcodiCommonBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Common/CommonBundle/Resources/config/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Common/CommonBundle/Resources/config/commands.yml -------------------------------------------------------------------------------- /src/Elcodi/Common/FirewallBundle/ElcodiFirewallBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Common/FirewallBundle/ElcodiFirewallBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Address/AddressData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Address/AddressData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Category/CategoryData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Category/CategoryData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Coupon/CouponData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Coupon/CouponData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Currency/CurrencyData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Currency/CurrencyData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Currency/currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Currency/currencies.yml -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Customer/CustomerData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Customer/CustomerData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Language/LanguageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Language/LanguageData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Language/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Language/languages.yml -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Menu/MenuData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Menu/MenuData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Page/PageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Page/PageData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Product/PackData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Product/PackData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Product/ProductData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Product/ProductData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Product/images/pack-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Product/images/pack-1.jpg -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Rates/RatesData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Rates/RatesData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Rule/RuleData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Rule/RuleData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Store/StoreData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Store/StoreData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Tax/TaxData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Tax/TaxData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Zone/ZoneData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Zone/ZoneData.php -------------------------------------------------------------------------------- /src/Elcodi/Fixtures/DataFixtures/ORM/Zone/zones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Fixtures/DataFixtures/ORM/Zone/zones.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/ElcodiBankwireBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/ElcodiBankwireBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/Resources/config/external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/Resources/config/external.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/BankwireBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/BankwireBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/Builder/MenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/Builder/MenuBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/Entity/Carrier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/Entity/Carrier.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/CustomShippingBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/CustomShippingBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/ElcodiDisqusBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/ElcodiDisqusBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/Resources/config/templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/Resources/config/templating.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/Resources/views/block.html.twig: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/Templating/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/Templating/TwigRenderer.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/DisqusBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/DisqusBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/ElcodiFacebookBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/ElcodiFacebookBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/Templating/FollowRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/Templating/FollowRenderer.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FacebookBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FacebookBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/FreePaymentBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/FreePaymentBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/GoogleAnalyticsBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/GoogleAnalyticsBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PaypalWebCheckoutBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PaypalWebCheckoutBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/ElcodiPinterestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/ElcodiPinterestBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/Templating/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/Templating/TwigRenderer.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/PinterestBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/PinterestBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/ElcodiProductCsvBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/ElcodiProductCsvBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/Resources/config/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/Resources/config/twig.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/Templating/TwigRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/Templating/TwigRenderer.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/ProductCsvBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/ProductCsvBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreSetupWizardBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreSetupWizardBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Gruntfile.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Resources/public/css/686tees.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Resources/public/preview/language-nav.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/_config/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/_config/_fonts.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/__index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/__index.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_defaults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_defaults.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_grid.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/base/_reset.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/external/__index.scss: -------------------------------------------------------------------------------- 1 | @import "font-awesome"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/Scss/main.scss -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/blog/__index.scss: -------------------------------------------------------------------------------- 1 | @import "blog-post"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/breadcrumb/__index.scss: -------------------------------------------------------------------------------- 1 | @import "breadcrumb"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/category-nav/__index.scss: -------------------------------------------------------------------------------- 1 | @import "category-nav"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/checkout/__index.scss: -------------------------------------------------------------------------------- 1 | @import "checkout"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/currency-nav/__index.scss: -------------------------------------------------------------------------------- 1 | @import "currency-nav"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/empty-page/__index.scss: -------------------------------------------------------------------------------- 1 | @import "empty-page"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/header/__index.scss: -------------------------------------------------------------------------------- 1 | @import "header"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/inputs/__index.scss: -------------------------------------------------------------------------------- 1 | @import "input"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/login-social/__index.scss: -------------------------------------------------------------------------------- 1 | @import "login-social"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/pages/__index.scss: -------------------------------------------------------------------------------- 1 | @import "pages"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/pagination/__index.scss: -------------------------------------------------------------------------------- 1 | @import "pagination"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/progress/__index.scss: -------------------------------------------------------------------------------- 1 | @import "progress"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/rule/__index.scss: -------------------------------------------------------------------------------- 1 | @import "_rule.scss" -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/selects/__index.scss: -------------------------------------------------------------------------------- 1 | @import "select"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/switch/__index.scss: -------------------------------------------------------------------------------- 1 | @import "switch"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/Scss/objects/white-panel/__index.scss: -------------------------------------------------------------------------------- 1 | @import "white-panel"; -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/StoreTemplateBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/StoreTemplateBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/bower.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/config.rb -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/database.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/addresses.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/cart-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/cart-empty.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/cart-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/cart-full.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/currencies.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/currencyCategoryId-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "currentCategoryId" : "1" 3 | } -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/currencyCategoryId-null.json: -------------------------------------------------------------------------------- 1 | { 2 | "currentCategoryId" : null 3 | } -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/form.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/5.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/amnesia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/amnesia.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/banana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/banana.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/lips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/lips.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/poem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/poem.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/there.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/img/there.jpg -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/index.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/order.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/orders.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/paginator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/paginator.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/product.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/products.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/fixtures/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/fixtures/store.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/clean.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/compass.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/copy.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/jshint.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/markdown.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/replace.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/twigRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/twigRender.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/watch.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/grunt/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/grunt/yaml.js -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/package.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StoreTemplateBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StoreTemplateBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/ElcodiStripeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/ElcodiStripeBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/Resources/config/external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/Resources/config/external.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/StripeBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/StripeBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/.editorconfig -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/.formatter.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/.gitignore -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/ElcodiTwitterBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/ElcodiTwitterBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/LICENSE -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/README.md -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/Resources/config/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/Resources/config/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/Templating/FollowRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/Templating/FollowRenderer.php -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/composer.json -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Elcodi/Plugin/TwitterBundle/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Plugin/TwitterBundle/plugin.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Behat/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Behat/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Controller/CartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Controller/CartController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Controller/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Controller/CheckoutController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Controller/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Controller/OrderController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Form/Type/CartLineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Form/Type/CartLineType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Form/Type/CartType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Form/Type/CartType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CartBundle/StoreCartBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartBundle/StoreCartBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CartCouponBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartCouponBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CartCouponBundle/StoreCartCouponBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CartCouponBundle/StoreCartCouponBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/Entity/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/Entity/Authorization.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/Resources/config/directors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/Resources/config/directors.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/Resources/config/factories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/Resources/config/factories.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/Services/OAuthUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/Services/OAuthUserProvider.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ConnectBundle/StoreConnectBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ConnectBundle/StoreConnectBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Behat/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Behat/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Controller/ExceptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Controller/ExceptionController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Controller/HomeController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Resources/config/exceptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Resources/config/exceptions.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Resources/config/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Resources/config/twig.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Services/TemplateLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Services/TemplateLocator.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/StoreCoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/StoreCoreBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Twig/EncryptExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Twig/EncryptExtension.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Twig/ReferrerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Twig/ReferrerExtension.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CoreBundle/Twig/TemplateLocatorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CoreBundle/Twig/TemplateLocatorExtension.php -------------------------------------------------------------------------------- /src/Elcodi/Store/CurrencyBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CurrencyBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/CurrencyBundle/StoreCurrencyBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/CurrencyBundle/StoreCurrencyBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/FallbackBundle/StoreFallbackBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/FallbackBundle/StoreFallbackBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Behat/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Behat/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Controller/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Controller/AddressController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Controller/LocationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Controller/LocationController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Form/LocationSelectorBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Form/LocationSelectorBuilder.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Form/Type/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Form/Type/AddressType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/GeoBundle/StoreGeoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/GeoBundle/StoreGeoBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/LanguageBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/LanguageBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/LanguageBundle/StoreLanguageBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/LanguageBundle/StoreLanguageBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/MetricBundle/StoreMetricBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/MetricBundle/StoreMetricBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/OverrideBundle/StoreOverrideBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/OverrideBundle/StoreOverrideBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Controller/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Controller/BlogController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Resources/config/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Resources/config/twig.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Resources/views/email.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Resources/views/email.html.twig -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/StorePageBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/StorePageBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/PageBundle/Twig/PageExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/PageBundle/Twig/PageExtension.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ProductBundle/Behat/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ProductBundle/Behat/Context.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ProductBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ProductBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/ProductBundle/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ProductBundle/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/ProductBundle/Services/StoreCategoryTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ProductBundle/Services/StoreCategoryTree.php -------------------------------------------------------------------------------- /src/Elcodi/Store/ProductBundle/StoreProductBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/ProductBundle/StoreProductBundle.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Controller/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Controller/PasswordController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Controller/UserController.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Form/Type/LoginType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Form/Type/LoginType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Form/Type/PasswordRecoverType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Form/Type/PasswordRecoverType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Form/Type/PasswordRememberType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Form/Type/PasswordRememberType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Form/Type/ProfileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Form/Type/ProfileType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Form/Type/RegisterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Form/Type/RegisterType.php -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Resources/config/formTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Resources/config/formTypes.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/Resources/security/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/Resources/security/roles.yml -------------------------------------------------------------------------------- /src/Elcodi/Store/UserBundle/StoreUserBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/src/Elcodi/Store/UserBundle/StoreUserBundle.php -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/ansible/files/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/files/authorized_keys -------------------------------------------------------------------------------- /vagrant/ansible/inventories/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/inventories/dev -------------------------------------------------------------------------------- /vagrant/ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/playbook.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/apache/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/apache/handlers/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/apache/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/apache/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/apache/templates/vhost22.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/apache/templates/vhost22.conf.tpl -------------------------------------------------------------------------------- /vagrant/ansible/roles/apache/templates/vhost24.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/apache/templates/vhost24.conf.tpl -------------------------------------------------------------------------------- /vagrant/ansible/roles/app/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/app/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/composer/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/composer/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/mysql/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/mysql/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/handlers/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/configure.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/mod-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/mod-php.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/pecl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/pecl.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/php-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/php-cli.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/tasks/php-fpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/tasks/php-fpm.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/php/templates/extension.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/php/templates/extension.tpl -------------------------------------------------------------------------------- /vagrant/ansible/roles/redis/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/redis/defaults/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/redis/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/redis/handlers/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/redis/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/redis/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/redis/templates/conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/redis/templates/conf.tpl -------------------------------------------------------------------------------- /vagrant/ansible/roles/redis/templates/init.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/redis/templates/init.tpl -------------------------------------------------------------------------------- /vagrant/ansible/roles/server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/server/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/server/templates/timezone.tpl: -------------------------------------------------------------------------------- 1 | {{server.timezone}} 2 | -------------------------------------------------------------------------------- /vagrant/ansible/roles/vagrant_local/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/vagrant_local/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/roles/xdebug/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | xdebug: 3 | settings: [] 4 | -------------------------------------------------------------------------------- /vagrant/ansible/roles/xdebug/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/roles/xdebug/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/ansible/vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/vars/all.yml -------------------------------------------------------------------------------- /vagrant/ansible/windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/vagrant/ansible/windows.sh -------------------------------------------------------------------------------- /visithor.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/visithor.yml.dist -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-144x144.png -------------------------------------------------------------------------------- /web/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-192x192.png -------------------------------------------------------------------------------- /web/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-36x36.png -------------------------------------------------------------------------------- /web/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-48x48.png -------------------------------------------------------------------------------- /web/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-72x72.png -------------------------------------------------------------------------------- /web/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/android-icon-96x96.png -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/app_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/app_test.php -------------------------------------------------------------------------------- /web/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-114x114.png -------------------------------------------------------------------------------- /web/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-120x120.png -------------------------------------------------------------------------------- /web/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-144x144.png -------------------------------------------------------------------------------- /web/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-152x152.png -------------------------------------------------------------------------------- /web/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-180x180.png -------------------------------------------------------------------------------- /web/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-57x57.png -------------------------------------------------------------------------------- /web/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-60x60.png -------------------------------------------------------------------------------- /web/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-72x72.png -------------------------------------------------------------------------------- /web/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-76x76.png -------------------------------------------------------------------------------- /web/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon-precomposed.png -------------------------------------------------------------------------------- /web/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/apple-icon.png -------------------------------------------------------------------------------- /web/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/browserconfig.xml -------------------------------------------------------------------------------- /web/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/favicon-16x16.png -------------------------------------------------------------------------------- /web/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/favicon-32x32.png -------------------------------------------------------------------------------- /web/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/favicon-96x96.png -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/ms-icon-144x144.png -------------------------------------------------------------------------------- /web/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/ms-icon-150x150.png -------------------------------------------------------------------------------- /web/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/ms-icon-310x310.png -------------------------------------------------------------------------------- /web/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/ms-icon-70x70.png -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcodi/bamboo/HEAD/web/robots.txt --------------------------------------------------------------------------------