├── .gitignore ├── .travis.yml ├── composer.json ├── composer.lock ├── license.txt ├── readme.md ├── resources └── screenshot.png └── src ├── Commands └── Install.php ├── Controllers ├── Auth │ ├── AccountController.php │ └── AuthController.php ├── BaseController.php ├── Blogs │ ├── ArticlesController.php │ ├── BaseController.php │ ├── BlogsController.php │ ├── CategoriesController.php │ └── ViewController.php ├── Content │ ├── FilesController.php │ ├── LayoutTemplatesController.php │ ├── MenusController.php │ └── PagesController.php ├── General │ ├── ApiController.php │ ├── DashboardController.php │ └── SettingsController.php ├── Media │ ├── BaseController.php │ ├── ItemsController.php │ ├── MediaController.php │ ├── SetsController.php │ ├── TypesController.php │ └── ViewController.php └── Users │ ├── ActivityController.php │ ├── BaseController.php │ ├── PermissionsController.php │ ├── RolesController.php │ └── UsersController.php ├── Facade.php ├── Fractal.php ├── FractalServiceProvider.php ├── Libraries ├── ArrayFile.php ├── LoadConfiguration.php └── Reports.php ├── Middleware └── Authenticate.php ├── Models ├── Blog │ ├── Article.php │ ├── Blog.php │ ├── Category.php │ └── ContentArea.php ├── Content │ ├── Area.php │ ├── Download.php │ ├── File.php │ ├── FileType.php │ ├── Form.php │ ├── LayoutTemplate.php │ ├── Menu.php │ ├── MenuItem.php │ ├── Page.php │ └── View.php ├── General │ └── Setting.php ├── Media │ ├── Item.php │ ├── Set.php │ └── Type.php ├── Record │ └── Form.php └── User │ ├── Activity.php │ ├── Permission.php │ ├── Role.php │ └── User.php ├── Traits └── Publishable.php ├── config ├── auth.routes.php ├── blogs.php ├── cms.php ├── cms_settings.php ├── media.php ├── menus.php ├── social.php └── tables.php ├── database ├── migrations │ ├── 2013_08_28_011000_create_settings_table.php │ ├── 2013_08_28_011200_create_menus_table.php │ ├── 2013_08_28_011249_create_menu_items_table.php │ ├── 2013_12_31_222000_create_file_types_table.php │ ├── 2013_12_31_222118_create_content_files_table.php │ ├── 2014_05_03_141000_create_content_pages_table.php │ ├── 2014_05_03_142000_create_content_areas_table.php │ ├── 2014_05_03_143048_create_content_layout_templates_table.php │ ├── 2014_05_03_144829_create_content_page_areas_table.php │ ├── 2014_06_12_030005_create_content_views_table.php │ ├── 2014_06_12_031000_create_content_downloads_table.php │ ├── 2014_07_26_184200_create_blogs_table.php │ ├── 2014_07_26_184236_create_blog_articles_table.php │ ├── 2014_07_26_184636_create_blog_content_areas_table.php │ ├── 2014_07_26_184658_create_blog_article_content_areas_table.php │ ├── 2014_09_02_181642_create_blog_categories_table.php │ ├── 2014_09_02_181732_create_blog_article_categories_table.php │ ├── 2014_09_02_181903_create_media_items_table.php │ ├── 2014_09_02_182532_create_media_types_table.php │ ├── 2014_09_02_182609_create_media_sets_table.php │ ├── 2014_09_02_184342_create_media_item_sets_table.php │ ├── 2015_10_12_155409_create_forms_table.php │ └── 2015_10_12_160049_create_form_records_table.php └── seeds │ ├── ContentAreasTableSeeder.php │ ├── ContentLayoutTemplatesTableSeeder.php │ ├── ContentPagesTableSeeder.php │ ├── FileMediaTypesTableSeeder.php │ ├── FractalPermissionsTableSeeder.php │ ├── FractalSeeder.php │ ├── MenusTableSeeder.php │ └── SettingsTableSeeder.php ├── extra ├── helpers.php ├── routes.php ├── settings.php ├── validation_rules.php └── view_composers.php └── resources ├── assets ├── .gitkeep ├── css │ ├── bootstrap-datetimepicker.min.css │ ├── bootstrap-wysihtml5.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── font-awesome.min.css │ ├── fractal │ │ ├── cms.css │ │ ├── core.css │ │ └── public.css │ ├── jquery.gridster.css │ ├── light-gallery.css │ ├── login.css │ ├── quick-styles.css │ ├── quick-styles.min.css │ ├── select2-bootstrap.css │ └── select2.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── article-placeholder.png │ ├── boxy │ │ ├── boxy-ne.png │ │ ├── boxy-nw.png │ │ ├── boxy-se.png │ │ └── boxy-sw.png │ ├── favicon.ico │ ├── image-not-available.png │ ├── loader.gif │ ├── logo-icon.png │ ├── logo.png │ └── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ └── select2x2.png ├── js │ ├── bootstrap-datetimepicker.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── chart.min.js │ ├── fractal │ │ ├── core.js │ │ ├── forms │ │ │ ├── file-upload.js │ │ │ └── user.js │ │ ├── menu.js │ │ └── public.js │ ├── handlebars.min.js │ ├── inflection.js │ ├── jquery.gridster.js │ ├── jquery.gridster.min.js │ ├── jquery.js │ ├── jquery.maskedinput.min.js │ ├── jquery.min.js │ ├── light-gallery.min.js │ ├── markdown.converter.js │ ├── markdown.editor.js │ ├── markdown.sanitizer.js │ ├── moment.min.js │ ├── nested-sortable.js │ ├── select-helper.js │ ├── select2.js │ ├── select2.min.js │ ├── wysihtml5-parser-rules.js │ └── wysihtml5.js └── libraries │ ├── audiojs │ ├── audio.min.js │ ├── audiojs.swf │ └── player-graphics.gif │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── samples │ │ ├── ajax.html │ │ ├── api.html │ │ ├── appendto.html │ │ ├── assets │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── outputxhtml │ │ │ │ └── outputxhtml.css │ │ │ ├── posteddata.php │ │ │ ├── sample.jpg │ │ │ └── uilanguages │ │ │ │ └── languages.js │ │ ├── datafiltering.html │ │ ├── divreplace.html │ │ ├── index.html │ │ ├── inlineall.html │ │ ├── inlinebycode.html │ │ ├── inlinetextarea.html │ │ ├── jquery.html │ │ ├── plugins │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ └── wysiwygarea │ │ │ │ └── fullpage.html │ │ ├── readonly.html │ │ ├── replacebyclass.html │ │ ├── replacebycode.html │ │ ├── sample.css │ │ ├── sample.js │ │ ├── sample_posteddata.php │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── uilanguages.html │ │ └── xhtmlstyle.html │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js │ └── tether │ ├── css │ ├── tether-theme-arrows-dark.css │ ├── tether-theme-arrows-dark.min.css │ ├── tether-theme-arrows.css │ ├── tether-theme-arrows.min.css │ ├── tether-theme-basic.css │ ├── tether-theme-basic.min.css │ ├── tether.css │ └── tether.min.css │ └── js │ ├── tether.js │ └── tether.min.js ├── lang └── en │ ├── labels.php │ ├── messages.php │ └── validation.php └── views ├── .gitkeep ├── account └── form.blade.php ├── auth ├── forgot_password.blade.php ├── login.blade.php └── reset_password.blade.php ├── blogs ├── articles │ ├── form.blade.php │ ├── list.blade.php │ ├── modals │ │ ├── add_content_area.blade.php │ │ └── select_thumbnail_image.blade.php │ ├── partials │ │ └── search_filters.blade.php │ └── templates │ │ └── content_area.php ├── categories │ ├── form.blade.php │ └── list.blade.php └── view │ ├── article.blade.php │ ├── list.blade.php │ └── partials │ ├── article.blade.php │ └── nav │ ├── articles.blade.php │ └── categories.blade.php ├── content ├── files │ ├── form.blade.php │ ├── list.blade.php │ └── partials │ │ └── search_filters.blade.php ├── layout_templates │ ├── form.blade.php │ └── list.blade.php ├── menus │ ├── form.blade.php │ ├── list.blade.php │ └── templates │ │ └── menu_item.php └── pages │ ├── form.blade.php │ ├── inserts │ └── form_contact.blade.php │ ├── list.blade.php │ ├── modals │ └── add_content_area.blade.php │ ├── templates │ └── content_area.php │ └── view.blade.php ├── core └── dashboard.blade.php ├── layouts ├── master.blade.php └── public.blade.php ├── media ├── items │ ├── form.blade.php │ ├── list.blade.php │ └── partials │ │ └── search_filters.blade.php ├── sets │ ├── form.blade.php │ ├── list.blade.php │ ├── modals │ │ └── add_item.blade.php │ └── templates │ │ └── item.php ├── types │ ├── form.blade.php │ └── list.blade.php └── view │ ├── item.blade.php │ ├── list.blade.php │ └── partials │ ├── image_gallery.blade.php │ ├── item.blade.php │ ├── item_content.blade.php │ ├── list.blade.php │ └── nav │ ├── items.blade.php │ ├── sets.blade.php │ └── types.blade.php ├── partials ├── content_table.blade.php ├── embedded │ ├── disqus.blade.php │ ├── soundcloud.blade.php │ ├── vimeo.blade.php │ └── youtube.blade.php ├── footer.blade.php ├── header.blade.php ├── image_settings.blade.php ├── included_files.blade.php ├── markdown_preview.blade.php ├── menu.blade.php ├── menu_item.blade.php ├── messages.blade.php ├── modal.blade.php ├── modals │ ├── markdown_guide.blade.php │ └── select_file_media_item.blade.php ├── nav │ ├── side.blade.php │ └── top.blade.php ├── pagination.blade.php ├── search.blade.php └── search_pagination.blade.php ├── public └── partials │ ├── comments.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ ├── included_files.blade.php │ ├── latest_content.blade.php │ ├── messages.blade.php │ ├── meta.blade.php │ ├── nav.blade.php │ ├── pagination.blade.php │ └── share.blade.php ├── settings └── list.blade.php └── users ├── activity └── list.blade.php ├── form.blade.php ├── list.blade.php ├── permissions ├── form.blade.php ├── list.blade.php └── partials │ ├── tree.blade.php │ └── tree_legend.blade.php └── roles ├── form.blade.php └── list.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/composer.lock -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/readme.md -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /src/Commands/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Commands/Install.php -------------------------------------------------------------------------------- /src/Controllers/Auth/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Auth/AccountController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /src/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/BaseController.php -------------------------------------------------------------------------------- /src/Controllers/Blogs/ArticlesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Blogs/ArticlesController.php -------------------------------------------------------------------------------- /src/Controllers/Blogs/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Blogs/BaseController.php -------------------------------------------------------------------------------- /src/Controllers/Blogs/BlogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Blogs/BlogsController.php -------------------------------------------------------------------------------- /src/Controllers/Blogs/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Blogs/CategoriesController.php -------------------------------------------------------------------------------- /src/Controllers/Blogs/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Blogs/ViewController.php -------------------------------------------------------------------------------- /src/Controllers/Content/FilesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Content/FilesController.php -------------------------------------------------------------------------------- /src/Controllers/Content/LayoutTemplatesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Content/LayoutTemplatesController.php -------------------------------------------------------------------------------- /src/Controllers/Content/MenusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Content/MenusController.php -------------------------------------------------------------------------------- /src/Controllers/Content/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Content/PagesController.php -------------------------------------------------------------------------------- /src/Controllers/General/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/General/ApiController.php -------------------------------------------------------------------------------- /src/Controllers/General/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/General/DashboardController.php -------------------------------------------------------------------------------- /src/Controllers/General/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/General/SettingsController.php -------------------------------------------------------------------------------- /src/Controllers/Media/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/BaseController.php -------------------------------------------------------------------------------- /src/Controllers/Media/ItemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/ItemsController.php -------------------------------------------------------------------------------- /src/Controllers/Media/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/MediaController.php -------------------------------------------------------------------------------- /src/Controllers/Media/SetsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/SetsController.php -------------------------------------------------------------------------------- /src/Controllers/Media/TypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/TypesController.php -------------------------------------------------------------------------------- /src/Controllers/Media/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Media/ViewController.php -------------------------------------------------------------------------------- /src/Controllers/Users/ActivityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Users/ActivityController.php -------------------------------------------------------------------------------- /src/Controllers/Users/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Users/BaseController.php -------------------------------------------------------------------------------- /src/Controllers/Users/PermissionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Users/PermissionsController.php -------------------------------------------------------------------------------- /src/Controllers/Users/RolesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Users/RolesController.php -------------------------------------------------------------------------------- /src/Controllers/Users/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Controllers/Users/UsersController.php -------------------------------------------------------------------------------- /src/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Facade.php -------------------------------------------------------------------------------- /src/Fractal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Fractal.php -------------------------------------------------------------------------------- /src/FractalServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/FractalServiceProvider.php -------------------------------------------------------------------------------- /src/Libraries/ArrayFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Libraries/ArrayFile.php -------------------------------------------------------------------------------- /src/Libraries/LoadConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Libraries/LoadConfiguration.php -------------------------------------------------------------------------------- /src/Libraries/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Libraries/Reports.php -------------------------------------------------------------------------------- /src/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Middleware/Authenticate.php -------------------------------------------------------------------------------- /src/Models/Blog/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Blog/Article.php -------------------------------------------------------------------------------- /src/Models/Blog/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Blog/Blog.php -------------------------------------------------------------------------------- /src/Models/Blog/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Blog/Category.php -------------------------------------------------------------------------------- /src/Models/Blog/ContentArea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Blog/ContentArea.php -------------------------------------------------------------------------------- /src/Models/Content/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/Area.php -------------------------------------------------------------------------------- /src/Models/Content/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/Download.php -------------------------------------------------------------------------------- /src/Models/Content/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/File.php -------------------------------------------------------------------------------- /src/Models/Content/FileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/FileType.php -------------------------------------------------------------------------------- /src/Models/Content/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/Form.php -------------------------------------------------------------------------------- /src/Models/Content/LayoutTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/LayoutTemplate.php -------------------------------------------------------------------------------- /src/Models/Content/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/Menu.php -------------------------------------------------------------------------------- /src/Models/Content/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/MenuItem.php -------------------------------------------------------------------------------- /src/Models/Content/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/Page.php -------------------------------------------------------------------------------- /src/Models/Content/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Content/View.php -------------------------------------------------------------------------------- /src/Models/General/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/General/Setting.php -------------------------------------------------------------------------------- /src/Models/Media/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Media/Item.php -------------------------------------------------------------------------------- /src/Models/Media/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Media/Set.php -------------------------------------------------------------------------------- /src/Models/Media/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Media/Type.php -------------------------------------------------------------------------------- /src/Models/Record/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/Record/Form.php -------------------------------------------------------------------------------- /src/Models/User/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/User/Activity.php -------------------------------------------------------------------------------- /src/Models/User/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/User/Permission.php -------------------------------------------------------------------------------- /src/Models/User/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/User/Role.php -------------------------------------------------------------------------------- /src/Models/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Models/User/User.php -------------------------------------------------------------------------------- /src/Traits/Publishable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/Traits/Publishable.php -------------------------------------------------------------------------------- /src/config/auth.routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/config/auth.routes.php -------------------------------------------------------------------------------- /src/config/blogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/config/blogs.php -------------------------------------------------------------------------------- /src/config/cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regulus343/Fractal/HEAD/src/config/cms.php -------------------------------------------------------------------------------- /src/config/cms_settings.php: -------------------------------------------------------------------------------- 1 |