├── README.md ├── asset-paths ├── custom-paths-for-assets.php └── full-paths-for-assets.php ├── auto-resize-assets └── bootstrap.php ├── cli ├── assets-folder-import.php ├── create-lang.php ├── get-triggers.php └── get-triggers_list-of-events.md ├── cockpit-cms-Migrate ├── Controller │ └── Admin.php ├── Helper │ ├── Cleanup.php │ ├── Convert.php │ ├── Migrate.php │ └── TransformFields.php ├── LICENSE ├── README.md ├── admin.php ├── bootstrap.php ├── composer.json ├── icon.svg └── views │ ├── v1 │ ├── index.php │ └── partials │ │ └── settings.php │ └── v2 │ └── index.php ├── custom-api-endpoints ├── auth.php ├── count.php ├── jekyll.php ├── listModules.php └── listUsers.php ├── custom-fields ├── README.md ├── field-collectionlink.md ├── field-collectionlink.tag ├── field-customset.tag ├── field-date-range.tag ├── field-key-value-pair.md ├── field-key-value-pair.tag ├── field-layout-grid.md ├── field-layout-grid.tag ├── field-seo.md ├── field-seo.tag ├── field-set-advanced.tag ├── field-simple-gallery.md ├── field-simple-gallery.tag ├── field-simple-repeater.md ├── field-simple-repeater.tag ├── field-tags-autoupdate.md └── field-tags-autoupdate.tag ├── custom-renderers └── README.md ├── debugging └── debug_info.md ├── defines └── README.md ├── development-notes ├── cockpit_model_2.png ├── cockpit_model_white-bg.png ├── constants-and-paths.html ├── constants-and-paths.md └── how-to-create-addon-basics.md ├── disable-api └── bootstrap.php ├── disable-dashboard-time-widget └── bootstrap.php ├── disable-resource-lock └── bootstrap.php ├── filter-collection-links └── bootstrap.php ├── form-validation └── contact.php ├── install-cockpit-on-strato └── install.sh ├── migrate-from-cockpit-v1-to-v2.md ├── notes └── README.md ├── permissions ├── check-if-field-is-unique.php ├── hide-fields-for-non-admins.php ├── restrict-content-to-owner-and-disallow-editing-published-entries.php └── restrict-content-to-owner.php ├── restrict-built-in-helpers └── bootstrap.php ├── skip-login └── bootstrap.php ├── ui-tweaks ├── multilingual-search-results.php └── set-default-tab-in-entry-view.php ├── unique-slugs └── bootstrap.php └── use-cockpit-as-library └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/README.md -------------------------------------------------------------------------------- /asset-paths/custom-paths-for-assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/asset-paths/custom-paths-for-assets.php -------------------------------------------------------------------------------- /asset-paths/full-paths-for-assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/asset-paths/full-paths-for-assets.php -------------------------------------------------------------------------------- /auto-resize-assets/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/auto-resize-assets/bootstrap.php -------------------------------------------------------------------------------- /cli/assets-folder-import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cli/assets-folder-import.php -------------------------------------------------------------------------------- /cli/create-lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cli/create-lang.php -------------------------------------------------------------------------------- /cli/get-triggers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cli/get-triggers.php -------------------------------------------------------------------------------- /cli/get-triggers_list-of-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cli/get-triggers_list-of-events.md -------------------------------------------------------------------------------- /cockpit-cms-Migrate/Controller/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/Controller/Admin.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/Helper/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/Helper/Cleanup.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/Helper/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/Helper/Convert.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/Helper/Migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/Helper/Migrate.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/Helper/TransformFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/Helper/TransformFields.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/LICENSE -------------------------------------------------------------------------------- /cockpit-cms-Migrate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/README.md -------------------------------------------------------------------------------- /cockpit-cms-Migrate/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/admin.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/bootstrap.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/composer.json -------------------------------------------------------------------------------- /cockpit-cms-Migrate/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/icon.svg -------------------------------------------------------------------------------- /cockpit-cms-Migrate/views/v1/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/views/v1/index.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/views/v1/partials/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/views/v1/partials/settings.php -------------------------------------------------------------------------------- /cockpit-cms-Migrate/views/v2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/cockpit-cms-Migrate/views/v2/index.php -------------------------------------------------------------------------------- /custom-api-endpoints/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-api-endpoints/auth.php -------------------------------------------------------------------------------- /custom-api-endpoints/count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-api-endpoints/count.php -------------------------------------------------------------------------------- /custom-api-endpoints/jekyll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-api-endpoints/jekyll.php -------------------------------------------------------------------------------- /custom-api-endpoints/listModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-api-endpoints/listModules.php -------------------------------------------------------------------------------- /custom-api-endpoints/listUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-api-endpoints/listUsers.php -------------------------------------------------------------------------------- /custom-fields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/README.md -------------------------------------------------------------------------------- /custom-fields/field-collectionlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-collectionlink.md -------------------------------------------------------------------------------- /custom-fields/field-collectionlink.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-collectionlink.tag -------------------------------------------------------------------------------- /custom-fields/field-customset.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-customset.tag -------------------------------------------------------------------------------- /custom-fields/field-date-range.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-date-range.tag -------------------------------------------------------------------------------- /custom-fields/field-key-value-pair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-key-value-pair.md -------------------------------------------------------------------------------- /custom-fields/field-key-value-pair.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-key-value-pair.tag -------------------------------------------------------------------------------- /custom-fields/field-layout-grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-layout-grid.md -------------------------------------------------------------------------------- /custom-fields/field-layout-grid.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-layout-grid.tag -------------------------------------------------------------------------------- /custom-fields/field-seo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-seo.md -------------------------------------------------------------------------------- /custom-fields/field-seo.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-seo.tag -------------------------------------------------------------------------------- /custom-fields/field-set-advanced.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-set-advanced.tag -------------------------------------------------------------------------------- /custom-fields/field-simple-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-simple-gallery.md -------------------------------------------------------------------------------- /custom-fields/field-simple-gallery.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-simple-gallery.tag -------------------------------------------------------------------------------- /custom-fields/field-simple-repeater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-simple-repeater.md -------------------------------------------------------------------------------- /custom-fields/field-simple-repeater.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-simple-repeater.tag -------------------------------------------------------------------------------- /custom-fields/field-tags-autoupdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-tags-autoupdate.md -------------------------------------------------------------------------------- /custom-fields/field-tags-autoupdate.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-fields/field-tags-autoupdate.tag -------------------------------------------------------------------------------- /custom-renderers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/custom-renderers/README.md -------------------------------------------------------------------------------- /debugging/debug_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/debugging/debug_info.md -------------------------------------------------------------------------------- /defines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/defines/README.md -------------------------------------------------------------------------------- /development-notes/cockpit_model_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/development-notes/cockpit_model_2.png -------------------------------------------------------------------------------- /development-notes/cockpit_model_white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/development-notes/cockpit_model_white-bg.png -------------------------------------------------------------------------------- /development-notes/constants-and-paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/development-notes/constants-and-paths.html -------------------------------------------------------------------------------- /development-notes/constants-and-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/development-notes/constants-and-paths.md -------------------------------------------------------------------------------- /development-notes/how-to-create-addon-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/development-notes/how-to-create-addon-basics.md -------------------------------------------------------------------------------- /disable-api/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/disable-api/bootstrap.php -------------------------------------------------------------------------------- /disable-dashboard-time-widget/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/disable-dashboard-time-widget/bootstrap.php -------------------------------------------------------------------------------- /disable-resource-lock/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/disable-resource-lock/bootstrap.php -------------------------------------------------------------------------------- /filter-collection-links/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/filter-collection-links/bootstrap.php -------------------------------------------------------------------------------- /form-validation/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/form-validation/contact.php -------------------------------------------------------------------------------- /install-cockpit-on-strato/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/install-cockpit-on-strato/install.sh -------------------------------------------------------------------------------- /migrate-from-cockpit-v1-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/migrate-from-cockpit-v1-to-v2.md -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/notes/README.md -------------------------------------------------------------------------------- /permissions/check-if-field-is-unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/permissions/check-if-field-is-unique.php -------------------------------------------------------------------------------- /permissions/hide-fields-for-non-admins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/permissions/hide-fields-for-non-admins.php -------------------------------------------------------------------------------- /permissions/restrict-content-to-owner-and-disallow-editing-published-entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/permissions/restrict-content-to-owner-and-disallow-editing-published-entries.php -------------------------------------------------------------------------------- /permissions/restrict-content-to-owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/permissions/restrict-content-to-owner.php -------------------------------------------------------------------------------- /restrict-built-in-helpers/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/restrict-built-in-helpers/bootstrap.php -------------------------------------------------------------------------------- /skip-login/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/skip-login/bootstrap.php -------------------------------------------------------------------------------- /ui-tweaks/multilingual-search-results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/ui-tweaks/multilingual-search-results.php -------------------------------------------------------------------------------- /ui-tweaks/set-default-tab-in-entry-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/ui-tweaks/set-default-tab-in-entry-view.php -------------------------------------------------------------------------------- /unique-slugs/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/unique-slugs/bootstrap.php -------------------------------------------------------------------------------- /use-cockpit-as-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelj/cockpit-scripts/HEAD/use-cockpit-as-library/README.md --------------------------------------------------------------------------------