├── Plugin.php ├── README.md ├── assets └── css │ └── main.css ├── controllers ├── Groups.php ├── Properties.php ├── groups │ ├── _field_properties.htm │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── create.htm │ ├── index.htm │ ├── preview.htm │ └── update.htm └── properties │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── preview.htm │ ├── reorder.htm │ └── update.htm ├── docs ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── lang ├── en │ └── lang.php └── ru │ └── lang.php ├── models ├── Group.php ├── Property.php ├── group │ ├── columns.yaml │ └── fields.yaml └── property │ ├── columns.yaml │ └── fields.yaml ├── plugin.yaml └── updates ├── builder_table_create_shohabbos_customfields_groups.php ├── builder_table_create_shohabbos_customfields_properties.php ├── builder_table_update_shohabbos_customfields_groups.php ├── builder_table_update_shohabbos_customfields_groups_2.php ├── builder_table_update_shohabbos_customfields_groups_3.php ├── builder_table_update_shohabbos_customfields_groups_4.php ├── builder_table_update_shohabbos_customfields_properties.php ├── builder_table_update_shohabbos_customfields_properties_10.php ├── builder_table_update_shohabbos_customfields_properties_11.php ├── builder_table_update_shohabbos_customfields_properties_12.php ├── builder_table_update_shohabbos_customfields_properties_2.php ├── builder_table_update_shohabbos_customfields_properties_3.php ├── builder_table_update_shohabbos_customfields_properties_4.php ├── builder_table_update_shohabbos_customfields_properties_5.php ├── builder_table_update_shohabbos_customfields_properties_6.php ├── builder_table_update_shohabbos_customfields_properties_7.php ├── builder_table_update_shohabbos_customfields_properties_8.php ├── builder_table_update_shohabbos_customfields_properties_9.php └── version.yaml /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | .secondary-tabs .custom-field { 2 | padding: 20px; 3 | } -------------------------------------------------------------------------------- /controllers/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/Groups.php -------------------------------------------------------------------------------- /controllers/Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/Properties.php -------------------------------------------------------------------------------- /controllers/groups/_field_properties.htm: -------------------------------------------------------------------------------- 1 | relationRender('properties') ?> -------------------------------------------------------------------------------- /controllers/groups/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/groups/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/config_form.yaml -------------------------------------------------------------------------------- /controllers/groups/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/config_list.yaml -------------------------------------------------------------------------------- /controllers/groups/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/config_relation.yaml -------------------------------------------------------------------------------- /controllers/groups/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/create.htm -------------------------------------------------------------------------------- /controllers/groups/index.htm: -------------------------------------------------------------------------------- 1 | listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/groups/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/preview.htm -------------------------------------------------------------------------------- /controllers/groups/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/groups/update.htm -------------------------------------------------------------------------------- /controllers/properties/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/properties/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/properties/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/config_form.yaml -------------------------------------------------------------------------------- /controllers/properties/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/config_list.yaml -------------------------------------------------------------------------------- /controllers/properties/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/properties/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/create.htm -------------------------------------------------------------------------------- /controllers/properties/index.htm: -------------------------------------------------------------------------------- 1 | listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/properties/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/preview.htm -------------------------------------------------------------------------------- /controllers/properties/reorder.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/reorder.htm -------------------------------------------------------------------------------- /controllers/properties/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/controllers/properties/update.htm -------------------------------------------------------------------------------- /docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/docs/1.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/docs/2.png -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/docs/4.png -------------------------------------------------------------------------------- /docs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/docs/5.png -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /lang/ru/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/lang/ru/lang.php -------------------------------------------------------------------------------- /models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/Group.php -------------------------------------------------------------------------------- /models/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/Property.php -------------------------------------------------------------------------------- /models/group/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/group/columns.yaml -------------------------------------------------------------------------------- /models/group/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/group/fields.yaml -------------------------------------------------------------------------------- /models/property/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/property/columns.yaml -------------------------------------------------------------------------------- /models/property/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/models/property/fields.yaml -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/plugin.yaml -------------------------------------------------------------------------------- /updates/builder_table_create_shohabbos_customfields_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_create_shohabbos_customfields_groups.php -------------------------------------------------------------------------------- /updates/builder_table_create_shohabbos_customfields_properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_create_shohabbos_customfields_properties.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_groups.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_groups_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_groups_2.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_groups_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_groups_3.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_groups_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_groups_4.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_10.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_11.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_12.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_2.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_3.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_4.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_5.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_6.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_7.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_8.php -------------------------------------------------------------------------------- /updates/builder_table_update_shohabbos_customfields_properties_9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/builder_table_update_shohabbos_customfields_properties_9.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoxabbos/oc-customfields-plugin/HEAD/updates/version.yaml --------------------------------------------------------------------------------