Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Pennebaker/craftcms-thearchitect
CraftCMS plugin to generate content models from JSON data.
https://github.com/Pennebaker/craftcms-thearchitect
craft-cms-plugin craft-plugin craftcms-plugin
Last synced: about 1 month ago
JSON representation
CraftCMS plugin to generate content models from JSON data.
- Host: GitHub
- URL: https://github.com/Pennebaker/craftcms-thearchitect
- Owner: Pennebaker
- License: mit
- Created: 2016-02-10T23:09:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-27T12:24:57.000Z (over 1 year ago)
- Last Synced: 2024-08-03T11:02:30.202Z (5 months ago)
- Topics: craft-cms-plugin, craft-plugin, craftcms-plugin
- Language: PHP
- Homepage:
- Size: 547 KB
- Stars: 171
- Watchers: 13
- Forks: 9
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Looking for? [Architect for Craft 3/4](https://github.com/Pennebaker/craft-architect)
![The Architect](/the-architect.png?raw=true)
# The Architect for [Craft CMS](http://buildwithcraft.com/)CraftCMS Plugin to Construct Groups, Fields, Sections, EntryTypes, Transforms, Globals, Assets, Categories, and Users & User Groups from JSON data.
## Installation
1. Move the `thearchitect` directory into your `craft/plugins` directory.
2. Go to Settings > Plugins from your Craft control panel and enable the `thearchitect` pluginExample files can be found in the `library` directory
## Exported Constructs
If you want to provide json files to be loaded throught the CP. Put the files in `craft/config/thearchitect`. If using a version prior to v1.6.0 the folder for these files is `craft/plugins/thearchitect/content`. This path is also configurable by creating a config file at `craft/config/thearchitect.php`
```php
'modelsPath' => str_replace('plugins', 'config', __dir__.'/'),
```## Migration File
The migration file is named `_master_.json` and located inside the folder with the other json files listed above. Migration files are intended to be used within a single site. They are not intended to transfer content models between websites.## Rollback
As of version 1.6.0, if Craft crashes with an exception, the Architect will attempt to roll back any changes that were made to the database for the operation. This should help prevent any issues that might appear from a partial import. If an exception happens please report them to on the [repo's issues](https://github.com/Pennebaker/craftcms-thearchitect/issues). A backup that was created during a migration that was successfully imported will be delete. Otherwise you can find the db backup inside `craft/storage/backups`. This is in case the rollback feature doesn't restore properly. It is not recommended to rely on this auto backup/restore feature.## JSON Schema
The example / syntax schemas are located on the [Repo's Wiki](https://github.com/Pennebaker/craftcms-thearchitect/wiki)If you're using the [Atom text editor](https://atom.io/), you can download a [snippet library](https://github.com/Emkaytoo/craft-json-snippets) to help speed up your writing custom models for the plugin.
## Field Layouts using names instead of handles
If you have some field layouts that use names this functionality was dropped in version 1.0.3. Alternatively you can update your old models to use handles to fix them for newer versions.*Special thanks to [Shannon Threadgill](https://dribbble.com/threadgillthunder) for his totally boss illustrations.*