├── .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: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /Modules/Category/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Category' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Category/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Seeders/CategoryDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Category/Emails/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Emails/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Entities/CategoryTable.php: -------------------------------------------------------------------------------- 1 | 'web', 'prefix' => 'categorytable', 'namespace' => 'Modules\Category\Http\Controllers'], function() 4 | { 5 | //Route::resource('/', 'CategoryController'); 6 | Route::post('/store', 'CategoryController@store')->name('categorytable.store'); 7 | Route::get('/create', 'CategoryController@create')->name('categorytable.create'); 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /Modules/Category/Jobs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Jobs/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Listeners/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Listeners/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Notifications/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Notifications/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Repositories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Repositories/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Module Category 8 | 9 | 10 | @yield('content') 11 | 12 | 13 | -------------------------------------------------------------------------------- /Modules/Category/Tests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Tests/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/category", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Nicolas Widart", 7 | "email": "n.widart@gmail.com" 8 | } 9 | ], 10 | "autoload": { 11 | "psr-4": { 12 | "Modules\\Category\\": "" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Modules/Category/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Category", 3 | "alias": "category", 4 | "description": "", 5 | "keywords": [], 6 | "active": 1, 7 | "order": 0, 8 | "providers": [ 9 | "Modules\\Category\\Providers\\CategoryServiceProvider" 10 | ], 11 | "aliases": {}, 12 | "files": [ 13 | "start.php" 14 | ], 15 | "requires": [] 16 | } 17 | -------------------------------------------------------------------------------- /Modules/Category/start.php: -------------------------------------------------------------------------------- 1 | routesAreCached()) { 16 | require __DIR__ . '/Http/routes.php'; 17 | } 18 | -------------------------------------------------------------------------------- /Modules/FirstModule/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Assets/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Config/config.php: -------------------------------------------------------------------------------- 1 | 'FirstModule' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/FirstModule/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Database/Seeders/FirstModuleDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/FirstModule/Emails/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Emails/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Events/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Events/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Http/Controllers/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Middleware/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Http/Middleware/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Http/Requests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Http/Requests/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Http/routes.php: -------------------------------------------------------------------------------- 1 | 'web', 'prefix' => 'firstmodule', 'namespace' => 'Modules\FirstModule\Http\Controllers'], function() 4 | { 5 | Route::get('/first-module', 'FirstModuleController@index'); 6 | }); 7 | -------------------------------------------------------------------------------- /Modules/FirstModule/Jobs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Jobs/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Listeners/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Listeners/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Notifications/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Notifications/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Repositories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Repositories/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/views/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.layout') 2 | @section('backend-content') 3 | 4 | 5 |

We are Leet, you are 1337. We all are 1337. =)

