All Projects → IchHabRecht → mask_export

IchHabRecht / mask_export

Licence: GPL-2.0 license
Export your mask elements as extension

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mask export

content defender
Define allowed or denied content element types in your backend layouts
Stars: ✭ 63 (+40%)
Mutual labels:  content, typo3-cms, typo3, typo3-extension
schema
TYPO3 extension providing an API and view helpers for schema.org markup
Stars: ✭ 19 (-57.78%)
Mutual labels:  typo3-cms, typo3, typo3-extension
typo3v10 example sitepackage
Site package extension for TYPO3 10 feature demonstration
Stars: ✭ 13 (-71.11%)
Mutual labels:  typo3-cms, typo3, typo3-extension
in2publish core
in2publish Community Version
Stars: ✭ 38 (-15.56%)
Mutual labels:  content, typo3, typo3-extension
t3extblog
A record based blog extension for TYPO3 CMS powered by Extbase / Fluid. Flexible and powerful!
Stars: ✭ 30 (-33.33%)
Mutual labels:  typo3-cms, typo3
aus driver amazon s3
Provides a TYPO3 FAL driver for the Amazon Web Service S3
Stars: ✭ 15 (-66.67%)
Mutual labels:  typo3, typo3-extension
Vue Gl
Vue.js components rendering 3D WebGL graphics reactively with three.js
Stars: ✭ 434 (+864.44%)
Mutual labels:  custom, element
Made With Love
🚀 An experimental project which demonstrates an Angular Package which contains Angular Elements and Schematics
Stars: ✭ 67 (+48.89%)
Mutual labels:  custom, element
form examples
TYPO3 extension. Ships several examples for the TYPO3 Form Framework, e.g. an upload form or a custom email template with personalized salutation. Includes translation examples (both global and specific).
Stars: ✭ 30 (-33.33%)
Mutual labels:  typo3, typo3-extension
Document Register Element
A stand-alone working lightweight version of the W3C Custom Elements specification
Stars: ✭ 1,123 (+2395.56%)
Mutual labels:  custom, element
skeleton-loader
Loader module for webpack to execute your custom procedure. It works as your custom loader.
Stars: ✭ 19 (-57.78%)
Mutual labels:  content, custom
urlguard
TYPO3 extension urlguard. Allows to define what query parameters will be passed to newly created typolinks.
Stars: ✭ 16 (-64.44%)
Mutual labels:  typo3, typo3-extension
autoloader
⚙️ Best TYPO3 Swiss Army knife ever ⚙️
Stars: ✭ 22 (-51.11%)
Mutual labels:  typo3, typo3-extension
randomdata
TYPO3 extensions to generate new random data or replace existing data with random data
Stars: ✭ 14 (-68.89%)
Mutual labels:  typo3, typo3-extension
Shapeofview
Give a custom shape to any android view, Material Design 2 ready
Stars: ✭ 2,977 (+6515.56%)
Mutual labels:  custom, mask
restrictfe
TYPO3 extension restrictfe. Blocks access to frontend and allows to show it only to some defined exception's like if the request is from an authorized backend user, has specific IP, header etc.
Stars: ✭ 12 (-73.33%)
Mutual labels:  typo3, typo3-extension
fluid-components
Encapsulated frontend components with Fluid's ViewHelper syntax for TYPO3
Stars: ✭ 41 (-8.89%)
Mutual labels:  typo3, typo3-extension
t3x-rte ckeditor image
Image support in CKEditor for the TYPO3 ecosystem
Stars: ✭ 43 (-4.44%)
Mutual labels:  typo3, typo3-extension
docker-typo3
Environment to develop and run TYPO3 in Docker containers
Stars: ✭ 16 (-64.44%)
Mutual labels:  typo3-cms, typo3
rest
REST webservices for TYPO3 CMS
Stars: ✭ 78 (+73.33%)
Mutual labels:  typo3-cms, typo3

TYPO3 Extension mask_export

Latest Stable Version Build Status StyleCI

Want to create new content elements the easy way?

Use mask and its drag & drop wizard to create content elements the easy way.

Use mask_export to export the content elements into an own extension.

Why

A content element needs some TCA information, TypoScript and database configuration and template files. Actually there is no need to depend on any third party extension when dealing with content elements.

But you don't want to deal with different information in different files and folders. You want to be able to concentrate on what is necessary for the user, not how it has to be implemented in your TYPO3 CMS.

By using mask and mask_export you can do exactly this! Simply create your own content elements by using a drag & drop wizard. Add fields, repeating items, nested content elements within minutes.

Why not

Mask offers an easy way to create content elements but has some disadvantage when you need to take care about performance. Especially the frontend rendering can take at lot of time for uncached pages. Instead of relying on TYPO3 CMS core rendering, all elements are rendered by an own Extbase Controller. As this was needed to support former version of TYPO3 CMS, it was deprecated with the introduction of fluid_styled_content and the concepts of DataProcessors in TYPO 7 LTS.

This is what mask_export is developed for. It takes the content element information from the mask configuration and generates the needed code to get those elements to work with pure TYPO3 CMS core functionality out of the box. It bundles all necessary information into an own extension that can be installed and used in every other TYPO3 CMS system.

Installation

Simply install mask and mask_export with Composer or the Extension Manager.

composer require ichhabrecht/mask-export

Usage

  • use the mask wizard to configure own content elements
  • change to tab "Code Export"
  • if you like change the extension key, the default one is my_mask_export
  • either install or download your extension

Best practise

It is recommended to not touch the generated export extension. Instead you should add necessary changes and your own templates into a site package.

This ensures you can edit your content elements within the mask wizard (add further content elements, change settings) and still be able to use the new extension version in your existing system.

You can find some common configuration in the my_maskexport_sitepackage example site package.

Furthermore you can refer to the slides CCE (Custom Content Elements) - Best Practice for additional information.

Community

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].