├── .gitignore ├── LICENSE ├── Plugin.php ├── README.md ├── components ├── Categories.php ├── CategoryDetail.php ├── RecordDetail.php ├── Records.php ├── TagDetail.php ├── Tags.php ├── categories │ └── default.htm ├── categorydetail │ └── default.htm ├── recorddetail │ └── default.htm ├── records │ └── default.htm ├── tagdetail │ └── default.htm └── tags │ └── default.htm ├── composer.json ├── controllers ├── Areas.php ├── Attributes.php ├── Categories.php ├── Records.php ├── Tags.php ├── areas │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_import_export.yaml │ ├── config_list.yaml │ ├── create.htm │ ├── export.htm │ ├── import.htm │ ├── index.htm │ ├── reorder.htm │ └── update.htm ├── attributes │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── reorder.htm │ └── update.htm ├── categories │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_form.yaml │ ├── config_import_export.yaml │ ├── config_list.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── export.htm │ ├── import.htm │ ├── index.htm │ ├── reorder.htm │ └── update.htm ├── records │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_filter.yaml │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── preview.htm │ ├── reorder.htm │ └── update.htm ├── relations │ ├── areas.htm │ ├── attributes.htm │ ├── categories.htm │ └── records.htm └── tags │ ├── _list_toolbar.htm │ ├── _reorder_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_reorder.yaml │ ├── create.htm │ ├── index.htm │ ├── reorder.htm │ └── update.htm ├── lang ├── cs │ └── lang.php ├── en │ └── lang.php ├── ro │ └── lang.php ├── ru │ └── lang.php └── sl │ └── lang.php ├── models ├── Area.php ├── Attribute.php ├── Category.php ├── CategoryExport.php ├── CategoryImport.php ├── Record.php ├── RecordExport.php ├── RecordImport.php ├── Settings.php ├── Tag.php ├── area │ ├── columns.yaml │ └── fields.yaml ├── attribute │ ├── _value_column.htm │ ├── columns.yaml │ ├── columns_relation.yaml │ ├── fields.yaml │ └── fields_relation.yaml ├── category │ ├── columns.yaml │ └── fields.yaml ├── categoryimport │ └── fields.yaml ├── record │ ├── columns.yaml │ ├── columns_import.yaml │ └── fields.yaml ├── recordexport │ └── fields.yaml ├── recordimport │ └── fields.yaml ├── settings │ └── fields.yaml └── tag │ ├── columns.yaml │ └── fields.yaml └── updates ├── sr-update-01.php ├── sr-update-02.php ├── sr-update-03.php ├── sr-update-04.php ├── sr-update-05.php ├── sr-update-06.php ├── sr-update-07.php ├── sr-update-08.php ├── sr-update-09.php ├── sr-update-10.php ├── sr-update-11.php ├── sr-update-12.php ├── sr_tables.php └── version.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore files and folders: 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/README.md -------------------------------------------------------------------------------- /components/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/Categories.php -------------------------------------------------------------------------------- /components/CategoryDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/CategoryDetail.php -------------------------------------------------------------------------------- /components/RecordDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/RecordDetail.php -------------------------------------------------------------------------------- /components/Records.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/Records.php -------------------------------------------------------------------------------- /components/TagDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/TagDetail.php -------------------------------------------------------------------------------- /components/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/Tags.php -------------------------------------------------------------------------------- /components/categories/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/categories/default.htm -------------------------------------------------------------------------------- /components/categorydetail/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/categorydetail/default.htm -------------------------------------------------------------------------------- /components/recorddetail/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/recorddetail/default.htm -------------------------------------------------------------------------------- /components/records/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/records/default.htm -------------------------------------------------------------------------------- /components/tagdetail/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/tagdetail/default.htm -------------------------------------------------------------------------------- /components/tags/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/components/tags/default.htm -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/Areas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/Areas.php -------------------------------------------------------------------------------- /controllers/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/Attributes.php -------------------------------------------------------------------------------- /controllers/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/Categories.php -------------------------------------------------------------------------------- /controllers/Records.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/Records.php -------------------------------------------------------------------------------- /controllers/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/Tags.php -------------------------------------------------------------------------------- /controllers/areas/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/areas/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/config_form.yaml -------------------------------------------------------------------------------- /controllers/areas/config_import_export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/config_import_export.yaml -------------------------------------------------------------------------------- /controllers/areas/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/config_list.yaml -------------------------------------------------------------------------------- /controllers/areas/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/create.htm -------------------------------------------------------------------------------- /controllers/areas/export.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/export.htm -------------------------------------------------------------------------------- /controllers/areas/import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/import.htm -------------------------------------------------------------------------------- /controllers/areas/index.htm: -------------------------------------------------------------------------------- 1 | listRender('tree') ?> 2 | -------------------------------------------------------------------------------- /controllers/areas/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/areas/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/areas/update.htm -------------------------------------------------------------------------------- /controllers/attributes/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/attributes/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/attributes/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/config_form.yaml -------------------------------------------------------------------------------- /controllers/attributes/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/config_list.yaml -------------------------------------------------------------------------------- /controllers/attributes/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/attributes/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/create.htm -------------------------------------------------------------------------------- /controllers/attributes/index.htm: -------------------------------------------------------------------------------- 1 | 2 | listRender() ?> 3 | -------------------------------------------------------------------------------- /controllers/attributes/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/attributes/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/attributes/update.htm -------------------------------------------------------------------------------- /controllers/categories/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/categories/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/config_form.yaml -------------------------------------------------------------------------------- /controllers/categories/config_import_export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/config_import_export.yaml -------------------------------------------------------------------------------- /controllers/categories/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/config_list.yaml -------------------------------------------------------------------------------- /controllers/categories/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/categories/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/create.htm -------------------------------------------------------------------------------- /controllers/categories/export.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/export.htm -------------------------------------------------------------------------------- /controllers/categories/import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/import.htm -------------------------------------------------------------------------------- /controllers/categories/index.htm: -------------------------------------------------------------------------------- 1 | listRender('tree') ?> 2 | -------------------------------------------------------------------------------- /controllers/categories/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/categories/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/categories/update.htm -------------------------------------------------------------------------------- /controllers/records/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/records/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/records/config_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/config_filter.yaml -------------------------------------------------------------------------------- /controllers/records/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/config_form.yaml -------------------------------------------------------------------------------- /controllers/records/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/config_list.yaml -------------------------------------------------------------------------------- /controllers/records/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/config_relation.yaml -------------------------------------------------------------------------------- /controllers/records/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/records/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/create.htm -------------------------------------------------------------------------------- /controllers/records/index.htm: -------------------------------------------------------------------------------- 1 | listRender('default') ?> 2 | -------------------------------------------------------------------------------- /controllers/records/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/preview.htm -------------------------------------------------------------------------------- /controllers/records/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> -------------------------------------------------------------------------------- /controllers/records/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/records/update.htm -------------------------------------------------------------------------------- /controllers/relations/areas.htm: -------------------------------------------------------------------------------- 1 | relationRender('areas') ?> 2 | -------------------------------------------------------------------------------- /controllers/relations/attributes.htm: -------------------------------------------------------------------------------- 1 | relationRender('attributes') ?> 2 | -------------------------------------------------------------------------------- /controllers/relations/categories.htm: -------------------------------------------------------------------------------- 1 | relationRender('categories') ?> 2 | -------------------------------------------------------------------------------- /controllers/relations/records.htm: -------------------------------------------------------------------------------- 1 | relationRender('records') ?> 2 | -------------------------------------------------------------------------------- /controllers/tags/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/tags/_reorder_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/_reorder_toolbar.htm -------------------------------------------------------------------------------- /controllers/tags/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/config_form.yaml -------------------------------------------------------------------------------- /controllers/tags/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/config_list.yaml -------------------------------------------------------------------------------- /controllers/tags/config_reorder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/config_reorder.yaml -------------------------------------------------------------------------------- /controllers/tags/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/create.htm -------------------------------------------------------------------------------- /controllers/tags/index.htm: -------------------------------------------------------------------------------- 1 | listRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/tags/reorder.htm: -------------------------------------------------------------------------------- 1 | reorderRender() ?> 2 | -------------------------------------------------------------------------------- /controllers/tags/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/controllers/tags/update.htm -------------------------------------------------------------------------------- /lang/cs/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/lang/cs/lang.php -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /lang/ro/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/lang/ro/lang.php -------------------------------------------------------------------------------- /lang/ru/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/lang/ru/lang.php -------------------------------------------------------------------------------- /lang/sl/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/lang/sl/lang.php -------------------------------------------------------------------------------- /models/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Area.php -------------------------------------------------------------------------------- /models/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Attribute.php -------------------------------------------------------------------------------- /models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Category.php -------------------------------------------------------------------------------- /models/CategoryExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/CategoryExport.php -------------------------------------------------------------------------------- /models/CategoryImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/CategoryImport.php -------------------------------------------------------------------------------- /models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Record.php -------------------------------------------------------------------------------- /models/RecordExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/RecordExport.php -------------------------------------------------------------------------------- /models/RecordImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/RecordImport.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/Tag.php -------------------------------------------------------------------------------- /models/area/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/area/columns.yaml -------------------------------------------------------------------------------- /models/area/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/area/fields.yaml -------------------------------------------------------------------------------- /models/attribute/_value_column.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/attribute/_value_column.htm -------------------------------------------------------------------------------- /models/attribute/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/attribute/columns.yaml -------------------------------------------------------------------------------- /models/attribute/columns_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/attribute/columns_relation.yaml -------------------------------------------------------------------------------- /models/attribute/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/attribute/fields.yaml -------------------------------------------------------------------------------- /models/attribute/fields_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/attribute/fields_relation.yaml -------------------------------------------------------------------------------- /models/category/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/category/columns.yaml -------------------------------------------------------------------------------- /models/category/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/category/fields.yaml -------------------------------------------------------------------------------- /models/categoryimport/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/categoryimport/fields.yaml -------------------------------------------------------------------------------- /models/record/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/record/columns.yaml -------------------------------------------------------------------------------- /models/record/columns_import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/record/columns_import.yaml -------------------------------------------------------------------------------- /models/record/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/record/fields.yaml -------------------------------------------------------------------------------- /models/recordexport/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/recordexport/fields.yaml -------------------------------------------------------------------------------- /models/recordimport/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/recordimport/fields.yaml -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /models/tag/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/tag/columns.yaml -------------------------------------------------------------------------------- /models/tag/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/models/tag/fields.yaml -------------------------------------------------------------------------------- /updates/sr-update-01.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-01.php -------------------------------------------------------------------------------- /updates/sr-update-02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-02.php -------------------------------------------------------------------------------- /updates/sr-update-03.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-03.php -------------------------------------------------------------------------------- /updates/sr-update-04.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-04.php -------------------------------------------------------------------------------- /updates/sr-update-05.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-05.php -------------------------------------------------------------------------------- /updates/sr-update-06.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-06.php -------------------------------------------------------------------------------- /updates/sr-update-07.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-07.php -------------------------------------------------------------------------------- /updates/sr-update-08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-08.php -------------------------------------------------------------------------------- /updates/sr-update-09.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-09.php -------------------------------------------------------------------------------- /updates/sr-update-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-10.php -------------------------------------------------------------------------------- /updates/sr-update-11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-11.php -------------------------------------------------------------------------------- /updates/sr-update-12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr-update-12.php -------------------------------------------------------------------------------- /updates/sr_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/sr_tables.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-vince/smallrecords/HEAD/updates/version.yaml --------------------------------------------------------------------------------