6 | 7 | @stop -------------------------------------------------------------------------------- /Modules/FirstModule/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Module FirstModule 8 | 9 | 10 | @yield('content') 11 | 12 | 13 | -------------------------------------------------------------------------------- /Modules/FirstModule/Tests/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/FirstModule/Tests/.gitkeep -------------------------------------------------------------------------------- /Modules/FirstModule/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nwidart/firstmodule", 3 | "description": "", 4 | "authors": [ 5 | { 6 | "name": "Erwin Nandpersad", 7 | "email": "erwin@ermmedia.nl" 8 | } 9 | ], 10 | "autoload": { 11 | "psr-4": { 12 | "Modules\\FirstModule\\": "" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Modules/FirstModule/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstModule", 3 | "alias": "firstmodule", 4 | "description": "", 5 | "keywords": [], 6 | "active": 1, 7 | "order": 0, 8 | "providers": [ 9 | "Modules\\FirstModule\\Providers\\FirstModuleServiceProvider" 10 | ], 11 | "aliases": {}, 12 | "files": [ 13 | "start.php" 14 | ], 15 | "requires": [] 16 | } 17 | -------------------------------------------------------------------------------- /Modules/FirstModule/start.php: -------------------------------------------------------------------------------- 1 | routesAreCached()) { 16 | require __DIR__ . '/Http/routes.php'; 17 | } 18 | -------------------------------------------------------------------------------- /Supervisor.example: -------------------------------------------------------------------------------- 1 | [program:dfbuilder-main-worker] 2 | process_name=%(program_name)s_%(process_num)02d 3 | command=php /var/www/dfbuilder/artisan queue:work --queue=high,medium,low --sleep=3 --tries=3 --daemon 4 | autostart=true 5 | autorestart=true 6 | user=root 7 | numprocs=4 8 | redirect_stderr=true 9 | stdout_logfile=/var/www/dfbuilder/storage/logs/dfbuilder-main-worker.log 10 | 11 | 12 | [program:default-worker] 13 | process_name=%(program_name)s_%(process_num)02d 14 | command=php /var/www/dfbuilder/artisan queue:work --queue=default --sleep=3 --tries=3 --daemon 15 | autostart=true 16 | autorestart=true 17 | user=root 18 | numprocs=1 19 | redirect_stderr=true 20 | stdout_logfile=/var/www/dfbuilder/storage/logs/default-worker.log 21 | 22 | -------------------------------------------------------------------------------- /app/DfCore/DfBs/Channels/ExportChannels/Contract/iExportChannel.php: -------------------------------------------------------------------------------- 1 | feed_id; 15 | } 16 | 17 | /** 18 | * @param mixed $feed_id 19 | */ 20 | public function setFeedId($feed_id) 21 | { 22 | $this->feed_id = $feed_id; 23 | } 24 | 25 | 26 | 27 | 28 | } -------------------------------------------------------------------------------- /app/ElasticSearch/ESBol.php: -------------------------------------------------------------------------------- 1 | hasOne('App\Entity\Feed','id','fk_feed_id'); 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /app/Entity/BoladsPreview.php: -------------------------------------------------------------------------------- 1 | hasOne('App\Entity\Category','id','fk_category_id'); 17 | } 18 | 19 | 20 | public function getfeed() 21 | { 22 | return $this->hasOne('App\Entity\Feed','id','fk_feed'); 23 | } 24 | } -------------------------------------------------------------------------------- /app/Entity/Channel.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Entity\Feed','id','fk_feed_id'); 18 | } 19 | 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /app/Entity/FieldToMap.php: -------------------------------------------------------------------------------- 1 | model->create($data); 23 | } 24 | 25 | 26 | } -------------------------------------------------------------------------------- /app/Entity/Repository/CategoryChannelRepository.php: -------------------------------------------------------------------------------- 1 | model->create($data); 20 | } 21 | 22 | 23 | } -------------------------------------------------------------------------------- /app/Entity/Repository/Contract/iAdCampaignPreview.php: -------------------------------------------------------------------------------- 1 | model->create($data); 20 | } 21 | 22 | 23 | /** 24 | * @param $adwords_feed_id 25 | * @return mixed 26 | */ 27 | public function removeAdwordsRule($rule_id) 28 | { 29 | return $this->model->where('fk_rule_id',$rule_id)->delete(); 30 | } 31 | 32 | 33 | } 34 | ?> -------------------------------------------------------------------------------- /app/Entity/Repository/RuleBolRepository.php: -------------------------------------------------------------------------------- 1 | model->create($data); 24 | } else { 25 | return $this->model->where('id',$id)->update($data); 26 | } 27 | } 28 | 29 | 30 | } -------------------------------------------------------------------------------- /app/Entity/Revision.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Entity\Feed','fk_feed_id','id'); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/Entity/RuleAdwords.php: -------------------------------------------------------------------------------- 1 | hasOne('App\Entity\Feed','id','fk_feed_id'); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/Entity/User.php: -------------------------------------------------------------------------------- 1 | route('store.select_store'); 21 | } 22 | return $next($request); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/dashboard'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | feed_id; 30 | } 31 | 32 | 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | call(StoreSeeder::class); 14 | $this->call(UserTableSeeder::class); 15 | $this->call(FieldsToMapSeeder::class); 16 | $this->call(ToCategorySeeder::class); 17 | $this->call(AdwordsCountrySeeder::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /database/seeds/FieldsToMapSeeder.php: -------------------------------------------------------------------------------- 1 | insert([ 17 | 'field' => $fields_to_map, 18 | 'created_at' => \Carbon\Carbon::now(), 19 | 'updated_at' => \Carbon\Carbon::now() 20 | ]); 21 | } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/seeds/StoreSeeder.php: -------------------------------------------------------------------------------- 1 | insert([ 20 | 'store_name' => ucfirst($faker->company()), 21 | 'store_url' => $faker->url(), 22 | 'created_at'=>\Carbon\Carbon::now()->tz(DFBULDER_TIMEZONE), 23 | 'updated_at'=>\Carbon\Carbon::now()->tz(DFBULDER_TIMEZONE), 24 | ]); 25 | 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /database/seeds/ToCategorySeeder.php: -------------------------------------------------------------------------------- 1 | insert($g_data); 24 | } 25 | 26 | 27 | 28 | 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- 1 | insert([ 15 | 'company' => 'Dfbuilder.com', 16 | 'name' => 'admin', 17 | 'email' => 'admin@dfbuilder.com', 18 | 'password' => bcrypt('dfbuilder'), 19 | ]); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /licenses: -------------------------------------------------------------------------------- 1 | xml en csv icon door https://www.iconfinder.com/Lexter -------------------------------------------------------------------------------- /mix-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/mix-entry.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)/$ /$1 [L,R=301] 11 | 12 | # Handle Front Controller... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteRule ^ index.php [L] 16 | 17 | # Handle Authorization Header 18 | RewriteCond %{HTTP:Authorization} . 19 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 20 | -------------------------------------------------------------------------------- /public/css/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /public/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/fonts/vendor/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /public/images/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/boxed-bg.jpg -------------------------------------------------------------------------------- /public/images/full-dfbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/full-dfbuilder.png -------------------------------------------------------------------------------- /public/images/logo_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/logo_admin.png -------------------------------------------------------------------------------- /public/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/sort_asc.png -------------------------------------------------------------------------------- /public/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/sort_both.png -------------------------------------------------------------------------------- /public/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/sort_desc.png -------------------------------------------------------------------------------- /public/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/avatar.png -------------------------------------------------------------------------------- /public/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/avatar04.png -------------------------------------------------------------------------------- /public/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/avatar2.png -------------------------------------------------------------------------------- /public/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/avatar3.png -------------------------------------------------------------------------------- /public/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/avatar5.png -------------------------------------------------------------------------------- /public/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/boxed-bg.png -------------------------------------------------------------------------------- /public/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/american-express.png -------------------------------------------------------------------------------- /public/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/cirrus.png -------------------------------------------------------------------------------- /public/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/mastercard.png -------------------------------------------------------------------------------- /public/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/mestro.png -------------------------------------------------------------------------------- /public/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/paypal.png -------------------------------------------------------------------------------- /public/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/paypal2.png -------------------------------------------------------------------------------- /public/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/credit/visa.png -------------------------------------------------------------------------------- /public/img/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/csv.png -------------------------------------------------------------------------------- /public/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/default-50x50.gif -------------------------------------------------------------------------------- /public/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/icons.png -------------------------------------------------------------------------------- /public/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/photo1.png -------------------------------------------------------------------------------- /public/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/photo2.png -------------------------------------------------------------------------------- /public/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/photo3.jpg -------------------------------------------------------------------------------- /public/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/photo4.jpg -------------------------------------------------------------------------------- /public/img/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/reload.gif -------------------------------------------------------------------------------- /public/img/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/txt.png -------------------------------------------------------------------------------- /public/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user1-128x128.jpg -------------------------------------------------------------------------------- /public/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user3-128x128.jpg -------------------------------------------------------------------------------- /public/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user4-128x128.jpg -------------------------------------------------------------------------------- /public/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user5-128x128.jpg -------------------------------------------------------------------------------- /public/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user6-128x128.jpg -------------------------------------------------------------------------------- /public/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user7-128x128.jpg -------------------------------------------------------------------------------- /public/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/user8-128x128.jpg -------------------------------------------------------------------------------- /public/img/wheel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/wheel.gif -------------------------------------------------------------------------------- /public/img/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/public/img/xml.png -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/mix.js": "/mix.js", 4 | "/css/all.css": "/css/all.css", 5 | "/css/custom_styles.css": "/css/custom_styles.css", 6 | "/css/after_bootstrap.css": "/css/after_bootstrap.css", 7 | "/js/dfbuilder.js": "/js/dfbuilder.js" 8 | } -------------------------------------------------------------------------------- /public/mix.js: -------------------------------------------------------------------------------- 1 | !function(n){function t(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return n[e].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};t.m=n,t.c=r,t.i=function(n){return n},t.d=function(n,r,e){t.o(n,r)||Object.defineProperty(n,r,{configurable:!1,enumerable:!0,get:e})},t.n=function(n){var r=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(r,"a",r),r},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=7)}([,function(n,t){},function(n,t){},,,,,function(n,t,r){r(2),n.exports=r(1)}]); -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/test.php: -------------------------------------------------------------------------------- 1 | INSERT INTO `mapping` (`field_name`, `description`, `field_type`, `type_id`, `channel_id`, `parent`, `attributes`) 2 | VALUES 3 | ('actieprijs', 'actieprijs', '1', 71, 46, NULL, NULL), 4 | ('adviesprijs', 'adviesprijs', '1', 71, 46, NULL, NULL), 5 | ('image', 'image', '1', 71, 46, NULL, NULL), 6 | ('link', 'link', '1', 71, 46, NULL, NULL), 7 | ('omschrijving', 'omschrijving', '1', 71, 46, NULL, NULL), 8 | ('titel', 'titel', '1', 71, 46, NULL, NULL), 9 | ('verzendkosten', 'verzendkosten', '1', 71, 46, NULL, NULL), 10 | ('voorraad', 'voorraad', '2', 71, 46, NULL, NULL), 11 | ('youtube_id', 'youtube_id', '2', 71, 46, NULL, NULL); 12 | 13 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /resources/assets/bootstrap-less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /resources/assets/css/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /resources/assets/css/custom_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/css/custom_style.css -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /resources/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /resources/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/avatar.png -------------------------------------------------------------------------------- /resources/assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/avatar04.png -------------------------------------------------------------------------------- /resources/assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/avatar2.png -------------------------------------------------------------------------------- /resources/assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/avatar3.png -------------------------------------------------------------------------------- /resources/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/avatar5.png -------------------------------------------------------------------------------- /resources/assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /resources/assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /resources/assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /resources/assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /resources/assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /resources/assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/mestro.png -------------------------------------------------------------------------------- /resources/assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /resources/assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /resources/assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/credit/visa.png -------------------------------------------------------------------------------- /resources/assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /resources/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/icons.png -------------------------------------------------------------------------------- /resources/assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/photo1.png -------------------------------------------------------------------------------- /resources/assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/photo2.png -------------------------------------------------------------------------------- /resources/assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/photo3.jpg -------------------------------------------------------------------------------- /resources/assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/photo4.jpg -------------------------------------------------------------------------------- /resources/assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /resources/assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/assets/js/admin-lte/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/admin-lte/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * First we will load all of this project's JavaScript dependencies which 4 | * includes Vue and other libraries. It is a great starting point when 5 | * building robust, powerful web applications using Vue and Laravel. 6 | */ 7 | 8 | require('./bootstrap'); 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | window.Handsontable = require('handsontable/dist/handsontable.full.min.js'); 2 | -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/import_feed.js: -------------------------------------------------------------------------------- 1 | (function($){ 2 | var _token = $('input[name=_token]').val(); 3 | var id = $('input[name=id]').val(); 4 | 5 | 6 | 7 | 8 | /** 9 | * Handle the cancel when a user cancels. when importing the feed 10 | * 11 | */ 12 | $( ".btn-import-cancel" ).click(function() { 13 | $('.format_selector').show(); 14 | $('.url_parser').hide(); 15 | $('.xml_advanced_settings_field').hide(); 16 | $('.xml_advanced_settings').hide(); 17 | $('input[name=feed_url]').val(''); 18 | $('input[name=feed_name]').val(''); 19 | $('input[name=xml_root_node]').val(''); 20 | 21 | }); 22 | 23 | })(jQuery); 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/assets/js/dfbuilder/init_scripts.js: -------------------------------------------------------------------------------- 1 | (function($){ 2 | 3 | 4 | })(jQuery); 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/assets/js/my_custom.js: -------------------------------------------------------------------------------- 1 | (function($){ 2 | 3 | // add your magic over here :) 4 | 5 | 6 | 7 | 8 | })(jQuery); -------------------------------------------------------------------------------- /resources/assets/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false, 19 | "ids": false, 20 | "fallback-colors": false, 21 | "vendor-prefix": false, 22 | "import": false 23 | } 24 | -------------------------------------------------------------------------------- /resources/assets/less/carousel.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Carousel 3 | * ------------------- 4 | */ 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | > .fa { 11 | font-size: 40px; 12 | position: absolute; 13 | top: 50%; 14 | z-index: 5; 15 | display: inline-block; 16 | margin-top: -20px; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /resources/assets/less/invoice.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Invoice 3 | * ------------- 4 | */ 5 | 6 | .invoice { 7 | position: relative; 8 | background: #fff; 9 | border: 1px solid #f4f4f4; 10 | padding: 20px; 11 | margin: 10px 25px; 12 | } 13 | 14 | .invoice-title { 15 | margin-top: 0; 16 | } 17 | -------------------------------------------------------------------------------- /resources/assets/less/labels.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Component: Label 3 | * ---------------- 4 | */ 5 | .label-default { 6 | background-color: @gray-lte; 7 | color: #444; 8 | } 9 | 10 | .label-danger { 11 | &:extend(.bg-red); 12 | } 13 | 14 | .label-info { 15 | &:extend(.bg-aqua); 16 | } 17 | 18 | .label-warning { 19 | &:extend(.bg-yellow); 20 | } 21 | 22 | .label-primary { 23 | &:extend(.bg-light-blue); 24 | } 25 | 26 | .label-success { 27 | &:extend(.bg-green); 28 | } 29 | -------------------------------------------------------------------------------- /resources/assets/less/plugins.less: -------------------------------------------------------------------------------- 1 | // Customized third-party plugins 2 | @import "bootstrap-social.less"; 3 | @import "fullcalendar.less"; 4 | @import "select2.less"; -------------------------------------------------------------------------------- /resources/assets/less/profile.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Page: Profile 3 | * ------------- 4 | */ 5 | 6 | .profile-user-img { 7 | margin: 0 auto; 8 | width: 100px; 9 | padding: 3px; 10 | border: 3px solid @gray-lte; 11 | } 12 | 13 | .profile-username { 14 | font-size: 21px; 15 | margin-top: 5px; 16 | } 17 | 18 | .post { 19 | border-bottom: 1px solid @gray-lte; 20 | margin-bottom: 15px; 21 | padding-bottom: 15px; 22 | color: #666; 23 | &:last-of-type { 24 | border-bottom: 0; 25 | margin-bottom: 0; 26 | padding-bottom: 0; 27 | } 28 | .user-block { 29 | margin-bottom: 15px; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /resources/assets/less/skins/_all-skins.less: -------------------------------------------------------------------------------- 1 | //All skins in one file 2 | @import "skin-blue.less"; 3 | @import "skin-blue-light.less"; 4 | @import "skin-black.less"; 5 | @import "skin-black-light.less"; 6 | @import "skin-green.less"; 7 | @import "skin-green-light.less"; 8 | @import "skin-red.less"; 9 | @import "skin-red-light.less"; 10 | @import "skin-yellow.less"; 11 | @import "skin-yellow-light.less"; 12 | @import "skin-purple.less"; 13 | @import "skin-purple-light.less"; 14 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/views/dfcore/adwords/partial/adwords_feed_error_msg.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Error

4 | {!! $error_msg !!} 5 |
-------------------------------------------------------------------------------- /resources/views/dfcore/adwords/partial/preview_ads.blade.php: -------------------------------------------------------------------------------- 1 | @foreach($ads as $ad) 2 |
3 | 4 | {!! $ad->headline_1 !!} - 5 | {!! $ad->headline_2 !!} 6 | 7 | 8 | 9 |
{!! trans('messages.adwords_ad_form_lbl15') !!}/{!! $ad->path_1 !!} @if(!empty($ad->path_2))/{!! $ad->path_2 !!} @endif 10 | 11 |
12 |
{!! $ad->description !!}
13 |
14 | @endforeach -------------------------------------------------------------------------------- /resources/views/dfcore/import/components/progress.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /resources/views/dfcore/import/manage_feeds.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.layout') 2 | @section('backend-content') 3 | 4 | 5 | 6 | 7 |
8 | 9 |
10 |
11 |

{!! trans('messages.manafeeds_lbl1') !!}

12 |
13 | @include('dfcore.import.partials.manage_feeds_partial',['feeds'=>$feeds]) 14 |
15 |
16 | 17 | @stop -------------------------------------------------------------------------------- /resources/views/dfcore/import/partials/downloading_feed.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | {!! trans('messages.import_mapping_lbl1') !!} 7 | 8 |
9 |
-------------------------------------------------------------------------------- /resources/views/dfcore/index/partials/dashboard/completed.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | @include('dfcore.index.partials.dashboard.task_log',compact('task_logs')) 12 | 13 | 14 |
{!! trans('messages.dashboard_lbl_9') !!}{!! trans('messages.dashboard_lbl_10') !!}{!! trans('messages.dashboard_lbl_11') !!}{!! trans('messages.dashboard_lbl_12') !!}
-------------------------------------------------------------------------------- /resources/views/dfcore/rules/then_rule_forms/space-settings.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {!! trans('messages.rules_then_conditon_18') !!} 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/views/layouts/preloader.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | {!! $slot !!} 5 | 6 |
-------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ $slot }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 |
4 | 5 | 6 | 9 | 10 |
7 | {{ Illuminate\Mail\Markdown::parse($slot) }} 8 |
11 |
14 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 |
8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 |
4 | 5 | 6 | 9 | 10 |
7 | {{ $slot }} 8 |
11 |
14 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 |
8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/layout.blade.php: -------------------------------------------------------------------------------- 1 | {!! strip_tags($header) !!} 2 | 3 | {!! strip_tags($slot) !!} 4 | @isset($subcopy) 5 | 6 | {!! strip_tags($subcopy) !!} 7 | @endisset 8 | 9 | {!! strip_tags($footer) !!} 10 | -------------------------------------------------------------------------------- /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/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 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/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 17 | }); 18 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 20 | 21 | $response->assertStatus(200); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 19 | } 20 | } 21 | --------------------------------------------------------------------------------