├── .boweryignore ├── .env.example ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENCE ├── app ├── TypiCMS │ ├── Commands │ │ ├── CacheKeyPrefix.php │ │ ├── Database.php │ │ └── Install.php │ ├── Controllers │ │ ├── AdminNestedController.php │ │ ├── AdminSimpleController.php │ │ ├── BaseAdminController.php │ │ ├── BaseApiController.php │ │ └── BasePublicController.php │ ├── Facades │ │ ├── FileUpload.php │ │ └── TypiCMS.php │ ├── Filters │ │ ├── AdminFilter.php │ │ ├── PublicFilter.php │ │ └── UsersFilter.php │ ├── Macros.php │ ├── Models │ │ ├── Base.php │ │ └── BaseTranslation.php │ ├── Modules │ │ ├── Blocks │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Block.php │ │ │ │ └── BlockTranslation.php │ │ │ ├── Presenters │ │ │ │ └── BlockPresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── BlockInterface.php │ │ │ │ ├── CacheDecorator.php │ │ │ │ └── EloquentBlock.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── BlockForm.php │ │ │ │ │ └── BlockFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── blocks │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Categories │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Category.php │ │ │ │ └── CategoryTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── CategoryInterface.php │ │ │ │ └── EloquentCategory.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── CategoryForm.php │ │ │ │ │ └── CategoryFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── categories │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Contacts │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Models │ │ │ │ └── Contact.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── ContactInterface.php │ │ │ │ └── EloquentContact.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── ContactForm.php │ │ │ │ │ └── ContactFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── contacts │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ └── form.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Dashboard │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ └── AdminController.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── DashboardInterface.php │ │ │ │ └── EloquentDashboard.php │ │ │ ├── Views │ │ │ │ └── dashboard │ │ │ │ │ └── admin │ │ │ │ │ └── dashboard.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ └── admin.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Events │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Event.php │ │ │ │ └── EventTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentEvent.php │ │ │ │ └── EventInterface.php │ │ │ ├── Services │ │ │ │ ├── Calendar.php │ │ │ │ └── Form │ │ │ │ │ ├── EventForm.php │ │ │ │ │ └── EventFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── events │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Files │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── File.php │ │ │ │ └── FileTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentFile.php │ │ │ │ └── FileInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── FileForm.php │ │ │ │ │ └── FileFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── files │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ ├── filepicker.blade.php │ │ │ │ │ ├── index.php │ │ │ │ │ └── thumbnails.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Galleries │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Gallery.php │ │ │ │ └── GalleryTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentGallery.php │ │ │ │ └── GalleryInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── GalleryForm.php │ │ │ │ │ └── GalleryFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── galleries │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ ├── files.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── _galleries-slider.blade.php │ │ │ │ │ ├── _galleries.blade.php │ │ │ │ │ ├── _slider.blade.php │ │ │ │ │ ├── _thumbs.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Groups │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Models │ │ │ │ └── Group.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── GroupInterface.php │ │ │ │ └── SentryGroup.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── GroupForm.php │ │ │ │ │ └── GroupFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── groups │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ └── admin.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── History │ │ │ ├── Controllers │ │ │ │ └── ApiController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ └── History.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentHistory.php │ │ │ │ └── HistoryInterface.php │ │ │ ├── Views │ │ │ │ └── history │ │ │ │ │ └── admin │ │ │ │ │ ├── index.php │ │ │ │ │ └── latest.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ └── order.php │ │ │ └── routes.php │ │ ├── Menulinks │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Models │ │ │ │ ├── Menulink.php │ │ │ │ └── MenulinkTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentMenulink.php │ │ │ │ └── MenulinkInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── MenulinkForm.php │ │ │ │ │ └── MenulinkFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── menulinks │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ ├── create.blade.php │ │ │ │ │ └── edit.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Menus │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Menu.php │ │ │ │ └── MenuTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentMenu.php │ │ │ │ └── MenuInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── MenuForm.php │ │ │ │ │ └── MenuFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ ├── menus │ │ │ │ │ └── admin │ │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ └── menulinks.php │ │ │ │ └── public │ │ │ │ │ └── _listItem.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── News │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── News.php │ │ │ │ └── NewsTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentNews.php │ │ │ │ └── NewsInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── NewsForm.php │ │ │ │ │ └── NewsFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── news │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ ├── fr │ │ │ │ │ └── global.php │ │ │ │ └── nl │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Pages │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Events │ │ │ │ └── ResetChildren.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Page.php │ │ │ │ └── PageTranslation.php │ │ │ ├── Observers │ │ │ │ ├── HomePageObserver.php │ │ │ │ ├── SortObserver.php │ │ │ │ └── UriObserver.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentPage.php │ │ │ │ └── PageInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── PageForm.php │ │ │ │ │ └── PageFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── pages │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── _listItem.blade.php │ │ │ │ │ ├── default.blade.php │ │ │ │ │ ├── home.blade.php │ │ │ │ │ └── master.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Partners │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Partner.php │ │ │ │ └── PartnerTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentPartner.php │ │ │ │ └── PartnerInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── PartnerForm.php │ │ │ │ │ └── PartnerFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── partners │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Places │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Place.php │ │ │ │ └── PlaceTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentPlace.php │ │ │ │ └── PlaceInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── PlaceForm.php │ │ │ │ │ └── PlaceFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── places │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Projects │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ ├── ApiController.php │ │ │ │ └── PublicController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ ├── Project.php │ │ │ │ └── ProjectTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentProject.php │ │ │ │ └── ProjectInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── ProjectForm.php │ │ │ │ │ └── ProjectFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── projects │ │ │ │ │ ├── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ │ │ └── public │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ ├── order.php │ │ │ │ └── public.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Settings │ │ │ ├── Controllers │ │ │ │ └── AdminController.php │ │ │ ├── Models │ │ │ │ └── Setting.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentSetting.php │ │ │ │ └── SettingInterface.php │ │ │ ├── Views │ │ │ │ └── settings │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Sitemap │ │ │ ├── Controllers │ │ │ │ └── PublicController.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ └── routes.php │ │ ├── Tags │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Facades │ │ │ │ └── Facade.php │ │ │ ├── Models │ │ │ │ └── Tag.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentTag.php │ │ │ │ └── TagInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── TagForm.php │ │ │ │ │ └── TagFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── tags │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ ├── Translations │ │ │ ├── Composers │ │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ │ ├── AdminController.php │ │ │ │ └── ApiController.php │ │ │ ├── Loaders │ │ │ │ └── MixedLoader.php │ │ │ ├── Models │ │ │ │ ├── Translation.php │ │ │ │ └── TranslationTranslation.php │ │ │ ├── Presenters │ │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ │ ├── ModuleProvider.php │ │ │ │ └── TranslationServiceProvider.php │ │ │ ├── Repositories │ │ │ │ ├── CacheDecorator.php │ │ │ │ ├── EloquentTranslation.php │ │ │ │ └── TranslationInterface.php │ │ │ ├── Services │ │ │ │ └── Form │ │ │ │ │ ├── TranslationForm.php │ │ │ │ │ └── TranslationFormLaravelValidator.php │ │ │ ├── Views │ │ │ │ └── translations │ │ │ │ │ └── admin │ │ │ │ │ ├── _form.blade.php │ │ │ │ │ └── index.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ │ ├── admin.php │ │ │ │ └── order.php │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── global.php │ │ │ │ └── fr │ │ │ │ │ └── global.php │ │ │ └── routes.php │ │ └── Users │ │ │ ├── Composers │ │ │ └── SidebarViewComposer.php │ │ │ ├── Controllers │ │ │ ├── AdminController.php │ │ │ └── ApiController.php │ │ │ ├── Models │ │ │ └── User.php │ │ │ ├── Presenters │ │ │ └── ModulePresenter.php │ │ │ ├── Providers │ │ │ └── ModuleProvider.php │ │ │ ├── Repositories │ │ │ ├── SentryUser.php │ │ │ └── UserInterface.php │ │ │ ├── Services │ │ │ └── Form │ │ │ │ ├── UserForm.php │ │ │ │ └── UserFormLaravelValidator.php │ │ │ ├── Views │ │ │ └── users │ │ │ │ └── admin │ │ │ │ ├── _form.blade.php │ │ │ │ ├── index.php │ │ │ │ ├── login.blade.php │ │ │ │ ├── newpassword.blade.php │ │ │ │ ├── register.blade.php │ │ │ │ └── reset.blade.php │ │ │ ├── breadcrumbs.php │ │ │ ├── config │ │ │ └── admin.php │ │ │ ├── lang │ │ │ ├── en │ │ │ │ └── global.php │ │ │ └── fr │ │ │ │ └── global.php │ │ │ └── routes.php │ ├── NestableCollection.php │ ├── Observers │ │ ├── FileObserver.php │ │ └── SlugObserver.php │ ├── Presenters │ │ ├── PresentableTrait.php │ │ ├── Presenter.php │ │ └── PresenterException.php │ ├── Providers │ │ ├── StartProvider.php │ │ ├── TypiCMSServiceProvider.php │ │ └── UploadServiceProvider.php │ ├── Repositories │ │ ├── CacheAbstractDecorator.php │ │ ├── RepositoriesAbstract.php │ │ └── RepositoryInterface.php │ ├── Services │ │ ├── Cache │ │ │ ├── CacheInterface.php │ │ │ └── LaravelCache.php │ │ ├── Dates.php │ │ ├── Form │ │ │ └── AbstractForm.php │ │ ├── TypiCMS.php │ │ ├── Upload │ │ │ └── FileUpload.php │ │ └── Validation │ │ │ ├── AbstractLaravelValidator.php │ │ │ └── ValidableInterface.php │ ├── SidebarViewCreator.php │ └── Traits │ │ └── Historable.php ├── assets │ ├── img │ │ └── .gitignore │ ├── js │ │ ├── admin │ │ │ ├── .gitignore │ │ │ ├── fastclick.js │ │ │ ├── jquery.slug.js │ │ │ ├── offcanvas.js │ │ │ ├── preferences.js │ │ │ └── preview-window.js │ │ └── public │ │ │ └── .gitignore │ ├── less │ │ ├── admin │ │ │ ├── angular-ui-tree.less │ │ │ ├── bootstrap.less │ │ │ ├── fancybox.less │ │ │ ├── master.less │ │ │ ├── offcanvas.less │ │ │ ├── sidebar.less │ │ │ ├── smart-table.less │ │ │ ├── tabs.less │ │ │ └── variables.less │ │ ├── navbar.less │ │ └── public │ │ │ ├── bootstrap.less │ │ │ ├── errors.less │ │ │ ├── fancybox.less │ │ │ ├── gmaps.less │ │ │ ├── master.less │ │ │ ├── navbar-hide-left-button.less │ │ │ ├── swiper.less │ │ │ └── variables.less │ └── typicms │ │ ├── app.js │ │ └── components │ │ ├── common │ │ ├── dateFromMySQLFilter.js │ │ ├── directives │ │ │ ├── contentEditable.js │ │ │ └── highlighter.js │ │ └── normalizeFunction.js │ │ └── list │ │ ├── ListController.js │ │ ├── betterFilter.js │ │ ├── betterOrderByFilter.js │ │ └── directives │ │ ├── dropZone.js │ │ ├── stFilterDirective.js │ │ ├── stOrderDirective.js │ │ ├── typiBtnDelete.js │ │ ├── typiBtnEdit.js │ │ ├── typiBtnFiles.js │ │ ├── typiBtnStatus.js │ │ ├── typiPagination.js │ │ └── typiThumbListItem.js ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── file.php │ ├── local │ │ ├── app.php │ │ └── mail.php │ ├── mail.php │ ├── modules.php │ ├── packages │ │ ├── .gitkeep │ │ ├── barryvdh │ │ │ └── laravel-debugbar │ │ │ │ ├── .gitkeep │ │ │ │ └── config.php │ │ ├── bkwld │ │ │ └── croppa │ │ │ │ ├── .gitkeep │ │ │ │ ├── config.php │ │ │ │ └── local │ │ │ │ └── config.php │ │ ├── cartalyst │ │ │ └── sentry │ │ │ │ └── config.php │ │ ├── edvinaskrucas │ │ │ └── notification │ │ │ │ ├── .gitkeep │ │ │ │ └── config.php │ │ ├── heybigname │ │ │ └── backup-manager │ │ │ │ └── storage.php │ │ ├── laracasts │ │ │ └── utilities │ │ │ │ └── config.php │ │ └── thomaswelton │ │ │ └── laravel-gravatar │ │ │ ├── .gitkeep │ │ │ └── config.php │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── sitemap.php │ ├── testing │ │ ├── cache.php │ │ ├── database.php │ │ └── session.php │ ├── typicms.php │ ├── view.php │ └── workbench.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2012_12_06_225921_migration_install_users.php │ │ ├── 2012_12_06_225929_migration_install_groups.php │ │ ├── 2012_12_06_225945_migration_install_users_groups_pivot.php │ │ ├── 2012_12_06_225988_migration_install_throttle.php │ │ ├── 2013_08_29_174626_create_pages_table.php │ │ ├── 2013_08_31_000501_create_events_table.php │ │ ├── 2013_09_03_084147_create_menus_tables.php │ │ ├── 2013_09_21_104640_create_files_table.php │ │ ├── 2013_10_05_091611_create_projects_table.php │ │ ├── 2013_10_27_105515_create_categories_table.php │ │ ├── 2013_10_29_224632_create_settings_table.php │ │ ├── 2013_11_07_185433_create_news_table.php │ │ ├── 2014_01_13_094853_create_places_table.php │ │ ├── 2014_02_13_013804_create_tags_table.php │ │ ├── 2014_02_28_223553_create_translations_table.php │ │ ├── 2014_03_28_101553_create_contacts_table.php │ │ ├── 2014_05_09_095101_create_galleries_table.php │ │ ├── 2014_05_28_103804_create_galleryable_table.php │ │ ├── 2014_06_15_200602_create_partners_table.php │ │ ├── 2014_06_19_090602_create_blocks_table.php │ │ └── 2014_11_03_151402_create_history_table.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ ├── BlockSeeder.php │ │ ├── CategorySeeder.php │ │ ├── DatabaseSeeder.php │ │ ├── EventSeeder.php │ │ ├── GallerySeeder.php │ │ ├── MenuSeeder.php │ │ ├── NewsSeeder.php │ │ ├── NewsSeederManyNews.php │ │ ├── PageSeeder.php │ │ ├── PlaceSeeder.php │ │ ├── ProjectSeeder.php │ │ ├── SentrySeeder.php │ │ ├── SettingsSeeder.php │ │ ├── TagSeeder.php │ │ └── TranslationSeeder.php ├── filters.php ├── lang │ ├── en │ │ ├── global.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── fr │ │ ├── global.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ └── nl │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── backup │ │ └── .gitignore │ ├── cache │ │ └── .gitignore │ ├── debugbar │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── BlocksControllerTest.php │ ├── CategoriesControllerTest.php │ ├── ContactsControllerTest.php │ ├── EventsControllerTest.php │ ├── FilesControllerTest.php │ ├── GalleriesControllerTest.php │ ├── GroupsControllerTest.php │ ├── MenulinksControllerTest.php │ ├── MenusControllerTest.php │ ├── NewsControllerTest.php │ ├── PagesControllerTest.php │ ├── PartnersControllerTest.php │ ├── PlacesControllerTest.php │ ├── ProjectsControllerTest.php │ ├── TagsControllerTest.php │ ├── TestCase.php │ ├── TranslationsControllerTest.php │ ├── UsersControllerTest.php │ ├── _bootstrap.php │ ├── _data │ │ └── dump.sql │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── ContactFormCept.php │ │ ├── LoginCept.php │ │ ├── RegisterCept.php │ │ ├── UpdatePageCept.php │ │ ├── WebGuy.php │ │ └── _bootstrap.php │ ├── functional.suite.yml │ ├── functional │ │ ├── MainUserCept.php │ │ ├── TestGuy.php │ │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ │ ├── CodeGuy.php │ │ └── _bootstrap.php └── views │ ├── _navbar.blade.php │ ├── admin │ ├── _button-back.blade.php │ ├── _buttons-form.blade.php │ ├── _document-fieldset.blade.php │ ├── _footer.blade.php │ ├── _galleries-fieldset.blade.php │ ├── _image-fieldset.blade.php │ ├── _navbar-public-link.blade.php │ ├── _permissions-form.blade.php │ ├── _sidebar.blade.php │ ├── _tabs-lang-form.blade.php │ ├── _tabs-lang.blade.php │ ├── ajax.blade.php │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── master.blade.php │ ├── emails │ └── auth │ │ ├── reminder.blade.php │ │ ├── reset.blade.php │ │ └── welcome.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ └── 500.blade.php │ ├── pagination │ └── slider.php │ └── public │ ├── _alert.blade.php │ ├── _languagesMenu.blade.php │ ├── langChooser.blade.php │ └── master.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── bower.json ├── bowery.json ├── codeception.yml ├── composer.json ├── composer.lock ├── dist └── translations │ └── fr_FR.json ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── po ├── en.mo ├── en.po ├── fr.mo ├── fr.po ├── nl.mo ├── nl.po └── template.pot ├── public ├── .htaccess ├── components │ ├── fancybox │ │ └── source │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ └── fancybox_sprite@2x.png │ └── tinymce │ │ ├── css │ │ └── tiny_mce.css │ │ ├── langs │ │ ├── de.js │ │ ├── en.js │ │ ├── fr.js │ │ └── nl.js │ │ └── skins │ │ └── typicms │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── fonts │ │ ├── readme.md │ │ ├── tinymce-small.dev.svg │ │ ├── tinymce-small.eot │ │ ├── tinymce-small.json │ │ ├── tinymce-small.svg │ │ ├── tinymce-small.ttf │ │ ├── tinymce-small.woff │ │ ├── tinymce.dev.svg │ │ ├── tinymce.eot │ │ ├── tinymce.json │ │ ├── tinymce.svg │ │ ├── tinymce.ttf │ │ └── tinymce.woff │ │ ├── img │ │ ├── anchor.gif │ │ ├── loader.gif │ │ ├── object.gif │ │ └── trans.gif │ │ ├── skin.ie7.min.css │ │ └── skin.min.css ├── css │ ├── admin.css │ └── public.css ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ └── .gitignore ├── index.php ├── js │ ├── admin │ │ ├── checkboxes-permissions.js │ │ ├── components.min.js │ │ ├── form.js │ │ └── gmaps.js │ ├── angular-locales │ │ ├── angular-locale_fr-fr.js │ │ └── angular-locale_nl-nl.js │ ├── pickadate-locales │ │ ├── fr_FR.js │ │ └── nl_NL.js │ └── public │ │ ├── components.min.js │ │ ├── gmaps.js │ │ ├── master.js │ │ └── previewmode.js ├── languages │ ├── en.json │ ├── fr.json │ └── nl.json ├── robots.txt ├── uploads │ ├── .gitignore │ └── img-not-found.png └── views │ └── partials │ ├── btnDelete.html │ ├── btnEdit.html │ ├── btnFiles.html │ ├── btnLocales.html │ ├── btnStatus.html │ ├── nodes_renderer.html │ ├── pagination.html │ └── thumbListItem.html ├── readme.md └── server.php /.boweryignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | vendor 4 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/LICENCE -------------------------------------------------------------------------------- /app/TypiCMS/Commands/CacheKeyPrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Commands/CacheKeyPrefix.php -------------------------------------------------------------------------------- /app/TypiCMS/Commands/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Commands/Database.php -------------------------------------------------------------------------------- /app/TypiCMS/Commands/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Commands/Install.php -------------------------------------------------------------------------------- /app/TypiCMS/Controllers/AdminNestedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Controllers/AdminNestedController.php -------------------------------------------------------------------------------- /app/TypiCMS/Controllers/AdminSimpleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Controllers/AdminSimpleController.php -------------------------------------------------------------------------------- /app/TypiCMS/Controllers/BaseAdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Controllers/BaseAdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Controllers/BaseApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Controllers/BaseApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Controllers/BasePublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Controllers/BasePublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Facades/FileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Facades/FileUpload.php -------------------------------------------------------------------------------- /app/TypiCMS/Facades/TypiCMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Facades/TypiCMS.php -------------------------------------------------------------------------------- /app/TypiCMS/Filters/AdminFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Filters/AdminFilter.php -------------------------------------------------------------------------------- /app/TypiCMS/Filters/PublicFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Filters/PublicFilter.php -------------------------------------------------------------------------------- /app/TypiCMS/Filters/UsersFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Filters/UsersFilter.php -------------------------------------------------------------------------------- /app/TypiCMS/Macros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Macros.php -------------------------------------------------------------------------------- /app/TypiCMS/Models/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Models/Base.php -------------------------------------------------------------------------------- /app/TypiCMS/Models/BaseTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Models/BaseTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Models/Block.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Models/BlockTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Models/BlockTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Presenters/BlockPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Presenters/BlockPresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Repositories/BlockInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Repositories/BlockInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Repositories/EloquentBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Repositories/EloquentBlock.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Services/Form/BlockForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Services/Form/BlockForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Services/Form/BlockFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Services/Form/BlockFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Views/blocks/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Views/blocks/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/Views/blocks/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/Views/blocks/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/config/public.php: -------------------------------------------------------------------------------- 1 | 100, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Blocks/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Blocks/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Models/Category.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Models/CategoryTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Models/CategoryTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Repositories/CategoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Repositories/CategoryInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Repositories/EloquentCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Repositories/EloquentCategory.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Services/Form/CategoryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Services/Form/CategoryForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Services/Form/CategoryFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Services/Form/CategoryFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Views/categories/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Views/categories/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/Views/categories/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/Views/categories/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Categories/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Categories/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Models/Contact.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Repositories/ContactInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Repositories/ContactInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Repositories/EloquentContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Repositories/EloquentContact.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Services/Form/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Services/Form/ContactForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Services/Form/ContactFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Services/Form/ContactFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Views/contacts/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Views/contacts/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Views/contacts/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Views/contacts/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/Views/contacts/public/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/Views/contacts/public/form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Contacts/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Contacts/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Repositories/DashboardInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Repositories/DashboardInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Repositories/EloquentDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Repositories/EloquentDashboard.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/Views/dashboard/admin/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/Views/dashboard/admin/dashboard.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/config/admin.php: -------------------------------------------------------------------------------- 1 | 0, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Dashboard/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Dashboard/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Models/Event.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Models/EventTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Models/EventTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Repositories/EloquentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Repositories/EloquentEvent.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Repositories/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Repositories/EventInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Services/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Services/Calendar.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Services/Form/EventForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Services/Form/EventForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Services/Form/EventFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Services/Form/EventFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Views/events/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Views/events/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Views/events/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Views/events/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Views/events/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Views/events/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/Views/events/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/Views/events/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Events/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Events/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Models/File.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Models/FileTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Models/FileTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Repositories/EloquentFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Repositories/EloquentFile.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Repositories/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Repositories/FileInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Services/Form/FileForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Services/Form/FileForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Services/Form/FileFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Services/Form/FileFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Views/files/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Views/files/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Views/files/admin/filepicker.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Views/files/admin/filepicker.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Views/files/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Views/files/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/Views/files/admin/thumbnails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/Views/files/admin/thumbnails.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Files/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Files/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Models/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Models/Gallery.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Models/GalleryTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Models/GalleryTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Repositories/EloquentGallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Repositories/EloquentGallery.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Repositories/GalleryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Repositories/GalleryInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Services/Form/GalleryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Services/Form/GalleryForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Services/Form/GalleryFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Services/Form/GalleryFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/admin/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/admin/files.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/_galleries-slider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/_galleries-slider.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/_galleries.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/_galleries.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/_slider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/_slider.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/_thumbs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/_thumbs.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/Views/galleries/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/Views/galleries/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Galleries/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Galleries/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Models/Group.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Repositories/GroupInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Repositories/GroupInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Repositories/SentryGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Repositories/SentryGroup.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Services/Form/GroupForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Services/Form/GroupForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Services/Form/GroupFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Services/Form/GroupFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Views/groups/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Views/groups/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/Views/groups/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/Views/groups/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/config/admin.php: -------------------------------------------------------------------------------- 1 | 101, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Groups/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Groups/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Models/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Models/History.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Repositories/EloquentHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Repositories/EloquentHistory.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Repositories/HistoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Repositories/HistoryInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Views/history/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Views/history/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/Views/history/admin/latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/Views/history/admin/latest.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 4 | ]; 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/History/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/History/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Models/Menulink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Models/Menulink.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Models/MenulinkTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Models/MenulinkTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Repositories/EloquentMenulink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Repositories/EloquentMenulink.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Repositories/MenulinkInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Repositories/MenulinkInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Services/Form/MenulinkForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Services/Form/MenulinkForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Services/Form/MenulinkFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Services/Form/MenulinkFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/create.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/Views/menulinks/admin/edit.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menulinks/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menulinks/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Models/Menu.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Models/MenuTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Models/MenuTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Repositories/EloquentMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Repositories/EloquentMenu.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Repositories/MenuInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Repositories/MenuInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Services/Form/MenuForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Services/Form/MenuForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Services/Form/MenuFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Services/Form/MenuFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Views/menus/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Views/menus/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Views/menus/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Views/menus/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Views/menus/admin/menulinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Views/menus/admin/menulinks.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/Views/public/_listItem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/Views/public/_listItem.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/config/admin.php: -------------------------------------------------------------------------------- 1 | 100, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Menus/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Menus/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Models/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Models/News.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Models/NewsTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Models/NewsTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Repositories/EloquentNews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Repositories/EloquentNews.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Repositories/NewsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Repositories/NewsInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Services/Form/NewsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Services/Form/NewsForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Services/Form/NewsFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Services/Form/NewsFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Views/news/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Views/news/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Views/news/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Views/news/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Views/news/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Views/news/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/Views/news/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/Views/news/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/config/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/config/order.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/lang/nl/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/lang/nl/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/News/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/News/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Events/ResetChildren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Events/ResetChildren.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Models/Page.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Models/PageTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Models/PageTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Observers/HomePageObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Observers/HomePageObserver.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Observers/SortObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Observers/SortObserver.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Observers/UriObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Observers/UriObserver.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Repositories/EloquentPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Repositories/EloquentPage.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Repositories/PageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Repositories/PageInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Services/Form/PageForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Services/Form/PageForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Services/Form/PageFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Services/Form/PageFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/public/_listItem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/public/_listItem.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/public/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/public/default.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/public/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/public/home.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/Views/pages/public/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/Views/pages/public/master.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/config/admin.php: -------------------------------------------------------------------------------- 1 | 2, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 4 | ]; 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Pages/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Pages/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Models/Partner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Models/Partner.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Models/PartnerTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Models/PartnerTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Repositories/EloquentPartner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Repositories/EloquentPartner.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Repositories/PartnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Repositories/PartnerInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Services/Form/PartnerForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Services/Form/PartnerForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Services/Form/PartnerFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Services/Form/PartnerFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Views/partners/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Views/partners/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Views/partners/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Views/partners/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Views/partners/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Views/partners/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/Views/partners/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/Views/partners/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/config/public.php: -------------------------------------------------------------------------------- 1 | 100, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Partners/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Partners/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Models/Place.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Models/Place.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Models/PlaceTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Models/PlaceTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Repositories/EloquentPlace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Repositories/EloquentPlace.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Repositories/PlaceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Repositories/PlaceInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Services/Form/PlaceForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Services/Form/PlaceForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Services/Form/PlaceFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Services/Form/PlaceFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Views/places/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Views/places/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Views/places/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Views/places/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Views/places/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Views/places/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/Views/places/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/Views/places/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Places/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Places/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Models/Project.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Models/ProjectTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Models/ProjectTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Repositories/EloquentProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Repositories/EloquentProject.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Repositories/ProjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Repositories/ProjectInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Services/Form/ProjectForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Services/Form/ProjectForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Services/Form/ProjectFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Services/Form/ProjectFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Views/projects/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Views/projects/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Views/projects/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Views/projects/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Views/projects/public/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Views/projects/public/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/Views/projects/public/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/Views/projects/public/show.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/config/public.php: -------------------------------------------------------------------------------- 1 | 10, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Projects/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Projects/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Models/Setting.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Repositories/EloquentSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Repositories/EloquentSetting.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Repositories/SettingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Repositories/SettingInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Views/settings/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Views/settings/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/Views/settings/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/Views/settings/admin/index.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Settings/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Settings/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Sitemap/Controllers/PublicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Sitemap/Controllers/PublicController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Sitemap/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Sitemap/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Sitemap/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Sitemap/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Facades/Facade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Models/Tag.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Repositories/EloquentTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Repositories/EloquentTag.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Repositories/TagInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Repositories/TagInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Services/Form/TagForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Services/Form/TagForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Services/Form/TagFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Services/Form/TagFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Views/tags/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Views/tags/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/Views/tags/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/Views/tags/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/config/admin.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/config/order.php: -------------------------------------------------------------------------------- 1 | 'desc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Tags/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Tags/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Loaders/MixedLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Loaders/MixedLoader.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Models/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Models/Translation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Models/TranslationTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Models/TranslationTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Providers/TranslationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Providers/TranslationServiceProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Repositories/CacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Repositories/CacheDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Repositories/EloquentTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Repositories/EloquentTranslation.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Repositories/TranslationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Repositories/TranslationInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Services/Form/TranslationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Services/Form/TranslationForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Services/Form/TranslationFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Services/Form/TranslationFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Views/translations/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Views/translations/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/Views/translations/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/Views/translations/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/config/admin.php: -------------------------------------------------------------------------------- 1 | 101, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/config/order.php: -------------------------------------------------------------------------------- 1 | 'asc', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Translations/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Translations/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Composers/SidebarViewComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Composers/SidebarViewComposer.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Controllers/AdminController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Models/User.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Presenters/ModulePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Presenters/ModulePresenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Providers/ModuleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Providers/ModuleProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Repositories/SentryUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Repositories/SentryUser.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Repositories/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Repositories/UserInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Services/Form/UserForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Services/Form/UserForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Services/Form/UserFormLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Services/Form/UserFormLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/_form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/_form.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/index.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/login.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/newpassword.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/newpassword.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/register.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/Views/users/admin/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/Views/users/admin/reset.blade.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/breadcrumbs.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/config/admin.php: -------------------------------------------------------------------------------- 1 | 100, 4 | ); 5 | -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/lang/en/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/lang/fr/global.php -------------------------------------------------------------------------------- /app/TypiCMS/Modules/Users/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Modules/Users/routes.php -------------------------------------------------------------------------------- /app/TypiCMS/NestableCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/NestableCollection.php -------------------------------------------------------------------------------- /app/TypiCMS/Observers/FileObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Observers/FileObserver.php -------------------------------------------------------------------------------- /app/TypiCMS/Observers/SlugObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Observers/SlugObserver.php -------------------------------------------------------------------------------- /app/TypiCMS/Presenters/PresentableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Presenters/PresentableTrait.php -------------------------------------------------------------------------------- /app/TypiCMS/Presenters/Presenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Presenters/Presenter.php -------------------------------------------------------------------------------- /app/TypiCMS/Presenters/PresenterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Presenters/PresenterException.php -------------------------------------------------------------------------------- /app/TypiCMS/Providers/StartProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Providers/StartProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Providers/TypiCMSServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Providers/TypiCMSServiceProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Providers/UploadServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Providers/UploadServiceProvider.php -------------------------------------------------------------------------------- /app/TypiCMS/Repositories/CacheAbstractDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Repositories/CacheAbstractDecorator.php -------------------------------------------------------------------------------- /app/TypiCMS/Repositories/RepositoriesAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Repositories/RepositoriesAbstract.php -------------------------------------------------------------------------------- /app/TypiCMS/Repositories/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Repositories/RepositoryInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Cache/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Cache/CacheInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Cache/LaravelCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Cache/LaravelCache.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Dates.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Form/AbstractForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Form/AbstractForm.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/TypiCMS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/TypiCMS.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Upload/FileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Upload/FileUpload.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Validation/AbstractLaravelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Validation/AbstractLaravelValidator.php -------------------------------------------------------------------------------- /app/TypiCMS/Services/Validation/ValidableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Services/Validation/ValidableInterface.php -------------------------------------------------------------------------------- /app/TypiCMS/SidebarViewCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/SidebarViewCreator.php -------------------------------------------------------------------------------- /app/TypiCMS/Traits/Historable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/TypiCMS/Traits/Historable.php -------------------------------------------------------------------------------- /app/assets/img/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /app/assets/js/admin/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /app/assets/js/admin/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/js/admin/fastclick.js -------------------------------------------------------------------------------- /app/assets/js/admin/jquery.slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/js/admin/jquery.slug.js -------------------------------------------------------------------------------- /app/assets/js/admin/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/js/admin/offcanvas.js -------------------------------------------------------------------------------- /app/assets/js/admin/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/js/admin/preferences.js -------------------------------------------------------------------------------- /app/assets/js/admin/preview-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/js/admin/preview-window.js -------------------------------------------------------------------------------- /app/assets/js/public/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /app/assets/less/admin/angular-ui-tree.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/angular-ui-tree.less -------------------------------------------------------------------------------- /app/assets/less/admin/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/bootstrap.less -------------------------------------------------------------------------------- /app/assets/less/admin/fancybox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/fancybox.less -------------------------------------------------------------------------------- /app/assets/less/admin/master.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/master.less -------------------------------------------------------------------------------- /app/assets/less/admin/offcanvas.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/offcanvas.less -------------------------------------------------------------------------------- /app/assets/less/admin/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/sidebar.less -------------------------------------------------------------------------------- /app/assets/less/admin/smart-table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/smart-table.less -------------------------------------------------------------------------------- /app/assets/less/admin/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/tabs.less -------------------------------------------------------------------------------- /app/assets/less/admin/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/admin/variables.less -------------------------------------------------------------------------------- /app/assets/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/navbar.less -------------------------------------------------------------------------------- /app/assets/less/public/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/bootstrap.less -------------------------------------------------------------------------------- /app/assets/less/public/errors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/errors.less -------------------------------------------------------------------------------- /app/assets/less/public/fancybox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/fancybox.less -------------------------------------------------------------------------------- /app/assets/less/public/gmaps.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/gmaps.less -------------------------------------------------------------------------------- /app/assets/less/public/master.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/master.less -------------------------------------------------------------------------------- /app/assets/less/public/navbar-hide-left-button.less: -------------------------------------------------------------------------------- 1 | .navbar-toggle-left { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/less/public/swiper.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/swiper.less -------------------------------------------------------------------------------- /app/assets/less/public/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/less/public/variables.less -------------------------------------------------------------------------------- /app/assets/typicms/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/app.js -------------------------------------------------------------------------------- /app/assets/typicms/components/common/dateFromMySQLFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/common/dateFromMySQLFilter.js -------------------------------------------------------------------------------- /app/assets/typicms/components/common/directives/contentEditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/common/directives/contentEditable.js -------------------------------------------------------------------------------- /app/assets/typicms/components/common/directives/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/common/directives/highlighter.js -------------------------------------------------------------------------------- /app/assets/typicms/components/common/normalizeFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/common/normalizeFunction.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/ListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/ListController.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/betterFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/betterFilter.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/betterOrderByFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/betterOrderByFilter.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/dropZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/dropZone.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/stFilterDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/stFilterDirective.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/stOrderDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/stOrderDirective.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiBtnDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiBtnDelete.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiBtnEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiBtnEdit.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiBtnFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiBtnFiles.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiBtnStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiBtnStatus.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiPagination.js -------------------------------------------------------------------------------- /app/assets/typicms/components/list/directives/typiThumbListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/assets/typicms/components/list/directives/typiThumbListItem.js -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/file.php -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/local/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/local/mail.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/modules.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/barryvdh/laravel-debugbar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/barryvdh/laravel-debugbar/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/barryvdh/laravel-debugbar/config.php -------------------------------------------------------------------------------- /app/config/packages/bkwld/croppa/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/bkwld/croppa/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/bkwld/croppa/config.php -------------------------------------------------------------------------------- /app/config/packages/bkwld/croppa/local/config.php: -------------------------------------------------------------------------------- 1 | false, 5 | 6 | ); 7 | -------------------------------------------------------------------------------- /app/config/packages/cartalyst/sentry/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/cartalyst/sentry/config.php -------------------------------------------------------------------------------- /app/config/packages/edvinaskrucas/notification/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/edvinaskrucas/notification/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/edvinaskrucas/notification/config.php -------------------------------------------------------------------------------- /app/config/packages/heybigname/backup-manager/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/heybigname/backup-manager/storage.php -------------------------------------------------------------------------------- /app/config/packages/laracasts/utilities/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/laracasts/utilities/config.php -------------------------------------------------------------------------------- /app/config/packages/thomaswelton/laravel-gravatar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/thomaswelton/laravel-gravatar/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/packages/thomaswelton/laravel-gravatar/config.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/sitemap.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/testing/database.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/typicms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/typicms.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2012_12_06_225921_migration_install_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2012_12_06_225921_migration_install_users.php -------------------------------------------------------------------------------- /app/database/migrations/2012_12_06_225929_migration_install_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2012_12_06_225929_migration_install_groups.php -------------------------------------------------------------------------------- /app/database/migrations/2012_12_06_225945_migration_install_users_groups_pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2012_12_06_225945_migration_install_users_groups_pivot.php -------------------------------------------------------------------------------- /app/database/migrations/2012_12_06_225988_migration_install_throttle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2012_12_06_225988_migration_install_throttle.php -------------------------------------------------------------------------------- /app/database/migrations/2013_08_29_174626_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_08_29_174626_create_pages_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_08_31_000501_create_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_08_31_000501_create_events_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_09_03_084147_create_menus_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_09_03_084147_create_menus_tables.php -------------------------------------------------------------------------------- /app/database/migrations/2013_09_21_104640_create_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_09_21_104640_create_files_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_10_05_091611_create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_10_05_091611_create_projects_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_10_27_105515_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_10_27_105515_create_categories_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_10_29_224632_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_10_29_224632_create_settings_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_11_07_185433_create_news_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2013_11_07_185433_create_news_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_01_13_094853_create_places_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_01_13_094853_create_places_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_02_13_013804_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_02_13_013804_create_tags_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_02_28_223553_create_translations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_02_28_223553_create_translations_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_03_28_101553_create_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_03_28_101553_create_contacts_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_05_09_095101_create_galleries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_05_09_095101_create_galleries_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_05_28_103804_create_galleryable_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_05_28_103804_create_galleryable_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_06_15_200602_create_partners_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_06_15_200602_create_partners_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_06_19_090602_create_blocks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_06_19_090602_create_blocks_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_11_03_151402_create_history_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/migrations/2014_11_03_151402_create_history_table.php -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/BlockSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/BlockSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/CategorySeeder.php -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/EventSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/EventSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/GallerySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/GallerySeeder.php -------------------------------------------------------------------------------- /app/database/seeds/MenuSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/MenuSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/NewsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/NewsSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/NewsSeederManyNews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/NewsSeederManyNews.php -------------------------------------------------------------------------------- /app/database/seeds/PageSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/PageSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/PlaceSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/PlaceSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/ProjectSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/ProjectSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/SentrySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/SentrySeeder.php -------------------------------------------------------------------------------- /app/database/seeds/SettingsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/SettingsSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/TagSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/TagSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/TranslationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/database/seeds/TranslationSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/en/global.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/lang/fr/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/fr/global.php -------------------------------------------------------------------------------- /app/lang/fr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/fr/pagination.php -------------------------------------------------------------------------------- /app/lang/fr/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/fr/reminders.php -------------------------------------------------------------------------------- /app/lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/fr/validation.php -------------------------------------------------------------------------------- /app/lang/nl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/nl/pagination.php -------------------------------------------------------------------------------- /app/lang/nl/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/nl/reminders.php -------------------------------------------------------------------------------- /app/lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/lang/nl/validation.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | getPublicUri(), ucfirst(trans('global.view website'))) }} 2 | -------------------------------------------------------------------------------- /app/views/admin/_permissions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/_permissions-form.blade.php -------------------------------------------------------------------------------- /app/views/admin/_sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/_sidebar.blade.php -------------------------------------------------------------------------------- /app/views/admin/_tabs-lang-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/_tabs-lang-form.blade.php -------------------------------------------------------------------------------- /app/views/admin/_tabs-lang.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/_tabs-lang.blade.php -------------------------------------------------------------------------------- /app/views/admin/ajax.blade.php: -------------------------------------------------------------------------------- 1 | {{{ $content or '' }}} 2 | -------------------------------------------------------------------------------- /app/views/admin/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/create.blade.php -------------------------------------------------------------------------------- /app/views/admin/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/edit.blade.php -------------------------------------------------------------------------------- /app/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/index.blade.php -------------------------------------------------------------------------------- /app/views/admin/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/admin/master.blade.php -------------------------------------------------------------------------------- /app/views/emails/auth/reminder.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/emails/auth/reminder.blade.php -------------------------------------------------------------------------------- /app/views/emails/auth/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/emails/auth/reset.blade.php -------------------------------------------------------------------------------- /app/views/emails/auth/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/emails/auth/welcome.blade.php -------------------------------------------------------------------------------- /app/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/errors/403.blade.php -------------------------------------------------------------------------------- /app/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/errors/404.blade.php -------------------------------------------------------------------------------- /app/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/errors/500.blade.php -------------------------------------------------------------------------------- /app/views/pagination/slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/pagination/slider.php -------------------------------------------------------------------------------- /app/views/public/_alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/public/_alert.blade.php -------------------------------------------------------------------------------- /app/views/public/_languagesMenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/public/_languagesMenu.blade.php -------------------------------------------------------------------------------- /app/views/public/langChooser.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/public/langChooser.blade.php -------------------------------------------------------------------------------- /app/views/public/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/app/views/public/master.blade.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/bootstrap/paths.php -------------------------------------------------------------------------------- /bootstrap/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/bootstrap/start.php -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/bower.json -------------------------------------------------------------------------------- /bowery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/bowery.json -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/composer.lock -------------------------------------------------------------------------------- /dist/translations/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/dist/translations/fr_FR.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/package.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/phpunit.xml -------------------------------------------------------------------------------- /po/en.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/en.mo -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/en.po -------------------------------------------------------------------------------- /po/fr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/fr.mo -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/nl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/nl.mo -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/template.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/po/template.pot -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/components/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/blank.gif -------------------------------------------------------------------------------- /public/components/fancybox/source/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/fancybox_loading.gif -------------------------------------------------------------------------------- /public/components/fancybox/source/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /public/components/fancybox/source/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/fancybox_overlay.png -------------------------------------------------------------------------------- /public/components/fancybox/source/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/fancybox_sprite.png -------------------------------------------------------------------------------- /public/components/fancybox/source/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/fancybox/source/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /public/components/tinymce/css/tiny_mce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/css/tiny_mce.css -------------------------------------------------------------------------------- /public/components/tinymce/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/langs/de.js -------------------------------------------------------------------------------- /public/components/tinymce/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/langs/en.js -------------------------------------------------------------------------------- /public/components/tinymce/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/langs/fr.js -------------------------------------------------------------------------------- /public/components/tinymce/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/langs/nl.js -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/content.inline.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/content.inline.min.css -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/content.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/content.min.css -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/readme.md -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.dev.svg -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.json -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.svg -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.dev.svg -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.eot -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.json -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.svg -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.ttf -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/fonts/tinymce.woff -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/img/anchor.gif -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/img/loader.gif -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/img/object.gif -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/img/trans.gif -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/skin.ie7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/skin.ie7.min.css -------------------------------------------------------------------------------- /public/components/tinymce/skins/typicms/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/components/tinymce/skins/typicms/skin.min.css -------------------------------------------------------------------------------- /public/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/css/admin.css -------------------------------------------------------------------------------- /public/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/css/public.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/img/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/admin/checkboxes-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/admin/checkboxes-permissions.js -------------------------------------------------------------------------------- /public/js/admin/components.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/admin/components.min.js -------------------------------------------------------------------------------- /public/js/admin/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/admin/form.js -------------------------------------------------------------------------------- /public/js/admin/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/admin/gmaps.js -------------------------------------------------------------------------------- /public/js/angular-locales/angular-locale_fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/angular-locales/angular-locale_fr-fr.js -------------------------------------------------------------------------------- /public/js/angular-locales/angular-locale_nl-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/angular-locales/angular-locale_nl-nl.js -------------------------------------------------------------------------------- /public/js/pickadate-locales/fr_FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/pickadate-locales/fr_FR.js -------------------------------------------------------------------------------- /public/js/pickadate-locales/nl_NL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/pickadate-locales/nl_NL.js -------------------------------------------------------------------------------- /public/js/public/components.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/public/components.min.js -------------------------------------------------------------------------------- /public/js/public/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/public/gmaps.js -------------------------------------------------------------------------------- /public/js/public/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/public/master.js -------------------------------------------------------------------------------- /public/js/public/previewmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/js/public/previewmode.js -------------------------------------------------------------------------------- /public/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/languages/en.json -------------------------------------------------------------------------------- /public/languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/languages/fr.json -------------------------------------------------------------------------------- /public/languages/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/languages/nl.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !img-not-found.png 4 | -------------------------------------------------------------------------------- /public/uploads/img-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/uploads/img-not-found.png -------------------------------------------------------------------------------- /public/views/partials/btnDelete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/btnDelete.html -------------------------------------------------------------------------------- /public/views/partials/btnEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/btnEdit.html -------------------------------------------------------------------------------- /public/views/partials/btnFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/btnFiles.html -------------------------------------------------------------------------------- /public/views/partials/btnLocales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/btnLocales.html -------------------------------------------------------------------------------- /public/views/partials/btnStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/btnStatus.html -------------------------------------------------------------------------------- /public/views/partials/nodes_renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/nodes_renderer.html -------------------------------------------------------------------------------- /public/views/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/pagination.html -------------------------------------------------------------------------------- /public/views/partials/thumbListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/public/views/partials/thumbListItem.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/readme.md -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdebacker/TypiCMS/HEAD/server.php --------------------------------------------------------------------------------