├── .gitattributes ├── .gitignore ├── Modules ├── Category │ ├── Assets │ │ └── .gitkeep │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2017_11_07_164328_category_tree_table.php │ │ └── Seeders │ │ │ ├── .gitkeep │ │ │ └── CategoryDatabaseSeeder.php │ ├── Dfcore │ │ └── CategoryHelper.php │ ├── Emails │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── CategoryTable.php │ │ └── Repository │ │ │ ├── CategoryTableRepository.php │ │ │ └── Contract │ │ │ └── iCategoryTable.php │ ├── Events │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── CategoryController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ ├── Requests │ │ │ └── .gitkeep │ │ └── routes.php │ ├── Jobs │ │ └── .gitkeep │ ├── Listeners │ │ └── .gitkeep │ ├── Notifications │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── CategoryServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Repositories │ │ └── .gitkeep │ ├── Resources │ │ ├── lang │ │ │ ├── .gitkeep │ │ │ └── nl │ │ │ │ └── messages.php │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── layouts │ │ │ └── master.blade.php │ ├── Tests │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ └── start.php └── FirstModule │ ├── Assets │ └── .gitkeep │ ├── Config │ ├── .gitkeep │ └── config.php │ ├── Console │ └── .gitkeep │ ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeders │ │ ├── .gitkeep │ │ └── FirstModuleDatabaseSeeder.php │ ├── Emails │ └── .gitkeep │ ├── Entities │ └── .gitkeep │ ├── Events │ └── .gitkeep │ ├── Http │ ├── Controllers │ │ ├── .gitkeep │ │ └── FirstModuleController.php │ ├── Middleware │ │ └── .gitkeep │ ├── Requests │ │ └── .gitkeep │ └── routes.php │ ├── Jobs │ └── .gitkeep │ ├── Listeners │ └── .gitkeep │ ├── Notifications │ └── .gitkeep │ ├── Providers │ ├── .gitkeep │ └── FirstModuleServiceProvider.php │ ├── Repositories │ └── .gitkeep │ ├── Resources │ ├── lang │ │ └── .gitkeep │ └── views │ │ ├── .gitkeep │ │ ├── index.blade.php │ │ └── layouts │ │ └── master.blade.php │ ├── Tests │ └── .gitkeep │ ├── composer.json │ ├── module.json │ └── start.php ├── Supervisor.example ├── app ├── Console │ ├── Commands │ │ ├── CreateAdwordsCountries.php │ │ ├── DfJobScheduler.php │ │ ├── GetChannels.php │ │ ├── SendToAdwords.php │ │ └── TestingJobs │ │ │ ├── Import.php │ │ │ ├── InsertTmpRule.php │ │ │ ├── PushToAdwords.php │ │ │ ├── RefreshCounters.php │ │ │ ├── UpdateBol.php │ │ │ └── UpdateRuleProducts.php │ └── Kernel.php ├── DfCore │ └── DfBs │ │ ├── Adwords │ │ ├── AdgroupPreview.php │ │ ├── AdwordsApiPusher.php │ │ ├── AdwordsApiWrapper.php │ │ ├── AdwordsHelpers.php │ │ ├── AdwordsValidator.php │ │ └── SendAdsToAdwords.php │ │ ├── Channels │ │ ├── ChannelConsumer.php │ │ └── ExportChannels │ │ │ ├── ChannelStrategy.php │ │ │ ├── Contract │ │ │ ├── AbstractChannel.php │ │ │ └── iExportChannel.php │ │ │ └── NL │ │ │ ├── ADPS.php │ │ │ ├── Adcrowd.php │ │ │ ├── AddRoll.php │ │ │ ├── Adform.php │ │ │ ├── Aff4you.php │ │ │ ├── AffiliateWindow.php │ │ │ ├── Affilinet.php │ │ │ ├── Awin.php │ │ │ ├── Bazaavoice.php │ │ │ ├── Beslist.php │ │ │ ├── Biano.php │ │ │ ├── Bingads.php │ │ │ ├── Boetiek.php │ │ │ ├── Ceneo.php │ │ │ ├── Choozen.php │ │ │ ├── Ciao.php │ │ │ ├── Clang.php │ │ │ ├── Criteo.php │ │ │ ├── Daisycon.php │ │ │ ├── Deltaprojects.php │ │ │ ├── Devoordeelgroup.php │ │ │ ├── Doubleclick.php │ │ │ ├── Epoq.php │ │ │ ├── Facebook.php │ │ │ ├── Fasha.php │ │ │ ├── Fashionchick.php │ │ │ ├── Frendz.php │ │ │ ├── Fruugo.php │ │ │ ├── GoogleDisplayAds.php │ │ │ ├── GoogleShopping.php │ │ │ ├── Hardwareinfo.php │ │ │ ├── Kieskeurig.php │ │ │ ├── Kiyoh.php │ │ │ ├── Kleding.php │ │ │ ├── Koopkeus.php │ │ │ ├── Leguide.php │ │ │ ├── Logicsale.php │ │ │ ├── Lootjestrekken.php │ │ │ ├── Minto.php │ │ │ ├── Monetate.php │ │ │ ├── Mybestbrands.php │ │ │ ├── Myhomeshopping.php │ │ │ ├── OOShopping.php │ │ │ ├── Prijsvergelijk.php │ │ │ ├── Promodeals.php │ │ │ ├── Publitias.php │ │ │ ├── Scoupz.php │ │ │ ├── Sellvation.php │ │ │ ├── Shopalike.php │ │ │ ├── Shopdichtbij.php │ │ │ ├── Shopmania.php │ │ │ ├── Shopr.php │ │ │ ├── Sizmek.php │ │ │ ├── Smartly.php │ │ │ ├── Sociomantic.php │ │ │ ├── Sooqr.php │ │ │ ├── Spartoo.php │ │ │ ├── Stadnl.php │ │ │ ├── Stockbase.php │ │ │ ├── Stylefruits.php │ │ │ ├── Stylelounge.php │ │ │ ├── Styligth.php │ │ │ ├── TNA.php │ │ │ ├── Tobedressed.php │ │ │ ├── TradeDoubler.php │ │ │ ├── Tradetracker.php │ │ │ ├── Tweakers.php │ │ │ ├── Twenga.php │ │ │ ├── Vergelijk.php │ │ │ ├── Viafixit.php │ │ │ ├── Vindkleding.php │ │ │ ├── Webgains.php │ │ │ └── Zanox.php │ │ ├── Enum │ │ ├── AdwordsOptions.php │ │ ├── CategoryChannels.php │ │ ├── Channel.php │ │ ├── ChannelRegistery.php │ │ ├── CommonRulesEnum.php │ │ ├── ConditionSelector.php │ │ ├── ESImportType.php │ │ ├── ESIndexTypes.php │ │ ├── ImportFilters.php │ │ ├── ImportStatus.php │ │ ├── ImportType.php │ │ ├── LogStates.php │ │ ├── RevisionType.php │ │ ├── RuleConditions.php │ │ ├── TasklogEnum.php │ │ ├── UpdateIntervals.php │ │ └── UrlKey.php │ │ ├── FileWriter │ │ └── FeedWriter.php │ │ ├── Import │ │ ├── Adwords │ │ │ └── Countries.php │ │ ├── Category │ │ │ ├── CategoryChannels │ │ │ │ ├── Contract │ │ │ │ │ └── iChannel.php │ │ │ │ └── GoogleShopping.php │ │ │ └── CategoryImportFactory.php │ │ ├── Csv │ │ │ ├── CsvMappingFacade.php │ │ │ └── CsvReaderFacade.php │ │ ├── Facade │ │ │ ├── ImportFeedFacade.php │ │ │ └── RemoveFeedFacade.php │ │ ├── Filters │ │ │ ├── Contract │ │ │ │ └── iFilter.php │ │ │ ├── ExampleFilter.php │ │ │ ├── FilterFactory.php │ │ │ └── RemoveHtmlTags.php │ │ ├── Mapping │ │ │ ├── ChannelMapping.php │ │ │ ├── DetectFieldType.php │ │ │ ├── MappedVisibleFieldsFacade.php │ │ │ ├── Mapping.php │ │ │ ├── MappingFactory.php │ │ │ ├── MappingValidator.php │ │ │ └── ProductId.php │ │ ├── Remote │ │ │ └── RemoteFileService.php │ │ └── Xml │ │ │ ├── CustomXmlParser │ │ │ ├── Parsefeed.php │ │ │ ├── Register.php │ │ │ ├── TestParser.php │ │ │ └── iParseCustomXml.php │ │ │ ├── Xml2Array.php │ │ │ ├── XmlMappingFacade.php │ │ │ └── XmlReaderFacade.php │ │ ├── Log │ │ ├── DfbuilderLogger.php │ │ ├── FeedlogFacade.php │ │ ├── LoggerFacade.php │ │ └── Logtodatabase.php │ │ └── Rules │ │ ├── Builder │ │ ├── AbstractRuleBuilder.php │ │ ├── AdwordsRuleBuilder.php │ │ ├── CategoryBuilder.php │ │ ├── CategoryDirector.php │ │ ├── FeedOperationDirector.php │ │ ├── FeedOperationsBuilder.php │ │ ├── RevisionBuilder.php │ │ └── RevisionDirector.php │ │ ├── ConditionToHtmlFormType.php │ │ ├── CustomControlerRegister.php │ │ ├── RuleCronjobFacade.php │ │ ├── RuleStrategy │ │ ├── RegisterStrategy.php │ │ └── Strategies │ │ │ ├── AbstractBaseRule.php │ │ │ ├── AlterFieldValueStrategy.php │ │ │ ├── AppendStrategy.php │ │ │ ├── CalculateNumberStrategy.php │ │ │ ├── CalculateStringLengthStrategy.php │ │ │ ├── CalculateSumStrategy.php │ │ │ ├── CombineFieldValue.php │ │ │ ├── CommonStringActions.php │ │ │ ├── CopyValueFromFieldStrategy.php │ │ │ ├── FindReplaceFieldStrategy.php │ │ │ ├── FindReplaceStrategy.php │ │ │ ├── GoogleTracking.php │ │ │ ├── SplitFieldStrategy.php │ │ │ ├── StringLengthStrategy.php │ │ │ ├── ThenFindReplaceOtherFieldStrategy.php │ │ │ ├── ThenRoundNumberStrategy.php │ │ │ └── iContract.php │ │ └── Wizard │ │ └── ChannelWizard.php ├── ElasticSearch │ ├── BaseESQuery.php │ ├── BaseElasticSearch.php │ ├── DynamicFeedRepository.php │ ├── ESAdwords.php │ ├── ESBol.php │ ├── ESCategorizeFilter.php │ ├── ESChannel.php │ ├── ESCopyIndex.php │ ├── ESHot.php │ └── ESRules.php ├── Entity │ ├── AdCampaignPreview.php │ ├── AdgroupPreview.php │ ├── AdsKeywordPreview.php │ ├── AdsPreview.php │ ├── AdwordsAd.php │ ├── AdwordsConfiguration.php │ ├── AdwordsGoogleCountries.php │ ├── AdwordsGoogleLanguages.php │ ├── AdwordsKeyword.php │ ├── AdwordsRevision.php │ ├── AdwordsTarget.php │ ├── Adwordsfeed.php │ ├── Bolads.php │ ├── BoladsPreview.php │ ├── Bolfeed.php │ ├── Category.php │ ├── CategoryBol.php │ ├── CategoryChannel.php │ ├── CategoryFilter.php │ ├── Channel.php │ ├── ChannelCountry.php │ ├── ChannelCustomMapping.php │ ├── ChannelFeed.php │ ├── ChannelFeedMapping.php │ ├── ChannelMapping.php │ ├── ChannelType.php │ ├── CompositeMapping.php │ ├── Csvmapping.php │ ├── CustomMapping.php │ ├── Dflogger.php │ ├── Feed.php │ ├── FeedLog.php │ ├── FieldToMap.php │ ├── Mongo │ │ └── Schema │ │ │ └── Schema.php │ ├── Repository │ │ ├── AdCampaignPreviewRepository.php │ │ ├── AdgroupPreviewRepository.php │ │ ├── AdsKeywordPreviewRepository.php │ │ ├── AdsPreviewRepository.php │ │ ├── AdwordsAdRepository.php │ │ ├── AdwordsConfigurationRepository.php │ │ ├── AdwordsGoogleCountriesRepository.php │ │ ├── AdwordsGoogleLanguagesRepository.php │ │ ├── AdwordsKeywordRepository.php │ │ ├── AdwordsRevisionRepository.php │ │ ├── AdwordsTargetRepository.php │ │ ├── AdwordsfeedRepository.php │ │ ├── BolAdsPreviewRepository.php │ │ ├── BolAdsRepository.php │ │ ├── BolFeedRepository.php │ │ ├── CategoryBolRepository.php │ │ ├── CategoryChannelRepository.php │ │ ├── CategoryFilterRepository.php │ │ ├── CategoryRepository.php │ │ ├── ChannelCountryRepository.php │ │ ├── ChannelCustomMappingRepository.php │ │ ├── ChannelFeedMappingRepository.php │ │ ├── ChannelFeedRepository.php │ │ ├── ChannelMappingRepository.php │ │ ├── ChannelRepository.php │ │ ├── ChannelTypeRepository.php │ │ ├── CompositeMappingRepository.php │ │ ├── Contract │ │ │ ├── iAdCampaignPreview.php │ │ │ ├── iAdgroupPreview.php │ │ │ ├── iAdsKeywordPreview.php │ │ │ ├── iAdsPreview.php │ │ │ ├── iAdwordsAd.php │ │ │ ├── iAdwordsConfiguration.php │ │ │ ├── iAdwordsGoogleCountries.php │ │ │ ├── iAdwordsGoogleLanguages.php │ │ │ ├── iAdwordsKeyword.php │ │ │ ├── iAdwordsRevision.php │ │ │ ├── iAdwordsTarget.php │ │ │ ├── iAdwordsfeed.php │ │ │ ├── iBolAds.php │ │ │ ├── iBolAdsPreview.php │ │ │ ├── iBolFeed.php │ │ │ ├── iCategory.php │ │ │ ├── iCategoryBol.php │ │ │ ├── iCategoryChannel.php │ │ │ ├── iCategoryFilter.php │ │ │ ├── iChannel.php │ │ │ ├── iChannelCountry.php │ │ │ ├── iChannelCustomMapping.php │ │ │ ├── iChannelFeed.php │ │ │ ├── iChannelFeedMapping.php │ │ │ ├── iChannelMapping.php │ │ │ ├── iChannelType.php │ │ │ ├── iCompositeMapping.php │ │ │ ├── iCsvMapping.php │ │ │ ├── iCustomMapping.php │ │ │ ├── iDflogger.php │ │ │ ├── iFeed.php │ │ │ ├── iFeedLog.php │ │ │ ├── iFieldToMap.php │ │ │ ├── iRevision.php │ │ │ ├── iRule.php │ │ │ ├── iRuleAdwords.php │ │ │ ├── iRuleBol.php │ │ │ ├── iRuleChannel.php │ │ │ ├── iRuleCondition.php │ │ │ ├── iSpreadsheetHeader.php │ │ │ ├── iStore.php │ │ │ ├── iTaskLog.php │ │ │ └── iXmlMapping.php │ │ ├── CsvMappingRepository.php │ │ ├── CustomMappingRepository.php │ │ ├── DfloggerRepository.php │ │ ├── FeedLogRepository.php │ │ ├── FeedRepository.php │ │ ├── FieldToMapRepository.php │ │ ├── Repository.php │ │ ├── RevisionRepository.php │ │ ├── RuleAdwordsRepository.php │ │ ├── RuleBolRepository.php │ │ ├── RuleConditionRepository.php │ │ ├── RuleRepository.php │ │ ├── RulesChannelRepository.php │ │ ├── SpreadsheetHeaderRepository.php │ │ ├── StoreRepository.php │ │ ├── TasklogRepository.php │ │ └── XmlMappingRepository.php │ ├── Revision.php │ ├── Rule.php │ ├── RuleAdwords.php │ ├── RuleBol.php │ ├── RuleCondition.php │ ├── RulesChannel.php │ ├── SpreadsheetHeader.php │ ├── Store.php │ ├── Tasklog.php │ ├── User.php │ └── Xmlmapping.php ├── Events │ ├── AdwordsPreviewCreated.php │ ├── CatFilterProcessed.php │ ├── FeedImported.php │ ├── RuleFilterProcessed.php │ └── RulesUpdated.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ └── DfCore │ │ │ ├── Adwords │ │ │ └── AdwordsController.php │ │ │ ├── Channel │ │ │ ├── ChannelController.php │ │ │ └── SpreadSheetController.php │ │ │ ├── Common │ │ │ ├── FilterController.php │ │ │ ├── LoggingController.php │ │ │ └── RulesController.php │ │ │ ├── Feed │ │ │ ├── ImportController.php │ │ │ └── TeaserController.php │ │ │ ├── IndexController.php │ │ │ ├── Marketplaces │ │ │ └── BolController.php │ │ │ └── StoreController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckStoreSelected.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── Importfeed.php │ ├── InsertTmpCategorize.php │ ├── InsertTmpRule.php │ ├── RemoveTmpCategorize.php │ ├── RemoveTmpRule.php │ ├── UpdateAdwords.php │ └── UpdateChannel.php ├── Listeners │ ├── CatFilter.php │ ├── Feedimport.php │ └── RuleFilter.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RepoServiceProvider.php │ ├── RouteServiceProvider.php │ └── ViewComposerServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── dfbuilder.php ├── elasticsearch.php ├── filesystems.php ├── google-ads.php ├── mail.php ├── menu.php ├── modules.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_02_07_125117_create_store_table.php │ ├── 2017_02_08_184919_create_feed_table.php │ ├── 2017_02_17_101658_create_fields_to_map.php │ ├── 2017_02_17_125026_create_csv_mapping.php │ ├── 2017_02_17_125041_create_xml_mapping.php │ ├── 2017_03_19_123440_create_to_category_table.php │ ├── 2017_03_19_124506_create_category_filter_table.php │ ├── 2017_03_27_064158_create_jobs_table.php │ ├── 2017_03_27_154055_create_failed_jobs_table.php │ ├── 2017_04_06_142505_create_rule_table.php │ ├── 2017_04_06_142534_create_rule_conditions.php │ ├── 2017_04_10_133319_create_composite_key_table.php │ ├── 2017_05_10_063524_create_spreadsheet_headers_table.php │ ├── 2017_05_10_154629_create_revision_table.php │ ├── 2017_05_24_084920_create_feed_log_messages.php │ ├── 2017_05_30_081549_create_channel_table.php │ ├── 2017_05_30_082018_create_country_table.php │ ├── 2017_05_30_082326_channel_type.php │ ├── 2017_05_30_083257_create_channel_mapping.php │ ├── 2017_05_30_084014_create_channel_feed.php │ ├── 2017_06_06_102819_create_channel_feed_mapping.php │ ├── 2017_06_19_063355_create_channel_custom_fields.php │ ├── 2017_06_30_183212_create_adwords_feed_table.php │ ├── 2017_06_30_183304_create_adwords_configuration_tablee.php │ ├── 2017_06_30_183321_create_adwords_ads_table.php │ ├── 2017_06_30_183337_create_adwords_keywords_table.php │ ├── 2017_06_30_183353_create_adwords_target_table.php │ ├── 2017_07_07_125457_create_ad_campaign_preview.php │ ├── 2017_07_07_125460_create_adgroup_preview.php │ ├── 2017_07_07_125634_create_ads_preview.php │ ├── 2017_07_12_082552_rules_channel_table.php │ ├── 2017_07_12_082600_rules_adwords_table.php │ ├── 2017_07_18_065118_create_adwords_revision_table.php │ ├── 2017_07_26_061252_create_adwords_keyword_preview_table.php │ ├── 2017_07_27_121343_create_google_countries_table.php │ ├── 2017_07_27_125413_create_google_languages_table.php │ ├── 2017_08_03_112007_create_category_channel.php │ ├── 2017_08_03_162612_create_bol_feed_table.php │ ├── 2017_08_03_165254_rule_bol.php │ ├── 2017_08_04_140748_create_category_bol_table.php │ ├── 2017_08_10_122308_create_df_logger_table.php │ ├── 2017_08_14_161419_create_task_log_table.php │ ├── 2017_08_16_063518_create_bol_ads_table.php │ ├── 2017_08_16_063929_create_bol_ads_table_preview.php │ └── 2017_08_17_132104_create_custom_mapping_table.php └── seeds │ ├── AdwordsCountrySeeder.php │ ├── DatabaseSeeder.php │ ├── FieldsToMapSeeder.php │ ├── StoreSeeder.php │ ├── ToCategorySeeder.php │ └── UserTableSeeder.php ├── licenses ├── mix-entry.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── apimock │ ├── api.php │ ├── test.js │ └── test.php ├── categories.json ├── categories │ └── google_shopping │ │ └── nl_NL.csv ├── channel-api.php ├── css │ ├── after_bootstrap.css │ ├── all.css │ ├── app.js │ ├── bootstrap.css │ ├── custom_styles.css │ └── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── vendor │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── google_adwords │ ├── google_countries.csv │ └── languagecodes.csv ├── images │ ├── ajax-loader.gif │ ├── boxed-bg.jpg │ ├── full-dfbuilder.png │ ├── logo_admin.png │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ └── sort_desc_disabled.png ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── csv.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── reload.gif │ ├── txt.png │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ ├── wheel.gif │ └── xml.png ├── index.php ├── js │ ├── app.js │ ├── bootstrap.js │ ├── custom_select.js │ ├── dfbuilder.js │ └── jquery.js ├── mix-manifest.json ├── mix.js ├── robots.txt ├── test.php └── web.config ├── readme.md ├── resources ├── assets │ ├── bootstrap-less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── css │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── css_after_bootstrap.css │ │ ├── custom_style.css │ │ ├── datatable.css │ │ ├── dfbuilder.css │ │ ├── easy_autocomplete.css │ │ ├── easy_autocomplete_styles.css │ │ ├── jquery.customselect.css │ │ ├── jquery.ui.css │ │ ├── select2.min.css │ │ └── swal │ │ │ └── sweetalert.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ ├── js │ │ ├── admin-lte │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── bootstrap.js │ │ │ ├── circle-progress.js │ │ │ ├── datatables.js │ │ │ ├── demo.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.ui.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── noty.min.js │ │ │ ├── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ │ ├── plugins │ │ │ │ ├── bootstrap-slider │ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ │ └── slider.css │ │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ │ ├── chartjs │ │ │ │ │ ├── Chart.js │ │ │ │ │ └── Chart.min.js │ │ │ │ ├── ckeditor │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── build-config.js │ │ │ │ │ ├── ckeditor.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── contents.css │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ │ └── default.js │ │ │ │ │ │ ├── scayt │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ │ ├── specialchar │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── table.js │ │ │ │ │ │ ├── tabletools │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ │ └── wsc │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── samples.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ │ ├── header-separator.png │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── navigation-tip.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ │ └── sf.js │ │ │ │ │ │ ├── old │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ │ ├── appendto.html │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ │ ├── divreplace.html │ │ │ │ │ │ │ ├── enterkey │ │ │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── inlineall.html │ │ │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ │ │ ├── jquery.html │ │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ │ └── magicline.html │ │ │ │ │ │ │ ├── readonly.html │ │ │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ │ │ ├── sample.css │ │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ │ │ ├── tabindex.html │ │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ │ │ ├── uicolor.html │ │ │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ │ │ └── toolbarconfigurator │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── fontello.css │ │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ │ ├── fontello.eot │ │ │ │ │ │ │ ├── fontello.svg │ │ │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ │ │ └── fontello.woff │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── codemirror │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ └── show-hint.js │ │ │ │ │ ├── skins │ │ │ │ │ │ └── moono │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── styles.js │ │ │ │ ├── colorpicker │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── img │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ ├── datatables │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ │ ├── ColVis │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ │ ├── Responsive │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ │ ├── Scroller │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ │ └── TableTools │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ │ └── swf │ │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ ├── datepicker │ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ │ ├── datepicker3.css │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ │ ├── daterangepicker │ │ │ │ │ ├── daterangepicker.css │ │ │ │ │ ├── daterangepicker.js │ │ │ │ │ ├── moment.js │ │ │ │ │ └── moment.min.js │ │ │ │ ├── fastclick │ │ │ │ │ ├── fastclick.js │ │ │ │ │ └── fastclick.min.js │ │ │ │ ├── flot │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ │ ├── jquery.flot.image.js │ │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ │ ├── jquery.flot.js │ │ │ │ │ ├── jquery.flot.min.js │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ │ ├── jquery.flot.time.js │ │ │ │ │ └── jquery.flot.time.min.js │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ ├── fullcalendar.js │ │ │ │ │ ├── fullcalendar.min.css │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ ├── iCheck │ │ │ │ │ ├── all.css │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── flat.css │ │ │ │ │ │ ├── flat.png │ │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── futurico │ │ │ │ │ │ ├── futurico.css │ │ │ │ │ │ ├── futurico.png │ │ │ │ │ │ └── futurico@2x.png │ │ │ │ │ ├── icheck.js │ │ │ │ │ ├── icheck.min.js │ │ │ │ │ ├── line │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── line.css │ │ │ │ │ │ ├── line.png │ │ │ │ │ │ ├── line@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ └── yellow.css │ │ │ │ │ ├── minimal │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── minimal.css │ │ │ │ │ │ ├── minimal.png │ │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── polaris │ │ │ │ │ │ ├── polaris.css │ │ │ │ │ │ ├── polaris.png │ │ │ │ │ │ └── polaris@2x.png │ │ │ │ │ └── square │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── square.css │ │ │ │ │ │ ├── square.png │ │ │ │ │ │ ├── square@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── input-mask │ │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ │ ├── jquery.inputmask.js │ │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ │ └── phone-codes │ │ │ │ │ │ ├── phone-be.json │ │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── ionslider │ │ │ │ │ ├── img │ │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ │ ├── jQuery │ │ │ │ │ └── jquery-2.2.3.min.js │ │ │ │ ├── jQueryUI │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ ├── jvectormap │ │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ │ ├── knob │ │ │ │ │ └── jquery.knob.js │ │ │ │ ├── morris │ │ │ │ │ ├── morris.css │ │ │ │ │ ├── morris.js │ │ │ │ │ └── morris.min.js │ │ │ │ ├── pace │ │ │ │ │ ├── pace.css │ │ │ │ │ ├── pace.js │ │ │ │ │ ├── pace.min.css │ │ │ │ │ └── pace.min.js │ │ │ │ ├── select2 │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.css │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ ├── select2.min.css │ │ │ │ │ └── select2.min.js │ │ │ │ ├── slimScroll │ │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ │ └── jquery.slimscroll.min.js │ │ │ │ ├── sparkline │ │ │ │ │ ├── jquery.sparkline.js │ │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ └── timepicker │ │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ │ └── bootstrap-timepicker.min.js │ │ │ └── pusher.min.js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── components │ │ │ └── Example.vue │ │ ├── dfbuilder │ │ │ ├── adwords.js │ │ │ ├── browse_uncategorized.js │ │ │ ├── categorize.js │ │ │ ├── channel.js │ │ │ ├── config.js │ │ │ ├── enums.js │ │ │ ├── feed_hot_preview.js │ │ │ ├── gen_validatorv4.js │ │ │ ├── global_functions.js │ │ │ ├── hot.js │ │ │ ├── import_feed.js │ │ │ ├── init_scripts.js │ │ │ ├── jquery.customselect.js │ │ │ ├── jquery.ui.js │ │ │ ├── manage_feeds.js │ │ │ ├── mapping.js │ │ │ └── rules.js │ │ ├── form-validators.js │ │ ├── functions.js │ │ ├── my_custom.js │ │ └── swal │ │ │ └── sweetalert.min.js │ └── less │ │ ├── .csslintrc │ │ ├── 404_500_errors.less │ │ ├── AdminLTE-without-plugins.less │ │ ├── AdminLTE.less │ │ ├── alerts.less │ │ ├── bootstrap-social.less │ │ ├── boxes.less │ │ ├── buttons.less │ │ ├── callout.less │ │ ├── carousel.less │ │ ├── control-sidebar.less │ │ ├── core.less │ │ ├── direct-chat.less │ │ ├── dropdown.less │ │ ├── forms.less │ │ ├── fullcalendar.less │ │ ├── header.less │ │ ├── info-box.less │ │ ├── invoice.less │ │ ├── labels.less │ │ ├── lockscreen.less │ │ ├── login_and_register.less │ │ ├── mailbox.less │ │ ├── miscellaneous.less │ │ ├── mixins.less │ │ ├── modal.less │ │ ├── navs.less │ │ ├── plugins.less │ │ ├── print.less │ │ ├── products.less │ │ ├── profile.less │ │ ├── progress-bars.less │ │ ├── select2.less │ │ ├── sidebar-mini.less │ │ ├── sidebar.less │ │ ├── skins │ │ ├── _all-skins.less │ │ ├── skin-black-light.less │ │ ├── skin-black.less │ │ ├── skin-blue-light.less │ │ ├── skin-blue.less │ │ ├── skin-green-light.less │ │ ├── skin-green.less │ │ ├── skin-purple-light.less │ │ ├── skin-purple.less │ │ ├── skin-red-light.less │ │ ├── skin-red.less │ │ ├── skin-yellow-light.less │ │ └── skin-yellow.less │ │ ├── small-box.less │ │ ├── social-widgets.less │ │ ├── table.less │ │ ├── timeline.less │ │ ├── users-list.less │ │ └── variables.less ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── nl │ │ └── messages.php └── views │ ├── auth │ └── login.blade.php │ ├── dfcore │ ├── adwords │ │ ├── adwords_feed.blade.php │ │ ├── adwords_manage.blade.php │ │ ├── adwords_preview.blade.php │ │ ├── adwords_preview_products.blade.php │ │ ├── adwords_settings.blade.php │ │ ├── backup_ads.blade.php │ │ ├── partial │ │ │ ├── adwords_ad_form.blade.php │ │ │ ├── adwords_ad_templates.blade.php │ │ │ ├── adwords_feed_error_msg.blade.php │ │ │ ├── adwords_list_overview.blade.php │ │ │ ├── adwords_settings_form.blade.php │ │ │ ├── adwords_targeting.blade.php │ │ │ ├── api_error_ads.blade.php │ │ │ ├── keyword_add.blade.php │ │ │ ├── keyword_negative.blade.php │ │ │ ├── keyword_negative_add.blade.php │ │ │ ├── keywords.blade.php │ │ │ ├── preview_ads.blade.php │ │ │ └── preview_products.blade.php │ │ ├── spreadsheet_modus.blade.php │ │ └── start_wizard.blade.php │ ├── bol │ │ ├── bol_settings.blade.php │ │ ├── build_bol_ad.blade.php │ │ └── partial │ │ │ └── bol_list.blade.php │ ├── channel │ │ ├── ajax_get_field.blade.php │ │ ├── channel_settings.blade.php │ │ ├── finalize.blade.php │ │ ├── manage_channels.blade.php │ │ ├── partials │ │ │ └── channel_overview.blade.php │ │ └── start_wizard.blade.php │ ├── filter │ │ ├── ajax_add_categorize.blade.php │ │ ├── browse_uncategorized.blade.php │ │ ├── categorize_feed.blade.php │ │ └── partials │ │ │ └── preloadedfilters.blade.php │ ├── global_partials │ │ └── feed_wizard.blade.php │ ├── import │ │ ├── browse_feed.blade.php │ │ ├── components │ │ │ └── progress.blade.php │ │ ├── composite_key.blade.php │ │ ├── manage_feeds.blade.php │ │ ├── mapping.blade.php │ │ ├── mapping_complete.blade.php │ │ ├── newfeed.blade.php │ │ ├── partials │ │ │ ├── downloading_feed.blade.php │ │ │ ├── manage_feeds_partial.blade.php │ │ │ ├── mapped.blade.php │ │ │ └── unmapped.blade.php │ │ └── selectfeed.blade.php │ ├── index │ │ ├── dashboard.blade.php │ │ └── partials │ │ │ └── dashboard │ │ │ ├── completed.blade.php │ │ │ ├── task_log.blade.php │ │ │ └── tiles.blade.php │ ├── logging │ │ ├── all_feed_log.blade.php │ │ ├── completed_process.blade.php │ │ ├── log_report.blade.php │ │ └── partials │ │ │ └── feedlog_partial.blade.php │ ├── rules │ │ ├── create_rules.blade.php │ │ ├── partials │ │ │ ├── and.blade.php │ │ │ ├── if-body.blade.php │ │ │ ├── if-form-prefilled.blade.php │ │ │ ├── if-form.blade.php │ │ │ ├── or.blade.php │ │ │ ├── statusbox.blade.php │ │ │ ├── then-body.blade.php │ │ │ ├── then-form-prefilled.blade.php │ │ │ └── then-form.blade.php │ │ └── then_rule_forms │ │ │ ├── 1.blade.php │ │ │ ├── 10.blade.php │ │ │ ├── 11.blade.php │ │ │ ├── 12.blade.php │ │ │ ├── 13.blade.php │ │ │ ├── 14.blade.php │ │ │ ├── 15.blade.php │ │ │ ├── 2.blade.php │ │ │ ├── 3.blade.php │ │ │ ├── 4.blade.php │ │ │ ├── 5.blade.php │ │ │ ├── 6.blade.php │ │ │ ├── 7.blade.php │ │ │ ├── 8.blade.php │ │ │ ├── 9.blade.php │ │ │ └── space-settings.blade.php │ ├── spreadsheet │ │ └── browse_feed.blade.php │ └── store │ │ ├── create.blade.php │ │ └── select_store.blade.php │ ├── layouts │ ├── general │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── menu.blade.php │ │ └── notifications.blade.php │ ├── layout.blade.php │ ├── login.blade.php │ └── preloader.blade.php │ ├── vendor │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── markdown │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── notifications │ │ └── email.blade.php │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/.gitignore -------------------------------------------------------------------------------- /Modules/Category/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Category' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Category/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Dfcore/CategoryHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Dfcore/CategoryHelper.php -------------------------------------------------------------------------------- /Modules/Category/Emails/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Entities/CategoryTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Entities/CategoryTable.php -------------------------------------------------------------------------------- /Modules/Category/Events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /Modules/Category/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Http/routes.php -------------------------------------------------------------------------------- /Modules/Category/Jobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Notifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Providers/CategoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Providers/CategoryServiceProvider.php -------------------------------------------------------------------------------- /Modules/Category/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /Modules/Category/Repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Resources/lang/nl/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Resources/lang/nl/messages.php -------------------------------------------------------------------------------- /Modules/Category/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/Resources/views/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Resources/views/create.blade.php -------------------------------------------------------------------------------- /Modules/Category/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/Category/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/Resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /Modules/Category/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Category/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/composer.json -------------------------------------------------------------------------------- /Modules/Category/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/module.json -------------------------------------------------------------------------------- /Modules/Category/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/Category/start.php -------------------------------------------------------------------------------- /Modules/FirstModule/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Config/config.php: -------------------------------------------------------------------------------- 1 | 'FirstModule' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/FirstModule/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Emails/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/FirstModule/Http/routes.php -------------------------------------------------------------------------------- /Modules/FirstModule/Jobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Notifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Providers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/FirstModule/Resources/views/index.blade.php -------------------------------------------------------------------------------- /Modules/FirstModule/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/FirstModule/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/FirstModule/composer.json -------------------------------------------------------------------------------- /Modules/FirstModule/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/FirstModule/module.json -------------------------------------------------------------------------------- /Modules/FirstModule/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Modules/FirstModule/start.php -------------------------------------------------------------------------------- /Supervisor.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/Supervisor.example -------------------------------------------------------------------------------- /app/Console/Commands/CreateAdwordsCountries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/CreateAdwordsCountries.php -------------------------------------------------------------------------------- /app/Console/Commands/DfJobScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/DfJobScheduler.php -------------------------------------------------------------------------------- /app/Console/Commands/GetChannels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/GetChannels.php -------------------------------------------------------------------------------- /app/Console/Commands/SendToAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/SendToAdwords.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/Import.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/InsertTmpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/InsertTmpRule.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/PushToAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/PushToAdwords.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/RefreshCounters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/RefreshCounters.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/UpdateBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/UpdateBol.php -------------------------------------------------------------------------------- /app/Console/Commands/TestingJobs/UpdateRuleProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Commands/TestingJobs/UpdateRuleProducts.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/AdgroupPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/AdgroupPreview.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/AdwordsApiPusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/AdwordsApiPusher.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/AdwordsApiWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/AdwordsApiWrapper.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/AdwordsHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/AdwordsHelpers.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/AdwordsValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/AdwordsValidator.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Adwords/SendAdsToAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Adwords/SendAdsToAdwords.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ChannelConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ChannelConsumer.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/ADPS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/ADPS.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Adcrowd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Adcrowd.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/AddRoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/AddRoll.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Adform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Adform.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Aff4you.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Aff4you.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Affilinet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Affilinet.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Awin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Awin.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Bazaavoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Bazaavoice.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Beslist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Beslist.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Biano.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Biano.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Bingads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Bingads.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Boetiek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Boetiek.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Ceneo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Ceneo.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Choozen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Choozen.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Ciao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Ciao.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Clang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Clang.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Criteo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Criteo.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Daisycon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Daisycon.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Doubleclick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Doubleclick.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Epoq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Epoq.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Facebook.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Fasha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Fasha.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Frendz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Frendz.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Fruugo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Fruugo.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Kieskeurig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Kieskeurig.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Kiyoh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Kiyoh.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Kleding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Kleding.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Koopkeus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Koopkeus.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Leguide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Leguide.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Logicsale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Logicsale.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Minto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Minto.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Monetate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Monetate.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/OOShopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/OOShopping.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Publitias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Publitias.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Scoupz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Scoupz.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Shopalike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Shopalike.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Shopmania.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Shopmania.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Shopr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Shopr.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Sizmek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Sizmek.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Smartly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Smartly.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Sooqr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Sooqr.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Spartoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Spartoo.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Stadnl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Stadnl.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Stockbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Stockbase.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Styligth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Styligth.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/TNA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/TNA.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Tweakers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Tweakers.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Twenga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Twenga.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Vergelijk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Vergelijk.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Viafixit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Viafixit.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Webgains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Webgains.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/NL/Zanox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Channels/ExportChannels/NL/Zanox.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/AdwordsOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/AdwordsOptions.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/CategoryChannels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/CategoryChannels.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/Channel.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ChannelRegistery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ChannelRegistery.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/CommonRulesEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/CommonRulesEnum.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ConditionSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ConditionSelector.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ESImportType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ESImportType.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ESIndexTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ESIndexTypes.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ImportFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ImportFilters.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ImportStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ImportStatus.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/ImportType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/ImportType.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/LogStates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/LogStates.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/RevisionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/RevisionType.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/RuleConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/RuleConditions.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/TasklogEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/TasklogEnum.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/UpdateIntervals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/UpdateIntervals.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Enum/UrlKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Enum/UrlKey.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/FileWriter/FeedWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/FileWriter/FeedWriter.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Adwords/Countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Adwords/Countries.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Csv/CsvMappingFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Csv/CsvMappingFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Csv/CsvReaderFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Csv/CsvReaderFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Facade/ImportFeedFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Facade/ImportFeedFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Facade/RemoveFeedFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Facade/RemoveFeedFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Filters/Contract/iFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Filters/Contract/iFilter.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Filters/ExampleFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Filters/ExampleFilter.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Filters/FilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Filters/FilterFactory.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Filters/RemoveHtmlTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Filters/RemoveHtmlTags.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/ChannelMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/ChannelMapping.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/DetectFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/DetectFieldType.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/Mapping.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/MappingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/MappingFactory.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/MappingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/MappingValidator.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Mapping/ProductId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Mapping/ProductId.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Remote/RemoteFileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Remote/RemoteFileService.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Xml/CustomXmlParser/Parsefeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Xml/CustomXmlParser/Parsefeed.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Xml/CustomXmlParser/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Xml/CustomXmlParser/Register.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Xml/Xml2Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Xml/Xml2Array.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Xml/XmlMappingFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Xml/XmlMappingFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Import/Xml/XmlReaderFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Import/Xml/XmlReaderFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Log/DfbuilderLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Log/DfbuilderLogger.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Log/FeedlogFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Log/FeedlogFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Log/LoggerFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Log/LoggerFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Log/Logtodatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Log/Logtodatabase.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/AbstractRuleBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/AbstractRuleBuilder.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/AdwordsRuleBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/AdwordsRuleBuilder.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/CategoryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/CategoryBuilder.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/CategoryDirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/CategoryDirector.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/FeedOperationDirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/FeedOperationDirector.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/FeedOperationsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/FeedOperationsBuilder.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/RevisionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/RevisionBuilder.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Builder/RevisionDirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Builder/RevisionDirector.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/ConditionToHtmlFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/ConditionToHtmlFormType.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/CustomControlerRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/CustomControlerRegister.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/RuleCronjobFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/RuleCronjobFacade.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/RuleStrategy/RegisterStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/RuleStrategy/RegisterStrategy.php -------------------------------------------------------------------------------- /app/DfCore/DfBs/Rules/Wizard/ChannelWizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/DfCore/DfBs/Rules/Wizard/ChannelWizard.php -------------------------------------------------------------------------------- /app/ElasticSearch/BaseESQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/BaseESQuery.php -------------------------------------------------------------------------------- /app/ElasticSearch/BaseElasticSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/BaseElasticSearch.php -------------------------------------------------------------------------------- /app/ElasticSearch/DynamicFeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/DynamicFeedRepository.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESAdwords.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESBol.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESCategorizeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESCategorizeFilter.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESChannel.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESCopyIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESCopyIndex.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESHot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESHot.php -------------------------------------------------------------------------------- /app/ElasticSearch/ESRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/ElasticSearch/ESRules.php -------------------------------------------------------------------------------- /app/Entity/AdCampaignPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdCampaignPreview.php -------------------------------------------------------------------------------- /app/Entity/AdgroupPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdgroupPreview.php -------------------------------------------------------------------------------- /app/Entity/AdsKeywordPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdsKeywordPreview.php -------------------------------------------------------------------------------- /app/Entity/AdsPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdsPreview.php -------------------------------------------------------------------------------- /app/Entity/AdwordsAd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsAd.php -------------------------------------------------------------------------------- /app/Entity/AdwordsConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsConfiguration.php -------------------------------------------------------------------------------- /app/Entity/AdwordsGoogleCountries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsGoogleCountries.php -------------------------------------------------------------------------------- /app/Entity/AdwordsGoogleLanguages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsGoogleLanguages.php -------------------------------------------------------------------------------- /app/Entity/AdwordsKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsKeyword.php -------------------------------------------------------------------------------- /app/Entity/AdwordsRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsRevision.php -------------------------------------------------------------------------------- /app/Entity/AdwordsTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/AdwordsTarget.php -------------------------------------------------------------------------------- /app/Entity/Adwordsfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Adwordsfeed.php -------------------------------------------------------------------------------- /app/Entity/Bolads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Bolads.php -------------------------------------------------------------------------------- /app/Entity/BoladsPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/BoladsPreview.php -------------------------------------------------------------------------------- /app/Entity/Bolfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Bolfeed.php -------------------------------------------------------------------------------- /app/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Category.php -------------------------------------------------------------------------------- /app/Entity/CategoryBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/CategoryBol.php -------------------------------------------------------------------------------- /app/Entity/CategoryChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/CategoryChannel.php -------------------------------------------------------------------------------- /app/Entity/CategoryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/CategoryFilter.php -------------------------------------------------------------------------------- /app/Entity/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Channel.php -------------------------------------------------------------------------------- /app/Entity/ChannelCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelCountry.php -------------------------------------------------------------------------------- /app/Entity/ChannelCustomMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelCustomMapping.php -------------------------------------------------------------------------------- /app/Entity/ChannelFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelFeed.php -------------------------------------------------------------------------------- /app/Entity/ChannelFeedMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelFeedMapping.php -------------------------------------------------------------------------------- /app/Entity/ChannelMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelMapping.php -------------------------------------------------------------------------------- /app/Entity/ChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/ChannelType.php -------------------------------------------------------------------------------- /app/Entity/CompositeMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/CompositeMapping.php -------------------------------------------------------------------------------- /app/Entity/Csvmapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Csvmapping.php -------------------------------------------------------------------------------- /app/Entity/CustomMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/CustomMapping.php -------------------------------------------------------------------------------- /app/Entity/Dflogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Dflogger.php -------------------------------------------------------------------------------- /app/Entity/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Feed.php -------------------------------------------------------------------------------- /app/Entity/FeedLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/FeedLog.php -------------------------------------------------------------------------------- /app/Entity/FieldToMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/FieldToMap.php -------------------------------------------------------------------------------- /app/Entity/Mongo/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Mongo/Schema/Schema.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdCampaignPreviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdCampaignPreviewRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdgroupPreviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdgroupPreviewRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdsKeywordPreviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdsKeywordPreviewRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdsPreviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdsPreviewRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsAdRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsAdRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsConfigurationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsConfigurationRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsKeywordRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsKeywordRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsRevisionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsRevisionRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsTargetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsTargetRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/AdwordsfeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/AdwordsfeedRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/BolAdsPreviewRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/BolAdsPreviewRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/BolAdsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/BolAdsRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/BolFeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/BolFeedRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CategoryBolRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CategoryBolRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CategoryChannelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CategoryChannelRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CategoryFilterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CategoryFilterRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CategoryRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelCountryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelCountryRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelCustomMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelCustomMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelFeedMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelFeedMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelFeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelFeedRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/ChannelTypeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/ChannelTypeRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CompositeMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CompositeMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdCampaignPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdCampaignPreview.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdgroupPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdgroupPreview.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdsKeywordPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdsKeywordPreview.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdsPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdsPreview.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsAd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsAd.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsConfiguration.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsKeyword.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsRevision.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsTarget.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdwordsfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iAdwordsfeed.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iBolAds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iBolAds.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iBolAdsPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iBolAdsPreview.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iBolFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iBolFeed.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCategory.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCategoryBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCategoryBol.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCategoryChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCategoryChannel.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCategoryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCategoryFilter.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannel.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelCountry.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelCustomMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelCustomMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelFeed.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelFeedMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelFeedMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iChannelType.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCompositeMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCompositeMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCsvMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCsvMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iCustomMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iCustomMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iDflogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iDflogger.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iFeed.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iFeedLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iFeedLog.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iFieldToMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iFieldToMap.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRevision.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRule.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRuleAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRuleAdwords.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRuleBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRuleBol.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRuleChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRuleChannel.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iRuleCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iRuleCondition.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iSpreadsheetHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iSpreadsheetHeader.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iStore.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iTaskLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iTaskLog.php -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iXmlMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Contract/iXmlMapping.php -------------------------------------------------------------------------------- /app/Entity/Repository/CsvMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CsvMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/CustomMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/CustomMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/DfloggerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/DfloggerRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/FeedLogRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/FeedLogRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/FeedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/FeedRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/FieldToMapRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/FieldToMapRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/Repository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RevisionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RevisionRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RuleAdwordsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RuleAdwordsRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RuleBolRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RuleBolRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RuleConditionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RuleConditionRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RuleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RuleRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/RulesChannelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/RulesChannelRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/SpreadsheetHeaderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/SpreadsheetHeaderRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/StoreRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/StoreRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/TasklogRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/TasklogRepository.php -------------------------------------------------------------------------------- /app/Entity/Repository/XmlMappingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Repository/XmlMappingRepository.php -------------------------------------------------------------------------------- /app/Entity/Revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Revision.php -------------------------------------------------------------------------------- /app/Entity/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Rule.php -------------------------------------------------------------------------------- /app/Entity/RuleAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/RuleAdwords.php -------------------------------------------------------------------------------- /app/Entity/RuleBol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/RuleBol.php -------------------------------------------------------------------------------- /app/Entity/RuleCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/RuleCondition.php -------------------------------------------------------------------------------- /app/Entity/RulesChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/RulesChannel.php -------------------------------------------------------------------------------- /app/Entity/SpreadsheetHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/SpreadsheetHeader.php -------------------------------------------------------------------------------- /app/Entity/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Store.php -------------------------------------------------------------------------------- /app/Entity/Tasklog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Tasklog.php -------------------------------------------------------------------------------- /app/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/User.php -------------------------------------------------------------------------------- /app/Entity/Xmlmapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Entity/Xmlmapping.php -------------------------------------------------------------------------------- /app/Events/AdwordsPreviewCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Events/AdwordsPreviewCreated.php -------------------------------------------------------------------------------- /app/Events/CatFilterProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Events/CatFilterProcessed.php -------------------------------------------------------------------------------- /app/Events/FeedImported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Events/FeedImported.php -------------------------------------------------------------------------------- /app/Events/RuleFilterProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Events/RuleFilterProcessed.php -------------------------------------------------------------------------------- /app/Events/RulesUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Events/RulesUpdated.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Helpers/helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/Common/FilterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/Common/FilterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/Common/LoggingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/Common/LoggingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/Common/RulesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/Common/RulesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/Feed/ImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/Feed/ImportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/Feed/TeaserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/Feed/TeaserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DfCore/StoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Controllers/DfCore/StoreController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckStoreSelected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Middleware/CheckStoreSelected.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/Importfeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/Importfeed.php -------------------------------------------------------------------------------- /app/Jobs/InsertTmpCategorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/InsertTmpCategorize.php -------------------------------------------------------------------------------- /app/Jobs/InsertTmpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/InsertTmpRule.php -------------------------------------------------------------------------------- /app/Jobs/RemoveTmpCategorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/RemoveTmpCategorize.php -------------------------------------------------------------------------------- /app/Jobs/RemoveTmpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/RemoveTmpRule.php -------------------------------------------------------------------------------- /app/Jobs/UpdateAdwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/UpdateAdwords.php -------------------------------------------------------------------------------- /app/Jobs/UpdateChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Jobs/UpdateChannel.php -------------------------------------------------------------------------------- /app/Listeners/CatFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Listeners/CatFilter.php -------------------------------------------------------------------------------- /app/Listeners/Feedimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Listeners/Feedimport.php -------------------------------------------------------------------------------- /app/Listeners/RuleFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Listeners/RuleFilter.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RepoServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/RepoServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/app/Providers/ViewComposerServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/database.php -------------------------------------------------------------------------------- /config/dfbuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/dfbuilder.php -------------------------------------------------------------------------------- /config/elasticsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/elasticsearch.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/google-ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/google-ads.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/menu.php -------------------------------------------------------------------------------- /config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/modules.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2017_05_30_082326_channel_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/migrations/2017_05_30_082326_channel_type.php -------------------------------------------------------------------------------- /database/migrations/2017_08_03_165254_rule_bol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/migrations/2017_08_03_165254_rule_bol.php -------------------------------------------------------------------------------- /database/seeds/AdwordsCountrySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/AdwordsCountrySeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/FieldsToMapSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/FieldsToMapSeeder.php -------------------------------------------------------------------------------- /database/seeds/StoreSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/StoreSeeder.php -------------------------------------------------------------------------------- /database/seeds/ToCategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/ToCategorySeeder.php -------------------------------------------------------------------------------- /database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/database/seeds/UserTableSeeder.php -------------------------------------------------------------------------------- /licenses: -------------------------------------------------------------------------------- 1 | xml en csv icon door https://www.iconfinder.com/Lexter -------------------------------------------------------------------------------- /mix-entry.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/apimock/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/apimock/api.php -------------------------------------------------------------------------------- /public/apimock/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/apimock/test.js -------------------------------------------------------------------------------- /public/apimock/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/apimock/test.php -------------------------------------------------------------------------------- /public/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/categories.json -------------------------------------------------------------------------------- /public/categories/google_shopping/nl_NL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/categories/google_shopping/nl_NL.csv -------------------------------------------------------------------------------- /public/channel-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/channel-api.php -------------------------------------------------------------------------------- /public/css/after_bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/after_bootstrap.css -------------------------------------------------------------------------------- /public/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/all.css -------------------------------------------------------------------------------- /public/css/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/app.js -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/css/custom_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/custom_styles.css -------------------------------------------------------------------------------- /public/css/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/google_adwords/google_countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/google_adwords/google_countries.csv -------------------------------------------------------------------------------- /public/google_adwords/languagecodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/google_adwords/languagecodes.csv -------------------------------------------------------------------------------- /public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /public/images/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/boxed-bg.jpg -------------------------------------------------------------------------------- /public/images/full-dfbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/full-dfbuilder.png -------------------------------------------------------------------------------- /public/images/logo_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/logo_admin.png -------------------------------------------------------------------------------- /public/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/sort_asc.png -------------------------------------------------------------------------------- /public/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/sort_both.png -------------------------------------------------------------------------------- /public/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/sort_desc.png -------------------------------------------------------------------------------- /public/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/avatar.png -------------------------------------------------------------------------------- /public/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/avatar04.png -------------------------------------------------------------------------------- /public/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/avatar2.png -------------------------------------------------------------------------------- /public/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/avatar3.png -------------------------------------------------------------------------------- /public/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/avatar5.png -------------------------------------------------------------------------------- /public/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/boxed-bg.png -------------------------------------------------------------------------------- /public/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/american-express.png -------------------------------------------------------------------------------- /public/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/cirrus.png -------------------------------------------------------------------------------- /public/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/mastercard.png -------------------------------------------------------------------------------- /public/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/mestro.png -------------------------------------------------------------------------------- /public/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/paypal.png -------------------------------------------------------------------------------- /public/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/paypal2.png -------------------------------------------------------------------------------- /public/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/credit/visa.png -------------------------------------------------------------------------------- /public/img/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/csv.png -------------------------------------------------------------------------------- /public/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/default-50x50.gif -------------------------------------------------------------------------------- /public/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/icons.png -------------------------------------------------------------------------------- /public/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/photo1.png -------------------------------------------------------------------------------- /public/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/photo2.png -------------------------------------------------------------------------------- /public/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/photo3.jpg -------------------------------------------------------------------------------- /public/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/photo4.jpg -------------------------------------------------------------------------------- /public/img/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/reload.gif -------------------------------------------------------------------------------- /public/img/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/txt.png -------------------------------------------------------------------------------- /public/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user1-128x128.jpg -------------------------------------------------------------------------------- /public/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user3-128x128.jpg -------------------------------------------------------------------------------- /public/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user4-128x128.jpg -------------------------------------------------------------------------------- /public/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user5-128x128.jpg -------------------------------------------------------------------------------- /public/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user6-128x128.jpg -------------------------------------------------------------------------------- /public/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user7-128x128.jpg -------------------------------------------------------------------------------- /public/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/user8-128x128.jpg -------------------------------------------------------------------------------- /public/img/wheel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/wheel.gif -------------------------------------------------------------------------------- /public/img/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/img/xml.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/js/bootstrap.js -------------------------------------------------------------------------------- /public/js/custom_select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/js/custom_select.js -------------------------------------------------------------------------------- /public/js/dfbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/js/dfbuilder.js -------------------------------------------------------------------------------- /public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/js/jquery.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/mix.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/test.php -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/.csscomb.json -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/.csslintrc -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/alerts.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/badges.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/bootstrap.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/breadcrumbs.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/button-groups.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/buttons.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/carousel.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/close.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/code.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/dropdowns.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/forms.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/glyphicons.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/grid.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/input-groups.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/jumbotron.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/labels.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/list-group.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/media.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/alerts.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/buttons.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/center-block.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/clearfix.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/forms.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/gradients.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/grid.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/hide-text.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/image.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/labels.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/list-group.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/nav-divider.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/opacity.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/pagination.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/panels.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/progress-bar.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/reset-filter.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/reset-text.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/resize.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/size.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/tab-focus.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/mixins/table-row.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/modals.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/navbar.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/navs.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/normalize.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/pager.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/pagination.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/panels.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/popovers.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/print.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/progress-bars.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/responsive-embed.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/scaffolding.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/tables.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/theme.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/thumbnails.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/tooltip.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/type.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/utilities.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/variables.less -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/bootstrap-less/wells.less -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/bootstrap/js/npm.js -------------------------------------------------------------------------------- /resources/assets/css/css_after_bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/css_after_bootstrap.css -------------------------------------------------------------------------------- /resources/assets/css/custom_style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/css/datatable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/datatable.css -------------------------------------------------------------------------------- /resources/assets/css/dfbuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/dfbuilder.css -------------------------------------------------------------------------------- /resources/assets/css/easy_autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/easy_autocomplete.css -------------------------------------------------------------------------------- /resources/assets/css/easy_autocomplete_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/easy_autocomplete_styles.css -------------------------------------------------------------------------------- /resources/assets/css/jquery.customselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/jquery.customselect.css -------------------------------------------------------------------------------- /resources/assets/css/jquery.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/jquery.ui.css -------------------------------------------------------------------------------- /resources/assets/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/select2.min.css -------------------------------------------------------------------------------- /resources/assets/css/swal/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/css/swal/sweetalert.css -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /resources/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/avatar.png -------------------------------------------------------------------------------- /resources/assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/avatar04.png -------------------------------------------------------------------------------- /resources/assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/avatar2.png -------------------------------------------------------------------------------- /resources/assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/avatar3.png -------------------------------------------------------------------------------- /resources/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/avatar5.png -------------------------------------------------------------------------------- /resources/assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /resources/assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /resources/assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /resources/assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /resources/assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /resources/assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/mestro.png -------------------------------------------------------------------------------- /resources/assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /resources/assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /resources/assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/credit/visa.png -------------------------------------------------------------------------------- /resources/assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /resources/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/icons.png -------------------------------------------------------------------------------- /resources/assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/photo1.png -------------------------------------------------------------------------------- /resources/assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/photo2.png -------------------------------------------------------------------------------- /resources/assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/photo3.jpg -------------------------------------------------------------------------------- /resources/assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/photo4.jpg -------------------------------------------------------------------------------- /resources/assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /resources/assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/app.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/app.min.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/circle-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/circle-progress.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/datatables.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/demo.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/jquery.autocomplete.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/jquery.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/jquery.ui.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/jquery.validate.min.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/noty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/noty.min.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/pages/dashboard.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/pages/dashboard2.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/chartjs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/chartjs/Chart.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/iCheck/all.css -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/morris/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/morris/morris.css -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/morris/morris.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/pace/pace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/pace/pace.css -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/pace/pace.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/pace/pace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/pace/pace.min.css -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/pace/pace.min.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ar.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/az.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/bg.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ca.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/cs.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/da.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/de.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/el.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/en.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/es.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/et.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/eu.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/fa.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/fi.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/fr.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/gl.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/he.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/hi.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/hr.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/hu.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/id.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/is.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/it.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ja.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/km.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ko.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/lt.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/lv.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/mk.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ms.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/nb.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/nl.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/pl.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/pt.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ro.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/ru.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/sk.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/sr.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/sv.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/th.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/tr.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/uk.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/i18n/vi.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/plugins/select2/select2.js -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/pusher.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/admin-lte/pusher.min.js -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/components/Example.vue -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/adwords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/adwords.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/browse_uncategorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/browse_uncategorized.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/categorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/categorize.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/channel.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/config.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/enums.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/feed_hot_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/feed_hot_preview.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/gen_validatorv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/gen_validatorv4.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/global_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/global_functions.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/hot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/hot.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/import_feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/import_feed.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/init_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/init_scripts.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/jquery.customselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/jquery.customselect.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/jquery.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/jquery.ui.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/manage_feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/manage_feeds.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/mapping.js -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/dfbuilder/rules.js -------------------------------------------------------------------------------- /resources/assets/js/form-validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/form-validators.js -------------------------------------------------------------------------------- /resources/assets/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/functions.js -------------------------------------------------------------------------------- /resources/assets/js/my_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/my_custom.js -------------------------------------------------------------------------------- /resources/assets/js/swal/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/js/swal/sweetalert.min.js -------------------------------------------------------------------------------- /resources/assets/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/.csslintrc -------------------------------------------------------------------------------- /resources/assets/less/404_500_errors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/404_500_errors.less -------------------------------------------------------------------------------- /resources/assets/less/AdminLTE-without-plugins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/AdminLTE-without-plugins.less -------------------------------------------------------------------------------- /resources/assets/less/AdminLTE.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/AdminLTE.less -------------------------------------------------------------------------------- /resources/assets/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/alerts.less -------------------------------------------------------------------------------- /resources/assets/less/bootstrap-social.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/bootstrap-social.less -------------------------------------------------------------------------------- /resources/assets/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/boxes.less -------------------------------------------------------------------------------- /resources/assets/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/buttons.less -------------------------------------------------------------------------------- /resources/assets/less/callout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/callout.less -------------------------------------------------------------------------------- /resources/assets/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/carousel.less -------------------------------------------------------------------------------- /resources/assets/less/control-sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/control-sidebar.less -------------------------------------------------------------------------------- /resources/assets/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/core.less -------------------------------------------------------------------------------- /resources/assets/less/direct-chat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/direct-chat.less -------------------------------------------------------------------------------- /resources/assets/less/dropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/dropdown.less -------------------------------------------------------------------------------- /resources/assets/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/forms.less -------------------------------------------------------------------------------- /resources/assets/less/fullcalendar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/fullcalendar.less -------------------------------------------------------------------------------- /resources/assets/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/header.less -------------------------------------------------------------------------------- /resources/assets/less/info-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/info-box.less -------------------------------------------------------------------------------- /resources/assets/less/invoice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/invoice.less -------------------------------------------------------------------------------- /resources/assets/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/labels.less -------------------------------------------------------------------------------- /resources/assets/less/lockscreen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/lockscreen.less -------------------------------------------------------------------------------- /resources/assets/less/login_and_register.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/login_and_register.less -------------------------------------------------------------------------------- /resources/assets/less/mailbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/mailbox.less -------------------------------------------------------------------------------- /resources/assets/less/miscellaneous.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/miscellaneous.less -------------------------------------------------------------------------------- /resources/assets/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/mixins.less -------------------------------------------------------------------------------- /resources/assets/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/modal.less -------------------------------------------------------------------------------- /resources/assets/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/navs.less -------------------------------------------------------------------------------- /resources/assets/less/plugins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/plugins.less -------------------------------------------------------------------------------- /resources/assets/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/print.less -------------------------------------------------------------------------------- /resources/assets/less/products.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/products.less -------------------------------------------------------------------------------- /resources/assets/less/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/profile.less -------------------------------------------------------------------------------- /resources/assets/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/progress-bars.less -------------------------------------------------------------------------------- /resources/assets/less/select2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/select2.less -------------------------------------------------------------------------------- /resources/assets/less/sidebar-mini.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/sidebar-mini.less -------------------------------------------------------------------------------- /resources/assets/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/sidebar.less -------------------------------------------------------------------------------- /resources/assets/less/skins/_all-skins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/_all-skins.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-black-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-black-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-black.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-black.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-blue-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-blue-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-blue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-blue.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-green-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-green-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-green.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-purple-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-purple-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-purple.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-purple.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-red-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-red-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-red.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-red.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-yellow-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-yellow-light.less -------------------------------------------------------------------------------- /resources/assets/less/skins/skin-yellow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/skins/skin-yellow.less -------------------------------------------------------------------------------- /resources/assets/less/small-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/small-box.less -------------------------------------------------------------------------------- /resources/assets/less/social-widgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/social-widgets.less -------------------------------------------------------------------------------- /resources/assets/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/table.less -------------------------------------------------------------------------------- /resources/assets/less/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/timeline.less -------------------------------------------------------------------------------- /resources/assets/less/users-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/users-list.less -------------------------------------------------------------------------------- /resources/assets/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/assets/less/variables.less -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/nl/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/lang/nl/messages.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/adwords_feed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/adwords/adwords_feed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/adwords_manage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/adwords/adwords_manage.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/adwords_preview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/adwords/adwords_preview.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/backup_ads.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/adwords/backup_ads.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/start_wizard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/adwords/start_wizard.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/bol/bol_settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/bol/bol_settings.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/bol/build_bol_ad.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/bol/build_bol_ad.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/bol/partial/bol_list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/bol/partial/bol_list.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/channel/ajax_get_field.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/channel/ajax_get_field.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/channel/finalize.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/channel/finalize.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/channel/manage_channels.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/channel/manage_channels.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/channel/start_wizard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/channel/start_wizard.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/filter/categorize_feed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/filter/categorize_feed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/browse_feed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/browse_feed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/composite_key.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/composite_key.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/manage_feeds.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/manage_feeds.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/mapping.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/mapping.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/mapping_complete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/mapping_complete.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/newfeed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/newfeed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/partials/mapped.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/partials/mapped.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/import/selectfeed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/import/selectfeed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/index/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/index/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/logging/all_feed_log.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/logging/all_feed_log.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/logging/log_report.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/logging/log_report.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/create_rules.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/create_rules.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/partials/and.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/partials/and.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/partials/if-body.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/partials/if-body.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/partials/if-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/partials/if-form.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/partials/or.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/partials/or.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/1.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/1.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/2.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/3.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/4.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/5.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/6.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/6.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/7.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/7.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/8.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/8.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/9.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/rules/then_rule_forms/9.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/spreadsheet/browse_feed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/spreadsheet/browse_feed.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/store/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/store/create.blade.php -------------------------------------------------------------------------------- /resources/views/dfcore/store/select_store.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/dfcore/store/select_store.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/general/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/general/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/general/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/general/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/general/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/general/menu.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/general/notifications.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/general/notifications.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/layout.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/login.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/preloader.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/layouts/preloader.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/footer.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/promotion.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/html/themes/default.css -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/markdown/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/markdown/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/markdown/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/mail/markdown/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/HEAD/yarn.lock --------------------------------------------------------------------------------