├── README.en.md ├── README.md ├── clientExamples └── instantcms │ ├── README.md │ └── api.php ├── icon.png ├── install.php ├── install.sql ├── manifest.en.ini ├── manifest.ru.ini └── package ├── system ├── controllers │ └── api │ │ ├── actions │ │ └── method.php │ │ ├── api_actions │ │ ├── api_auth_confirm.php │ │ ├── api_auth_login.php │ │ ├── api_auth_logout.php │ │ ├── api_auth_reset.php │ │ ├── api_auth_restore.php │ │ ├── api_auth_signup.php │ │ ├── api_auth_signup_fields.php │ │ ├── api_content_add_item.php │ │ ├── api_content_get.php │ │ ├── api_content_get_categories.php │ │ ├── api_content_get_ctypes.php │ │ ├── api_content_get_datasets.php │ │ ├── api_content_get_fields.php │ │ ├── api_content_get_folders.php │ │ ├── api_content_get_item.php │ │ ├── api_content_get_props.php │ │ ├── api_content_get_props_values.php │ │ ├── api_content_update_item.php │ │ ├── api_geo_get.php │ │ ├── api_geo_get_current_country.php │ │ ├── api_images_get_presets.php │ │ ├── api_images_upload.php │ │ ├── api_messages_delete_contact.php │ │ ├── api_messages_delete_mesages.php │ │ ├── api_messages_delete_notice.php │ │ ├── api_messages_forgive.php │ │ ├── api_messages_get.php │ │ ├── api_messages_get_notices.php │ │ ├── api_messages_ignore.php │ │ ├── api_messages_readed.php │ │ ├── api_messages_restore_mesage.php │ │ ├── api_messages_send.php │ │ ├── api_users_add.php │ │ ├── api_users_add_to_groups.php │ │ ├── api_users_email_exists.php │ │ ├── api_users_get_groups.php │ │ ├── api_users_get_sig.php │ │ ├── api_users_remove_from_groups.php │ │ ├── api_users_update_password.php │ │ ├── api_users_update_password_fields.php │ │ ├── api_widgets_get_pages.php │ │ └── api_widgets_get_widgets.php │ │ ├── backend.php │ │ ├── backend │ │ ├── actions │ │ │ ├── keys.php │ │ │ ├── keys_add.php │ │ │ ├── keys_delete.php │ │ │ └── keys_edit.php │ │ ├── forms │ │ │ ├── form_key.php │ │ │ └── form_options.php │ │ └── grids │ │ │ └── grid_keys.php │ │ ├── frontend.php │ │ ├── hooks │ │ └── admin_dashboard_chart.php │ │ └── model.php └── languages │ ├── en │ └── controllers │ │ └── api │ │ └── api.php │ └── ru │ └── controllers │ └── api │ └── api.php └── templates └── default └── controllers └── api └── backend ├── key.tpl.php └── keys.tpl.php /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/README.md -------------------------------------------------------------------------------- /clientExamples/instantcms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/clientExamples/instantcms/README.md -------------------------------------------------------------------------------- /clientExamples/instantcms/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/clientExamples/instantcms/api.php -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/icon.png -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/install.php -------------------------------------------------------------------------------- /install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/install.sql -------------------------------------------------------------------------------- /manifest.en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/manifest.en.ini -------------------------------------------------------------------------------- /manifest.ru.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/manifest.ru.ini -------------------------------------------------------------------------------- /package/system/controllers/api/actions/method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/actions/method.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_confirm.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_login.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_logout.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_reset.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_restore.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_signup.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_auth_signup_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_auth_signup_fields.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_add_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_add_item.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_categories.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_ctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_ctypes.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_datasets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_datasets.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_fields.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_folders.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_item.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_props.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_props.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_get_props_values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_get_props_values.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_content_update_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_content_update_item.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_geo_get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_geo_get.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_geo_get_current_country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_geo_get_current_country.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_images_get_presets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_images_get_presets.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_images_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_images_upload.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_delete_contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_delete_contact.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_delete_mesages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_delete_mesages.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_delete_notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_delete_notice.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_forgive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_forgive.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_get.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_get_notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_get_notices.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_ignore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_ignore.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_readed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_readed.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_restore_mesage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_restore_mesage.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_messages_send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_messages_send.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_add.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_add_to_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_add_to_groups.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_email_exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_email_exists.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_get_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_get_groups.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_get_sig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_get_sig.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_remove_from_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_remove_from_groups.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_update_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_update_password.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_users_update_password_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_users_update_password_fields.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_widgets_get_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_widgets_get_pages.php -------------------------------------------------------------------------------- /package/system/controllers/api/api_actions/api_widgets_get_widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/api_actions/api_widgets_get_widgets.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/actions/keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/actions/keys.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/actions/keys_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/actions/keys_add.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/actions/keys_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/actions/keys_delete.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/actions/keys_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/actions/keys_edit.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/forms/form_key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/forms/form_key.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/forms/form_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/forms/form_options.php -------------------------------------------------------------------------------- /package/system/controllers/api/backend/grids/grid_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/backend/grids/grid_keys.php -------------------------------------------------------------------------------- /package/system/controllers/api/frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/frontend.php -------------------------------------------------------------------------------- /package/system/controllers/api/hooks/admin_dashboard_chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/hooks/admin_dashboard_chart.php -------------------------------------------------------------------------------- /package/system/controllers/api/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/controllers/api/model.php -------------------------------------------------------------------------------- /package/system/languages/en/controllers/api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/languages/en/controllers/api/api.php -------------------------------------------------------------------------------- /package/system/languages/ru/controllers/api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/system/languages/ru/controllers/api/api.php -------------------------------------------------------------------------------- /package/templates/default/controllers/api/backend/key.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/templates/default/controllers/api/backend/key.tpl.php -------------------------------------------------------------------------------- /package/templates/default/controllers/api/backend/keys.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2-json-api-component/HEAD/package/templates/default/controllers/api/backend/keys.tpl.php --------------------------------------------------------------------------------