├── LICENCE ├── README.md ├── docs ├── 0-index.md ├── 1-usage.md └── 2-hooks.md ├── pimpmymatrix ├── PimpMyMatrixPlugin.php ├── controllers │ ├── PimpMyMatrixController.php │ └── PimpMyMatrix_BlockTypesController.php ├── migrations │ ├── m151016_151424_pimpmymatrix_add_block_types_table.php │ └── m151027_103010_pimpmymatrix_migrate_old_settings.php ├── models │ └── PimpMyMatrix_BlockTypeModel.php ├── records │ └── PimpMyMatrix_BlockTypeRecord.php ├── resources │ ├── css │ │ └── pimpmymatrix.css │ ├── icon-mask.svg │ ├── icon.svg │ └── js │ │ ├── blocktypefieldlayoutdesigner.js │ │ ├── configurator.js │ │ ├── fieldmanipulator.js │ │ └── groupsdesigner.js ├── services │ ├── PimpMyMatrixService.php │ └── PimpMyMatrix_BlockTypesService.php └── templates │ ├── _index.twig │ └── flds │ ├── configurator.twig │ └── fields.twig └── release-notes.json /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/README.md -------------------------------------------------------------------------------- /docs/0-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/docs/0-index.md -------------------------------------------------------------------------------- /docs/1-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/docs/1-usage.md -------------------------------------------------------------------------------- /docs/2-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/docs/2-hooks.md -------------------------------------------------------------------------------- /pimpmymatrix/PimpMyMatrixPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/PimpMyMatrixPlugin.php -------------------------------------------------------------------------------- /pimpmymatrix/controllers/PimpMyMatrixController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/controllers/PimpMyMatrixController.php -------------------------------------------------------------------------------- /pimpmymatrix/controllers/PimpMyMatrix_BlockTypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/controllers/PimpMyMatrix_BlockTypesController.php -------------------------------------------------------------------------------- /pimpmymatrix/migrations/m151016_151424_pimpmymatrix_add_block_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/migrations/m151016_151424_pimpmymatrix_add_block_types_table.php -------------------------------------------------------------------------------- /pimpmymatrix/migrations/m151027_103010_pimpmymatrix_migrate_old_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/migrations/m151027_103010_pimpmymatrix_migrate_old_settings.php -------------------------------------------------------------------------------- /pimpmymatrix/models/PimpMyMatrix_BlockTypeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/models/PimpMyMatrix_BlockTypeModel.php -------------------------------------------------------------------------------- /pimpmymatrix/records/PimpMyMatrix_BlockTypeRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/records/PimpMyMatrix_BlockTypeRecord.php -------------------------------------------------------------------------------- /pimpmymatrix/resources/css/pimpmymatrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/css/pimpmymatrix.css -------------------------------------------------------------------------------- /pimpmymatrix/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/icon-mask.svg -------------------------------------------------------------------------------- /pimpmymatrix/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/icon.svg -------------------------------------------------------------------------------- /pimpmymatrix/resources/js/blocktypefieldlayoutdesigner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/js/blocktypefieldlayoutdesigner.js -------------------------------------------------------------------------------- /pimpmymatrix/resources/js/configurator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/js/configurator.js -------------------------------------------------------------------------------- /pimpmymatrix/resources/js/fieldmanipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/js/fieldmanipulator.js -------------------------------------------------------------------------------- /pimpmymatrix/resources/js/groupsdesigner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/resources/js/groupsdesigner.js -------------------------------------------------------------------------------- /pimpmymatrix/services/PimpMyMatrixService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/services/PimpMyMatrixService.php -------------------------------------------------------------------------------- /pimpmymatrix/services/PimpMyMatrix_BlockTypesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/services/PimpMyMatrix_BlockTypesService.php -------------------------------------------------------------------------------- /pimpmymatrix/templates/_index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/templates/_index.twig -------------------------------------------------------------------------------- /pimpmymatrix/templates/flds/configurator.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/templates/flds/configurator.twig -------------------------------------------------------------------------------- /pimpmymatrix/templates/flds/fields.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/pimpmymatrix/templates/flds/fields.twig -------------------------------------------------------------------------------- /release-notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angell-co/Pimp-My-Matrix/HEAD/release-notes.json --------------------------------------------------------------------------------