├── .htaccess ├── bootstrap.php ├── cache ├── .htaccess ├── data │ └── .gitignore ├── rss │ └── .gitignore └── static │ ├── css │ └── .gitignore │ ├── js │ └── .gitignore │ └── sitemaps │ └── .gitignore ├── credits.txt ├── cron.php ├── index.php ├── install ├── css │ ├── styles.css │ └── sweetalert2.min.css ├── externals │ └── .gitignore ├── functions.php ├── images │ ├── bg.jpg │ ├── icons │ │ ├── database.svg │ │ ├── divide.svg │ │ ├── envelope.svg │ │ ├── exclamation-triangle.svg │ │ ├── folder.svg │ │ ├── key.svg │ │ ├── link.svg │ │ ├── server.svg │ │ ├── table.svg │ │ ├── text-width.svg │ │ └── user.svg │ ├── install.png │ └── logo.svg ├── index.php ├── js │ ├── install.js │ ├── jquery.js │ └── sweetalert2.all.min.js ├── languages │ ├── en │ │ ├── flag.svg │ │ ├── language.php │ │ ├── license.txt │ │ └── sql │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ ├── base_demo_modern.sql │ │ │ ├── packages │ │ │ ├── activity │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ ├── base_demo_modern.sql │ │ │ │ ├── widgets_bind_demo_default.sql │ │ │ │ └── widgets_bind_demo_modern.sql │ │ │ ├── comments │ │ │ │ ├── activity │ │ │ │ │ └── base.sql │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ ├── base_demo_modern.sql │ │ │ │ ├── rss │ │ │ │ │ └── base.sql │ │ │ │ ├── widgets_bind_demo_default.sql │ │ │ │ └── widgets_bind_demo_modern.sql │ │ │ ├── csp │ │ │ │ └── base.sql │ │ │ ├── forms │ │ │ │ └── base.sql │ │ │ ├── geo │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── groups │ │ │ │ ├── activity │ │ │ │ │ └── base.sql │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── photos │ │ │ │ ├── activity │ │ │ │ │ └── base.sql │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ ├── base_demo_modern.sql │ │ │ │ ├── rss │ │ │ │ │ └── base.sql │ │ │ │ ├── widgets_bind_demo_default.sql │ │ │ │ └── widgets_bind_demo_modern.sql │ │ │ ├── rating │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── recaptcha │ │ │ │ └── base.sql │ │ │ ├── redirect │ │ │ │ └── base.sql │ │ │ ├── rss │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── search │ │ │ │ ├── base.sql │ │ │ │ ├── widgets_bind_demo_default.sql │ │ │ │ └── widgets_bind_demo_modern.sql │ │ │ ├── sitemap │ │ │ │ └── base.sql │ │ │ ├── subscriptions │ │ │ │ ├── activity │ │ │ │ │ └── base.sql │ │ │ │ └── base.sql │ │ │ ├── tags │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ ├── base_demo_modern.sql │ │ │ │ ├── photos │ │ │ │ │ ├── base_demo_default.sql │ │ │ │ │ └── base_demo_modern.sql │ │ │ │ ├── widgets_bind_demo_default.sql │ │ │ │ └── widgets_bind_demo_modern.sql │ │ │ └── wall │ │ │ │ ├── base.sql │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── widgets_bind_default.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ ├── widgets_bind_demo_modern.sql │ │ │ └── widgets_bind_modern.sql │ └── ru │ │ ├── flag.svg │ │ ├── language.php │ │ ├── license.txt │ │ └── sql │ │ ├── base.sql │ │ ├── base_demo_default.sql │ │ ├── base_demo_modern.sql │ │ ├── packages │ │ ├── activity │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ ├── base_demo_modern.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ └── widgets_bind_demo_modern.sql │ │ ├── comments │ │ │ ├── activity │ │ │ │ └── base.sql │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ ├── base_demo_modern.sql │ │ │ ├── rss │ │ │ │ └── base.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ └── widgets_bind_demo_modern.sql │ │ ├── csp │ │ │ └── base.sql │ │ ├── forms │ │ │ └── base.sql │ │ ├── geo │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ └── base_demo_modern.sql │ │ ├── groups │ │ │ ├── activity │ │ │ │ └── base.sql │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ └── base_demo_modern.sql │ │ ├── photos │ │ │ ├── activity │ │ │ │ └── base.sql │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ ├── base_demo_modern.sql │ │ │ ├── rss │ │ │ │ └── base.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ └── widgets_bind_demo_modern.sql │ │ ├── rating │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ └── base_demo_modern.sql │ │ ├── recaptcha │ │ │ └── base.sql │ │ ├── redirect │ │ │ └── base.sql │ │ ├── rss │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ └── base_demo_modern.sql │ │ ├── search │ │ │ ├── base.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ └── widgets_bind_demo_modern.sql │ │ ├── sitemap │ │ │ └── base.sql │ │ ├── subscriptions │ │ │ ├── activity │ │ │ │ └── base.sql │ │ │ └── base.sql │ │ ├── tags │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ ├── base_demo_modern.sql │ │ │ ├── photos │ │ │ │ ├── base_demo_default.sql │ │ │ │ └── base_demo_modern.sql │ │ │ ├── widgets_bind_demo_default.sql │ │ │ └── widgets_bind_demo_modern.sql │ │ └── wall │ │ │ ├── base.sql │ │ │ ├── base_demo_default.sql │ │ │ └── base_demo_modern.sql │ │ ├── widgets_bind_default.sql │ │ ├── widgets_bind_demo_default.sql │ │ ├── widgets_bind_demo_modern.sql │ │ └── widgets_bind_modern.sql ├── manifest.php ├── manifests │ ├── activity.php │ ├── billing.php │ ├── comments.php │ ├── csp.php │ ├── forms.php │ ├── geo.php │ ├── groups.php │ ├── photos.php │ ├── rating.php │ ├── recaptcha.php │ ├── redirect.php │ ├── rss.php │ ├── search.php │ ├── sitemap.php │ ├── subscriptions.php │ ├── tags.php │ └── wall.php ├── rebuild.php ├── steps │ ├── addons.php │ ├── addons_install.php │ ├── admin.php │ ├── config.php │ ├── cron.php │ ├── database.php │ ├── finish.php │ ├── license.php │ ├── paths.php │ ├── php.php │ ├── site.php │ └── start.php ├── templates │ ├── main.php │ ├── step_addons.php │ ├── step_admin.php │ ├── step_config.php │ ├── step_cron.php │ ├── step_database.php │ ├── step_finish.php │ ├── step_license.php │ ├── step_paths.php │ ├── step_php.php │ ├── step_site.php │ └── step_start.php └── upload │ ├── default │ └── u1 │ │ ├── 003 │ │ ├── 0599295b.jpg │ │ ├── 1c88035a.jpg │ │ ├── 236d41e4.jpg │ │ ├── 2e2bf124.jpg │ │ ├── 3400aa78.jpg │ │ ├── 3c2e4a35.jpg │ │ ├── 3f768733.jpg │ │ ├── 41646570.jpg │ │ ├── 44b68dc8.jpg │ │ ├── 4878547b.jpg │ │ ├── 53497165.jpg │ │ ├── 5edc315b.jpg │ │ ├── 74809cbe.jpg │ │ ├── 77fbbb95.jpg │ │ ├── 852fb216.jpg │ │ ├── 89e8e681.jpg │ │ ├── 93e51e49.jpg │ │ ├── 9e9ef526.jpg │ │ ├── 9f03ca75.jpg │ │ ├── a05ad20e.jpg │ │ ├── ad753a86.jpg │ │ ├── b1e550ce.jpg │ │ ├── b9767257.jpg │ │ ├── cae0bdfb.jpg │ │ ├── d0ed7732.jpg │ │ ├── ddaa0bd4.jpg │ │ ├── e3c52c3e.jpg │ │ ├── eb2bac70.jpg │ │ ├── f1476363.jpg │ │ ├── f6f14e82.jpg │ │ ├── f95ca1a2.jpg │ │ └── fa562059.jpg │ │ └── 004 │ │ ├── 08e78cd6.jpg │ │ ├── 1b6fe453.jpg │ │ ├── 29a7c938.jpg │ │ ├── 4bda72dd.jpg │ │ ├── 64a79d25.jpg │ │ ├── 82645d44.jpg │ │ ├── 8b15968b.jpg │ │ ├── 8d391531.jpg │ │ ├── a442fa4b.png │ │ ├── c8a73161.png │ │ ├── de897122.png │ │ ├── f13052e8.png │ │ ├── f398ad69.png │ │ └── f9c36ec4.jpg │ └── modern │ └── 000 │ └── u1 │ ├── 0 │ ├── 3 │ │ └── prodam-kvartiru-v-novostroike-photo-normal.jpg │ ├── 7 │ │ └── rossijane-stali-pervymi-na-chempionate-mira-photo-content-list-small.webp │ ├── a │ │ └── 35b34880.jpg │ └── b │ │ └── investicii-dlja-chainikov-kuda-vkladyvat-photo-small.jpg │ ├── 1 │ ├── 0 │ │ └── kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-small.jpg │ ├── 2 │ │ └── kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list.webp │ ├── b │ │ └── 6e8291e5.webp │ └── f │ │ └── rossijane-stali-pervymi-na-chempionate-mira-photo-content-list.webp │ ├── 2 │ ├── 2 │ │ └── rossijane-stali-pervymi-na-chempionate-mira-photo-content-item.webp │ ├── 3 │ │ └── 7e8cf01c.webp │ ├── 6 │ │ └── 60826896.webp │ └── e │ │ └── 481e9f06.webp │ ├── 3 │ ├── 1 │ │ └── kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-item.webp │ ├── 5 │ │ └── c29217d1.webp │ ├── 7 │ │ └── 52241df9.jpg │ └── e │ │ └── prodam-kvartiru-v-novostroike-photo-micro.jpg │ ├── 4 │ ├── 2 │ │ └── 1a7da83e.jpg │ ├── 3 │ │ └── 8914eba7.webp │ └── 5 │ │ └── c44b04bf.webp │ ├── 5 │ ├── 0 │ │ └── 2afcd745.webp │ ├── 3 │ │ └── 74ca4539.webp │ ├── 5 │ │ └── vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-small.jpg │ └── b │ │ └── vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-item.webp │ ├── 6 │ ├── 7 │ │ └── fc4e5bc4.webp │ └── e │ │ └── rossijane-stali-pervymi-na-chempionate-mira-photo-small.jpg │ ├── 7 │ ├── 2 │ │ └── b262ab6f.jpg │ ├── 3 │ │ └── robototehnika-logo-small.png │ ├── 6 │ │ └── investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list.webp │ └── e │ │ └── investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list-small.webp │ ├── 8 │ └── b │ │ └── prodam-kvartiru-v-novostroike-photos-big.jpg │ ├── 9 │ ├── 3 │ │ └── 6c024907.webp │ ├── 8 │ │ └── investicii-dlja-chainikov-kuda-vkladyvat-photo-content-item.webp │ └── d │ │ └── prodam-kvartiru-v-novostroike-photos-big.webp │ ├── a │ ├── 0 │ │ └── 3ed25154.webp │ ├── 5 │ │ └── 53e113d9.webp │ └── 7 │ │ └── f927491e.webp │ ├── b │ ├── 7 │ │ └── prodam-kvartiru-v-novostroike-photos-small.jpg │ ├── c │ │ └── prodam-kvartiru-v-novostroike-photos-small.webp │ └── e │ │ └── prodam-kvartiru-v-novostroike-photos-small.jpg │ ├── c │ └── 9 │ │ └── vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list.webp │ ├── e │ ├── 3 │ │ ├── 923d5458.webp │ │ └── robototehnika-logo-micro.png │ ├── 8 │ │ └── kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list-small.webp │ ├── e │ │ └── prodam-kvartiru-v-novostroike-photo-small.jpg │ └── f │ │ └── vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list-small.webp │ └── f │ ├── 3 │ └── prodam-kvartiru-v-novostroike-photos-big.jpg │ └── 7 │ └── 99914b0f.webp ├── license.en.txt ├── license.ru.txt ├── static ├── .htaccess └── smiles │ ├── angel.gif │ ├── blush.gif │ ├── bomb.gif │ ├── bravo.gif │ ├── crazy.gif │ ├── dance.gif │ ├── devil.gif │ ├── drink.gif │ ├── eyes.gif │ ├── glass.gif │ ├── inlove.gif │ ├── jokingly.gif │ ├── kiss.gif │ ├── kissed.gif │ ├── kissing.gif │ ├── laugh.gif │ ├── macho.gif │ ├── music.gif │ ├── no.gif │ ├── ok.gif │ ├── pardon.gif │ ├── pitchup.gif │ ├── quiet.gif │ ├── rofl.gif │ ├── rose.gif │ ├── sad.gif │ ├── sick.gif │ ├── smile.gif │ ├── sorry.gif │ ├── sos.gif │ ├── stop.gif │ ├── strong.gif │ ├── think.gif │ ├── thumbsup.gif │ ├── tired.gif │ ├── tongue.gif │ ├── unknown.gif │ ├── ups.gif │ ├── wassup.gif │ ├── wink.gif │ ├── wonder.gif │ └── yahoo.gif ├── system ├── .htaccess ├── config │ ├── autoload.php │ ├── mimetypes.php │ ├── remap.php │ ├── theme_default.yml │ ├── theme_modern.yml │ ├── timezones.php │ └── version.ini ├── controllers │ ├── activity │ │ ├── actions │ │ │ ├── delete.php │ │ │ └── index.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ └── types.php │ │ │ ├── forms │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ └── grid_types.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_block.php │ │ │ ├── admin_inline_save_subscriptions.php │ │ │ ├── comments_after_delete_list.php │ │ │ ├── comments_rate_after.php │ │ │ ├── content_after_add_approve.php │ │ │ ├── content_after_delete.php │ │ │ ├── content_after_restore.php │ │ │ ├── content_after_trash_put.php │ │ │ ├── content_after_update_approve.php │ │ │ ├── content_albums_after_delete.php │ │ │ ├── content_groups_after_delete.php │ │ │ ├── content_photos_after_add.php │ │ │ ├── ctype_after_delete.php │ │ │ ├── ctype_labels_after_update.php │ │ │ ├── group_after_join.php │ │ │ ├── group_after_leave.php │ │ │ ├── groups_after_accept_request.php │ │ │ ├── groups_after_update.php │ │ │ ├── languages_forms.php │ │ │ ├── publish_delayed_content.php │ │ │ ├── subscribe.php │ │ │ ├── unsubscribe.php │ │ │ ├── user_add_status_after.php │ │ │ ├── user_delete.php │ │ │ ├── user_registered.php │ │ │ ├── user_tab_info.php │ │ │ ├── user_tab_show.php │ │ │ ├── users_add_friendship_mutual.php │ │ │ └── users_after_update.php │ │ ├── model.php │ │ └── widgets │ │ │ └── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── admin │ │ ├── actions │ │ │ ├── addons_list.php │ │ │ ├── cache_delete.php │ │ │ ├── check_ftp.php │ │ │ ├── clear_cache.php │ │ │ ├── confirm_login.php │ │ │ ├── content.php │ │ │ ├── content_cats_add.php │ │ │ ├── content_cats_delete.php │ │ │ ├── content_cats_edit.php │ │ │ ├── content_cats_order.php │ │ │ ├── content_filter.php │ │ │ ├── content_item_add.php │ │ │ ├── content_item_delete.php │ │ │ ├── content_item_edit.php │ │ │ ├── content_item_move.php │ │ │ ├── content_item_toggle.php │ │ │ ├── content_item_trash_put.php │ │ │ ├── content_items_edit.php │ │ │ ├── content_tree_ajax.php │ │ │ ├── controllers.php │ │ │ ├── controllers_delete.php │ │ │ ├── controllers_edit.php │ │ │ ├── controllers_events.php │ │ │ ├── controllers_events_reorder.php │ │ │ ├── controllers_events_toggle.php │ │ │ ├── controllers_events_update.php │ │ │ ├── controllers_toggle.php │ │ │ ├── credits.php │ │ │ ├── ctypes.php │ │ │ ├── ctypes_add.php │ │ │ ├── ctypes_datasets.php │ │ │ ├── ctypes_datasets_add.php │ │ │ ├── ctypes_datasets_delete.php │ │ │ ├── ctypes_datasets_edit.php │ │ │ ├── ctypes_delete.php │ │ │ ├── ctypes_edit.php │ │ │ ├── ctypes_field_string_ajax.php │ │ │ ├── ctypes_fields.php │ │ │ ├── ctypes_fields_add.php │ │ │ ├── ctypes_fields_delete.php │ │ │ ├── ctypes_fields_edit.php │ │ │ ├── ctypes_fields_options.php │ │ │ ├── ctypes_fields_reorder.php │ │ │ ├── ctypes_fields_toggle.php │ │ │ ├── ctypes_filters.php │ │ │ ├── ctypes_filters_add.php │ │ │ ├── ctypes_filters_delete.php │ │ │ ├── ctypes_filters_enable.php │ │ │ ├── ctypes_labels.php │ │ │ ├── ctypes_moderators.php │ │ │ ├── ctypes_perms.php │ │ │ ├── ctypes_perms_save.php │ │ │ ├── ctypes_props.php │ │ │ ├── ctypes_props_add.php │ │ │ ├── ctypes_props_bind.php │ │ │ ├── ctypes_props_delete.php │ │ │ ├── ctypes_props_edit.php │ │ │ ├── ctypes_props_reorder.php │ │ │ ├── ctypes_props_toggle.php │ │ │ ├── ctypes_props_unbind.php │ │ │ ├── ctypes_relations.php │ │ │ ├── ctypes_relations_add.php │ │ │ ├── ctypes_relations_delete.php │ │ │ ├── ctypes_relations_edit.php │ │ │ ├── ctypes_reorder.php │ │ │ ├── get_table_list.php │ │ │ ├── index.php │ │ │ ├── index_chart_data.php │ │ │ ├── index_page_settings.php │ │ │ ├── index_save_order.php │ │ │ ├── inline_save.php │ │ │ ├── install.php │ │ │ ├── install_finish.php │ │ │ ├── install_ftp.php │ │ │ ├── load_icms_news.php │ │ │ ├── menu.php │ │ │ ├── menu_add.php │ │ │ ├── menu_delete.php │ │ │ ├── menu_edit.php │ │ │ ├── menu_item_add.php │ │ │ ├── menu_item_delete.php │ │ │ ├── menu_item_edit.php │ │ │ ├── menu_tree_ajax.php │ │ │ ├── messages_notices.php │ │ │ ├── package_files_list.php │ │ │ ├── reorder.php │ │ │ ├── settings.php │ │ │ ├── settings_check_nested.php │ │ │ ├── settings_mail_check.php │ │ │ ├── settings_mime.php │ │ │ ├── settings_scheduler.php │ │ │ ├── settings_scheduler_add.php │ │ │ ├── settings_scheduler_delete.php │ │ │ ├── settings_scheduler_edit.php │ │ │ ├── settings_scheduler_run.php │ │ │ ├── settings_siteon.php │ │ │ ├── settings_switch_template.php │ │ │ ├── settings_sys_info.php │ │ │ ├── settings_theme.php │ │ │ ├── settings_theme_icon_list.php │ │ │ ├── toggle_item.php │ │ │ ├── update.php │ │ │ ├── update_install.php │ │ │ ├── users.php │ │ │ ├── users_add.php │ │ │ ├── users_autocomplete.php │ │ │ ├── users_delete.php │ │ │ ├── users_delete_list.php │ │ │ ├── users_edit.php │ │ │ ├── users_filter.php │ │ │ ├── users_group_add.php │ │ │ ├── users_group_delete.php │ │ │ ├── users_group_edit.php │ │ │ ├── users_group_perms.php │ │ │ ├── users_group_perms_save.php │ │ │ ├── users_group_reorder.php │ │ │ ├── widgets.php │ │ │ ├── widgets_add.php │ │ │ ├── widgets_col_add.php │ │ │ ├── widgets_col_delete.php │ │ │ ├── widgets_col_edit.php │ │ │ ├── widgets_copy.php │ │ │ ├── widgets_delete.php │ │ │ ├── widgets_edit.php │ │ │ ├── widgets_export_scheme.php │ │ │ ├── widgets_import_scheme.php │ │ │ ├── widgets_load.php │ │ │ ├── widgets_page_add.php │ │ │ ├── widgets_page_autocomplete.php │ │ │ ├── widgets_page_content_cats.php │ │ │ ├── widgets_page_delete.php │ │ │ ├── widgets_page_edit.php │ │ │ ├── widgets_remove.php │ │ │ ├── widgets_reorder.php │ │ │ ├── widgets_row_add.php │ │ │ ├── widgets_row_add_ns.php │ │ │ ├── widgets_row_delete.php │ │ │ ├── widgets_row_edit.php │ │ │ ├── widgets_toggle.php │ │ │ ├── widgets_tree_ajax.php │ │ │ ├── widgets_unbind_all_widgets.php │ │ │ └── widgets_update.php │ │ ├── backend.php │ │ ├── forms │ │ │ ├── form_confirm_login.php │ │ │ ├── form_content_category.php │ │ │ ├── form_ctypes_basic.php │ │ │ ├── form_ctypes_dataset.php │ │ │ ├── form_ctypes_field.php │ │ │ ├── form_ctypes_filter.php │ │ │ ├── form_ctypes_labels.php │ │ │ ├── form_ctypes_prop.php │ │ │ ├── form_ctypes_relation.php │ │ │ ├── form_ftp.php │ │ │ ├── form_mail_check.php │ │ │ ├── form_menu.php │ │ │ ├── form_menu_item.php │ │ │ ├── form_scheduler_task.php │ │ │ ├── form_settings.php │ │ │ ├── form_settings_mime.php │ │ │ ├── form_user.php │ │ │ ├── form_users_group.php │ │ │ ├── form_widgets_cols.php │ │ │ ├── form_widgets_export_scheme.php │ │ │ ├── form_widgets_import_scheme.php │ │ │ ├── form_widgets_page.php │ │ │ └── form_widgets_rows.php │ │ ├── frontend.php │ │ ├── grids │ │ │ ├── grid_content_items.php │ │ │ ├── grid_controllers.php │ │ │ ├── grid_controllers_events.php │ │ │ ├── grid_ctype_datasets.php │ │ │ ├── grid_ctype_fields.php │ │ │ ├── grid_ctype_filters.php │ │ │ ├── grid_ctype_props.php │ │ │ ├── grid_ctype_relations.php │ │ │ ├── grid_ctypes.php │ │ │ ├── grid_menu_items.php │ │ │ ├── grid_queue.php │ │ │ ├── grid_scheduler.php │ │ │ └── grid_users.php │ │ ├── hooks │ │ │ ├── admin_confirm_login.php │ │ │ ├── admin_dashboard_block.php │ │ │ ├── cron_optimize_tables.php │ │ │ ├── languages_forms.php │ │ │ ├── menu_admin.php │ │ │ └── user_login.php │ │ ├── model.php │ │ └── traits │ │ │ └── queueActions.php │ ├── auth │ │ ├── actions │ │ │ ├── login.php │ │ │ ├── register.php │ │ │ ├── reset.php │ │ │ ├── restore.php │ │ │ ├── resubmit.php │ │ │ └── verify.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ └── send_invites.php │ │ │ └── forms │ │ │ │ ├── form_options.php │ │ │ │ └── form_send_invites.php │ │ ├── forms │ │ │ ├── form_login.php │ │ │ ├── form_registration.php │ │ │ ├── form_reset.php │ │ │ ├── form_restore.php │ │ │ └── form_verify.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── cron_delete_expired_unverified.php │ │ │ ├── cron_send_invites.php │ │ │ ├── form_users_password.php │ │ │ ├── frontpage.php │ │ │ ├── frontpage_types.php │ │ │ ├── page_is_allowed.php │ │ │ └── user_profile_update.php │ │ ├── model.php │ │ └── widgets │ │ │ ├── auth │ │ │ └── widget.php │ │ │ └── register │ │ │ └── widget.php │ ├── authga │ │ ├── actions │ │ │ └── login_2fa.php │ │ ├── forms │ │ │ └── form_confirm.php │ │ ├── frontend.php │ │ └── hooks │ │ │ ├── auth_twofactor_list.php │ │ │ ├── controller_auth_after_save_options.php │ │ │ ├── form_users_password_2fa.php │ │ │ └── users_before_edit_password.php │ ├── bootstrap4 │ │ ├── frontend.php │ │ └── hooks │ │ │ ├── admin_col_scheme_options.php │ │ │ ├── admin_row_scheme_options.php │ │ │ ├── ctype_field_users_after_update.php │ │ │ ├── render_widget_menu_menu.php │ │ │ └── widget_menu_form.php │ ├── comments │ │ ├── actions │ │ │ ├── approve.php │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ ├── index.php │ │ │ ├── rate.php │ │ │ ├── refresh.php │ │ │ ├── submit.php │ │ │ ├── track.php │ │ │ └── track_stop.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── comments_delete.php │ │ │ │ ├── index.php │ │ │ │ └── text_edit.php │ │ │ ├── forms │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ └── grid_comments_list.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_content_dataset_fields_list.php │ │ │ ├── admin_content_filter.php │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── content_after_delete.php │ │ │ ├── content_after_restore.php │ │ │ ├── content_after_trash_put.php │ │ │ ├── content_after_update.php │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ ├── content_item_form.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── moderation_list.php │ │ │ ├── photos_after_delete_list.php │ │ │ ├── photos_before_item.php │ │ │ ├── restore_user.php │ │ │ ├── rss_feed_list.php │ │ │ ├── set_user_is_deleted.php │ │ │ ├── user_delete.php │ │ │ ├── user_login.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_privacy_types.php │ │ │ ├── user_tab_info.php │ │ │ └── user_tab_show.php │ │ ├── model.php │ │ └── widgets │ │ │ └── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── content │ │ ├── actions │ │ │ ├── category_add.php │ │ │ ├── category_delete.php │ │ │ ├── category_edit.php │ │ │ ├── category_view.php │ │ │ ├── folder_delete.php │ │ │ ├── folder_edit.php │ │ │ ├── item_add.php │ │ │ ├── item_approve.php │ │ │ ├── item_bind.php │ │ │ ├── item_bind_form.php │ │ │ ├── item_bind_list.php │ │ │ ├── item_childs_view.php │ │ │ ├── item_delete.php │ │ │ ├── item_edit.php │ │ │ ├── item_owner.php │ │ │ ├── item_owner_process.php │ │ │ ├── item_props_fields.php │ │ │ ├── item_return.php │ │ │ ├── item_return_for_revision.php │ │ │ ├── item_trash_put.php │ │ │ ├── item_trash_remove.php │ │ │ ├── item_unbind.php │ │ │ ├── item_view.php │ │ │ ├── items_from_friends.php │ │ │ ├── trash.php │ │ │ ├── widget_cats_ajax.php │ │ │ ├── widget_cats_presets_ajax.php │ │ │ ├── widget_datasets_ajax.php │ │ │ ├── widget_fields_ajax.php │ │ │ ├── widget_fields_options_ajax.php │ │ │ ├── widget_filters_ajax.php │ │ │ └── widget_relations_ajax.php │ │ ├── backend │ │ │ └── model.php │ │ ├── forms │ │ │ ├── form_category.php │ │ │ ├── form_change_owner.php │ │ │ ├── form_folder.php │ │ │ └── form_widget_content_list.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_content_dataset_fields_list.php │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── admin_subscriptions_list.php │ │ │ ├── comments_targets.php │ │ │ ├── cron_publication.php │ │ │ ├── cron_publication_notify.php │ │ │ ├── ctype_lists_context.php │ │ │ ├── ctype_relation_childs.php │ │ │ ├── db_nested_tables.php │ │ │ ├── engine_start.php │ │ │ ├── frontpage.php │ │ │ ├── frontpage_types.php │ │ │ ├── fulltext_search.php │ │ │ ├── fulltext_search_html.php │ │ │ ├── languages_forms.php │ │ │ ├── menu_content.php │ │ │ ├── moderation_list.php │ │ │ ├── rss_content_controller_after_update.php │ │ │ ├── rss_content_controller_form.php │ │ │ ├── rss_feed_list.php │ │ │ ├── sitemap_sources.php │ │ │ ├── sitemap_urls.php │ │ │ ├── subscribe_item_url.php │ │ │ ├── subscribe_list_title.php │ │ │ ├── subscription_match_list.php │ │ │ ├── subscription_options.php │ │ │ ├── tags_search.php │ │ │ ├── tags_search_subjects.php │ │ │ ├── user_delete.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_privacy_types.php │ │ │ ├── widget_content_list_before_update_bind.php │ │ │ ├── widget_content_list_form.php │ │ │ └── wysiwyg_links_list.php │ │ ├── model.php │ │ ├── routes.php │ │ └── widgets │ │ │ ├── author │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ ├── categories │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ ├── fields │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ ├── filter │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ ├── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ └── slider │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── csp │ │ ├── actions │ │ │ └── report.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── reports.php │ │ │ │ └── reports_delete.php │ │ │ ├── forms │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ └── grid_reports.php │ │ ├── frontend.php │ │ └── hooks │ │ │ └── engine_start.php │ ├── error404 │ │ └── frontend.php │ ├── files │ │ ├── actions │ │ │ ├── delete.php │ │ │ ├── download.php │ │ │ ├── files_list.php │ │ │ └── upload_with_wysiwyg.php │ │ ├── frontend.php │ │ └── model.php │ ├── forms │ │ ├── actions │ │ │ ├── embed.php │ │ │ ├── framejs.php │ │ │ ├── index.php │ │ │ ├── send_ajax.php │ │ │ └── view.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── add.php │ │ │ │ ├── copy.php │ │ │ │ ├── delete.php │ │ │ │ ├── edit.php │ │ │ │ ├── fields_add.php │ │ │ │ ├── fields_delete.php │ │ │ │ ├── fields_edit.php │ │ │ │ ├── fields_options.php │ │ │ │ ├── form_fields.php │ │ │ │ ├── index.php │ │ │ │ └── view.php │ │ │ ├── forms │ │ │ │ ├── form_field.php │ │ │ │ ├── form_form.php │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ ├── grid_form_fields.php │ │ │ │ └── grid_forms.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── content_before_item.php │ │ │ └── languages_forms.php │ │ ├── model.php │ │ └── widgets │ │ │ └── form │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── frontpage │ │ ├── frontend.php │ │ └── hooks │ │ │ ├── ctype_after_delete.php │ │ │ ├── ctype_after_update.php │ │ │ ├── sitemap_sources.php │ │ │ └── sitemap_urls.php │ ├── geo │ │ ├── actions │ │ │ ├── get_items.php │ │ │ └── widget.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── cities.php │ │ │ │ ├── city.php │ │ │ │ ├── country.php │ │ │ │ ├── delete.php │ │ │ │ ├── index.php │ │ │ │ ├── region.php │ │ │ │ └── regions.php │ │ │ ├── forms │ │ │ │ ├── form_city.php │ │ │ │ ├── form_country.php │ │ │ │ ├── form_options.php │ │ │ │ └── form_region.php │ │ │ └── grids │ │ │ │ ├── grid_cities.php │ │ │ │ ├── grid_countries.php │ │ │ │ └── grid_regions.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ └── form_admin_widgets_page.php │ │ ├── iplookups │ │ │ └── geoiplookup.php │ │ └── model.php │ ├── groups │ │ ├── actions │ │ │ ├── accept_request.php │ │ │ ├── add.php │ │ │ ├── decline_request.php │ │ │ ├── expel.php │ │ │ ├── group.php │ │ │ ├── group_activity.php │ │ │ ├── group_approve.php │ │ │ ├── group_change_owner.php │ │ │ ├── group_content.php │ │ │ ├── group_delete.php │ │ │ ├── group_edit.php │ │ │ ├── group_edit_requests.php │ │ │ ├── group_edit_role_delete.php │ │ │ ├── group_edit_roles.php │ │ │ ├── group_edit_staff.php │ │ │ ├── group_edit_staff_delete.php │ │ │ ├── group_enter.php │ │ │ ├── group_join.php │ │ │ ├── group_leave.php │ │ │ ├── group_members.php │ │ │ ├── group_unbind.php │ │ │ ├── index.php │ │ │ ├── invite.php │ │ │ ├── invite_delete.php │ │ │ ├── invite_friends.php │ │ │ ├── invite_users.php │ │ │ ├── item_childs_view.php │ │ │ ├── process_change_owner.php │ │ │ ├── remove_staff.php │ │ │ ├── set_roles.php │ │ │ └── set_staff.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── datasets.php │ │ │ │ ├── fields_add.php │ │ │ │ ├── fields_delete.php │ │ │ │ ├── fields_edit.php │ │ │ │ └── index.php │ │ │ ├── forms │ │ │ │ ├── form_field.php │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ └── grid_fields.php │ │ ├── forms │ │ │ └── form_change_owner.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── admin_groups_dataset_fields_list.php │ │ │ ├── content_add_permissions.php │ │ │ ├── content_before_childs.php │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ ├── content_item_form_context.php │ │ │ ├── content_privacy_types.php │ │ │ ├── content_validate.php │ │ │ ├── content_view_hidden.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── ctype_lists_context.php │ │ │ ├── ctype_relation_childs.php │ │ │ ├── fulltext_search.php │ │ │ ├── fulltext_search_html.php │ │ │ ├── languages_forms.php │ │ │ ├── menu_groups.php │ │ │ ├── moderation_list.php │ │ │ ├── rating_vote.php │ │ │ ├── sitemap_sources.php │ │ │ ├── sitemap_urls.php │ │ │ ├── user_delete.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_privacy_types.php │ │ │ ├── user_profile_buttons.php │ │ │ ├── user_tab_info.php │ │ │ ├── user_tab_show.php │ │ │ └── wall_permissions.php │ │ ├── model.php │ │ └── widgets │ │ │ └── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── images │ │ ├── actions │ │ │ ├── delete.php │ │ │ ├── upload.php │ │ │ └── upload_with_preset.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── presets.php │ │ │ │ ├── presets_add.php │ │ │ │ ├── presets_delete.php │ │ │ │ └── presets_edit.php │ │ │ ├── forms │ │ │ │ └── form_preset.php │ │ │ └── grids │ │ │ │ └── grid_presets.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ └── user_delete.php │ │ └── model.php │ ├── languages │ │ ├── actions │ │ │ └── tr.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ ├── content_form_field.php │ │ │ ├── content_item_form.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── ctype_field_after_add.php │ │ │ ├── ctype_field_after_update.php │ │ │ ├── engine_start.php │ │ │ ├── form_get.php │ │ │ ├── form_make.php │ │ │ ├── frontpage_action_index.php │ │ │ ├── grid_activity_types.php │ │ │ └── widget_options_full_form.php │ │ ├── model.php │ │ ├── services │ │ │ └── google.php │ │ └── translatable.php │ ├── menu │ │ └── model.php │ ├── messages │ │ ├── actions │ │ │ ├── contact.php │ │ │ ├── delete.php │ │ │ ├── delete_mesage.php │ │ │ ├── forgive.php │ │ │ ├── ignore.php │ │ │ ├── index.php │ │ │ ├── notice_action.php │ │ │ ├── notices.php │ │ │ ├── refresh.php │ │ │ ├── restore_mesage.php │ │ │ ├── send.php │ │ │ ├── show_older.php │ │ │ └── write.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ └── pmailing.php │ │ │ └── forms │ │ │ │ ├── form_options.php │ │ │ │ └── form_pmailing.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── cron_clean.php │ │ │ ├── menu_messages.php │ │ │ ├── queue_send_email.php │ │ │ ├── user_delete.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_privacy_types.php │ │ │ └── users_profile_view.php │ │ └── model.php │ ├── moderation │ │ ├── actions │ │ │ ├── draft.php │ │ │ ├── index.php │ │ │ └── waiting_list.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── delete_log.php │ │ │ │ ├── edit_trash_left_time.php │ │ │ │ └── logs.php │ │ │ ├── forms │ │ │ │ ├── form_options.php │ │ │ │ └── form_trash_left_time.php │ │ │ └── grids │ │ │ │ └── grid_logs.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_block.php │ │ │ ├── comments_after_delete_list.php │ │ │ ├── comments_after_refuse.php │ │ │ ├── content_after_restore.php │ │ │ ├── content_after_trash_put.php │ │ │ ├── content_before_delete.php │ │ │ ├── content_groups_before_delete.php │ │ │ ├── cron_trash.php │ │ │ └── menu_moderation.php │ │ └── model.php │ ├── photos │ │ ├── actions │ │ │ ├── camera.php │ │ │ ├── delete.php │ │ │ ├── download.php │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ ├── more.php │ │ │ ├── set_cover.php │ │ │ ├── upload.php │ │ │ └── view.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_albums_ctype_menu.php │ │ │ ├── admin_subscriptions_list.php │ │ │ ├── comments_targets.php │ │ │ ├── content_albums_after_add.php │ │ │ ├── content_albums_after_delete.php │ │ │ ├── content_albums_before_item.php │ │ │ ├── content_albums_before_list.php │ │ │ ├── content_albums_item_html.php │ │ │ ├── content_albums_items_html.php │ │ │ ├── fulltext_search.php │ │ │ ├── sitemap_sources.php │ │ │ ├── sitemap_urls.php │ │ │ ├── subscribe_item_url.php │ │ │ ├── subscribe_list_title.php │ │ │ ├── subscription_match_list.php │ │ │ └── user_delete.php │ │ ├── model.php │ │ ├── routes.php │ │ └── widgets │ │ │ └── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── queue │ │ └── frontend.php │ ├── rating │ │ ├── actions │ │ │ ├── info.php │ │ │ └── vote.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_content_dataset_fields_list.php │ │ │ ├── admin_content_filter.php │ │ │ ├── content_after_delete.php │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── photos_after_delete_list.php │ │ │ ├── photos_before_item.php │ │ │ ├── user_delete.php │ │ │ └── user_notify_types.php │ │ └── model.php │ ├── recaptcha │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ └── hooks │ │ │ ├── captcha_html.php │ │ │ ├── captcha_list.php │ │ │ └── captcha_validate.php │ ├── redirect │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ └── hooks │ │ │ └── engine_start.php │ ├── renderer │ │ ├── frontend.php │ │ └── hooks │ │ │ └── middleware_scss.php │ ├── rss │ │ ├── actions │ │ │ └── feed.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── edit.php │ │ │ │ └── index.php │ │ │ ├── forms │ │ │ │ └── form_feed.php │ │ │ └── grids │ │ │ │ └── grid_feeds.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── content_before_category.php │ │ │ ├── content_before_profile.php │ │ │ ├── ctype_after_add.php │ │ │ ├── ctype_after_delete.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── ctype_before_add.php │ │ │ ├── ctype_before_edit.php │ │ │ └── ctype_before_update.php │ │ └── model.php │ ├── search │ │ ├── actions │ │ │ ├── index.php │ │ │ └── opensearch.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── before_print_head.php │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ └── photos_before_item.php │ │ ├── model.php │ │ └── widgets │ │ │ └── search │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── sitemap │ │ ├── actions │ │ │ ├── index.php │ │ │ └── robots.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ └── hooks │ │ │ ├── cron_generate.php │ │ │ └── engine_start.php │ ├── subscriptions │ │ ├── actions │ │ │ ├── email_unsubscribe.php │ │ │ ├── guest_confirm.php │ │ │ ├── list_subscribers.php │ │ │ ├── subscribe.php │ │ │ ├── unsubscribe.php │ │ │ └── view_list.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── delete.php │ │ │ │ └── list.php │ │ │ ├── forms │ │ │ │ └── form_options.php │ │ │ └── grids │ │ │ │ └── grid_subscriptions.php │ │ ├── forms │ │ │ └── form_guest.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── content_after_add_approve.php │ │ │ ├── content_category_after_update.php │ │ │ ├── content_filter_buttons_html.php │ │ │ ├── content_photos_after_add.php │ │ │ ├── content_toolbar_html.php │ │ │ ├── cron_delete_expired_unconfirmed.php │ │ │ ├── ctype_basic_form.php │ │ │ ├── photos_toolbar_html.php │ │ │ ├── publish_delayed_content.php │ │ │ ├── send_letters.php │ │ │ ├── user_delete.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_tab_info.php │ │ │ └── user_tab_show.php │ │ ├── model.php │ │ └── widgets │ │ │ └── button │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── tags │ │ ├── actions │ │ │ ├── autocomplete.php │ │ │ └── index.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── delete.php │ │ │ │ ├── edit.php │ │ │ │ ├── index.php │ │ │ │ └── recount.php │ │ │ ├── forms │ │ │ │ ├── form_options.php │ │ │ │ └── form_tag.php │ │ │ └── grids │ │ │ │ └── grid_tags.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── content_after_add.php │ │ │ ├── content_after_delete.php │ │ │ ├── content_before_item.php │ │ │ ├── content_before_list.php │ │ │ ├── content_before_update.php │ │ │ ├── content_item_form.php │ │ │ ├── ctype_basic_form.php │ │ │ └── ctype_lists_context.php │ │ ├── model.php │ │ └── widgets │ │ │ └── cloud │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── typograph │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── index.php │ │ │ │ ├── presets_add.php │ │ │ │ ├── presets_delete.php │ │ │ │ ├── presets_edit.php │ │ │ │ └── tags_options.php │ │ │ ├── forms │ │ │ │ └── form_preset.php │ │ │ └── grids │ │ │ │ └── grid_presets.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── html_filter.php │ │ │ └── images_before_upload.php │ │ └── model.php │ ├── users │ │ ├── actions │ │ │ ├── friend_add.php │ │ │ ├── friend_delete.php │ │ │ ├── index.php │ │ │ ├── item_childs_view.php │ │ │ ├── karma_vote.php │ │ │ ├── keep_in_subscribers.php │ │ │ ├── notices.php │ │ │ ├── profile.php │ │ │ ├── profile_content.php │ │ │ ├── profile_delete.php │ │ │ ├── profile_edit.php │ │ │ ├── profile_edit_notices.php │ │ │ ├── profile_edit_password.php │ │ │ ├── profile_edit_privacy.php │ │ │ ├── profile_edit_sessions.php │ │ │ ├── profile_edit_sessions_delete.php │ │ │ ├── profile_edit_theme.php │ │ │ ├── profile_friends.php │ │ │ ├── profile_invites.php │ │ │ ├── profile_karma.php │ │ │ ├── profile_lock.php │ │ │ ├── profile_restore.php │ │ │ ├── profile_subscribers.php │ │ │ ├── profile_tab.php │ │ │ ├── status.php │ │ │ ├── status_delete.php │ │ │ ├── subscribe.php │ │ │ └── unsubscribe.php │ │ ├── backend.php │ │ ├── backend │ │ │ ├── actions │ │ │ │ ├── fields.php │ │ │ │ ├── fields_add.php │ │ │ │ ├── fields_delete.php │ │ │ │ ├── fields_edit.php │ │ │ │ ├── migrations.php │ │ │ │ ├── migrations_add.php │ │ │ │ ├── migrations_delete.php │ │ │ │ ├── migrations_edit.php │ │ │ │ ├── tabs.php │ │ │ │ └── tabs_edit.php │ │ │ ├── forms │ │ │ │ ├── form_field.php │ │ │ │ ├── form_migration.php │ │ │ │ ├── form_options.php │ │ │ │ └── form_tab.php │ │ │ └── grids │ │ │ │ ├── grid_fields.php │ │ │ │ ├── grid_migrations.php │ │ │ │ └── grid_tabs.php │ │ ├── forms │ │ │ ├── form_lock.php │ │ │ └── form_password.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_block.php │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── auth_login.php │ │ │ ├── content_before_childs.php │ │ │ ├── content_privacy_types.php │ │ │ ├── content_view_hidden.php │ │ │ ├── cron_migration.php │ │ │ ├── cron_sessionclean.php │ │ │ ├── ctype_relation_childs.php │ │ │ ├── languages_forms.php │ │ │ ├── menu_users.php │ │ │ ├── rating_vote.php │ │ │ ├── sitemap_sources.php │ │ │ ├── sitemap_urls.php │ │ │ ├── user_notify_types.php │ │ │ ├── user_preloaded.php │ │ │ ├── user_privacy_types.php │ │ │ ├── user_tab_info.php │ │ │ ├── wall_after_add.php │ │ │ ├── wall_after_delete.php │ │ │ └── wall_permissions.php │ │ ├── model.php │ │ └── widgets │ │ │ ├── avatar │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ ├── list │ │ │ ├── options.form.php │ │ │ └── widget.php │ │ │ └── online │ │ │ ├── options.form.php │ │ │ └── widget.php │ ├── wall │ │ ├── actions │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ ├── get_replies.php │ │ │ └── submit.php │ │ ├── backend.php │ │ ├── backend │ │ │ └── forms │ │ │ │ └── form_options.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── admin_dashboard_chart.php │ │ │ ├── form_groups_options.php │ │ │ ├── form_users_options.php │ │ │ ├── process_render_groups_group_view.php │ │ │ ├── process_render_users_profile_view.php │ │ │ ├── user_add_status.php │ │ │ ├── user_delete.php │ │ │ ├── user_notify_types.php │ │ │ └── user_privacy_types.php │ │ └── model.php │ ├── widgets │ │ ├── backend │ │ │ └── model.php │ │ ├── frontend.php │ │ ├── hooks │ │ │ ├── languages_forms.php │ │ │ └── page_is_allowed.php │ │ └── model.php │ └── wysiwygs │ │ ├── actions │ │ └── links_list.php │ │ ├── backend.php │ │ ├── backend │ │ ├── actions │ │ │ ├── presets.php │ │ │ ├── presets_add.php │ │ │ ├── presets_delete.php │ │ │ ├── presets_edit.php │ │ │ └── wysiwyg_options.php │ │ ├── forms │ │ │ └── form_preset.php │ │ └── grids │ │ │ └── grid_presets.php │ │ ├── frontend.php │ │ └── model.php ├── core │ ├── action.php │ ├── autoloader.php │ ├── backend.php │ ├── cache.php │ ├── cachefiles.php │ ├── cachememcache.php │ ├── cachememcached.php │ ├── cacheredis.php │ ├── config.php │ ├── configs.php │ ├── controller.php │ ├── core.php │ ├── database.php │ ├── debugging.php │ ├── eventsmanager.php │ ├── form.php │ ├── formfield.php │ ├── frontend.php │ ├── grid.php │ ├── images.php │ ├── installer.php │ ├── mailer.php │ ├── mimetypes.php │ ├── model.php │ ├── nestedsets.php │ ├── paginator.php │ ├── permissions.php │ ├── queue.php │ ├── request.php │ ├── response.php │ ├── template.php │ ├── updater.php │ ├── uploader.php │ ├── uploadfile.php │ ├── user.php │ └── widget.php ├── fields │ ├── age.php │ ├── captcha.php │ ├── caption.php │ ├── category.php │ ├── checkbox.php │ ├── child.php │ ├── city.php │ ├── color.php │ ├── date.php │ ├── fieldsgroup.php │ ├── file.php │ ├── forms.php │ ├── hidden.php │ ├── html.php │ ├── htmlcross.php │ ├── htmlhint.php │ ├── image.php │ ├── images.php │ ├── list.php │ ├── listbitmask.php │ ├── listgroups.php │ ├── listmultiple.php │ ├── number.php │ ├── parent.php │ ├── string.php │ ├── text.php │ ├── toolbar.php │ ├── url.php │ ├── user.php │ └── users.php ├── languages │ ├── en │ │ ├── controllers │ │ │ ├── ace │ │ │ │ └── ace.php │ │ │ ├── activity │ │ │ │ ├── activity.php │ │ │ │ └── widgets │ │ │ │ │ └── list.php │ │ │ ├── admin │ │ │ │ └── admin.php │ │ │ ├── auth │ │ │ │ └── auth.php │ │ │ ├── authga │ │ │ │ └── authga.php │ │ │ ├── bootstrap4 │ │ │ │ └── bootstrap4.php │ │ │ ├── comments │ │ │ │ ├── comments.php │ │ │ │ └── widgets │ │ │ │ │ └── list.php │ │ │ ├── content │ │ │ │ ├── content.php │ │ │ │ └── widgets │ │ │ │ │ ├── author.php │ │ │ │ │ ├── categories.php │ │ │ │ │ ├── fields.php │ │ │ │ │ ├── list.php │ │ │ │ │ └── slider.php │ │ │ ├── csp │ │ │ │ └── csp.php │ │ │ ├── files │ │ │ │ └── files.php │ │ │ ├── forms │ │ │ │ └── forms.php │ │ │ ├── geo │ │ │ │ └── geo.php │ │ │ ├── groups │ │ │ │ ├── groups.php │ │ │ │ └── widgets │ │ │ │ │ └── list.php │ │ │ ├── images │ │ │ │ └── images.php │ │ │ ├── languages │ │ │ │ └── languages.php │ │ │ ├── markitup │ │ │ │ └── markitup.php │ │ │ ├── messages │ │ │ │ └── messages.php │ │ │ ├── moderation │ │ │ │ └── moderation.php │ │ │ ├── photos │ │ │ │ └── photos.php │ │ │ ├── rating │ │ │ │ └── rating.php │ │ │ ├── recaptcha │ │ │ │ └── recaptcha.php │ │ │ ├── redactor │ │ │ │ └── redactor.php │ │ │ ├── redirect │ │ │ │ └── redirect.php │ │ │ ├── rss │ │ │ │ └── rss.php │ │ │ ├── search │ │ │ │ ├── search.php │ │ │ │ └── widgets │ │ │ │ │ └── search.php │ │ │ ├── sitemap │ │ │ │ └── sitemap.php │ │ │ ├── subscriptions │ │ │ │ ├── subscriptions.php │ │ │ │ └── widgets │ │ │ │ │ └── button.php │ │ │ ├── tags │ │ │ │ └── tags.php │ │ │ ├── tinymce │ │ │ │ └── tinymce.php │ │ │ ├── typograph │ │ │ │ └── typograph.php │ │ │ ├── users │ │ │ │ ├── users.php │ │ │ │ └── widgets │ │ │ │ │ ├── avatar.php │ │ │ │ │ ├── list.php │ │ │ │ │ └── online.php │ │ │ ├── wall │ │ │ │ └── wall.php │ │ │ └── wysiwygs │ │ │ │ └── wysiwygs.php │ │ ├── fields │ │ │ ├── category │ │ │ │ └── category.php │ │ │ ├── htmlcross │ │ │ │ └── htmlcross.php │ │ │ └── htmlhint │ │ │ │ └── htmlhint.php │ │ ├── functions.php │ │ ├── language.php │ │ ├── letters │ │ │ ├── comments_new.txt │ │ │ ├── comments_reply.txt │ │ │ ├── content_date_pub_end.txt │ │ │ ├── email_verify.txt │ │ │ ├── email_verify_notice.txt │ │ │ ├── groups_change_owner.txt │ │ │ ├── groups_invite.txt │ │ │ ├── groups_request.txt │ │ │ ├── groups_request_decline.txt │ │ │ ├── messages_new.txt │ │ │ ├── moderation.txt │ │ │ ├── moderation_approved.txt │ │ │ ├── moderation_comment_approved.txt │ │ │ ├── moderation_comment_refused.txt │ │ │ ├── moderation_refused.txt │ │ │ ├── moderation_return.txt │ │ │ ├── moderation_rework.txt │ │ │ ├── reg_restore.txt │ │ │ ├── reg_verify.txt │ │ │ ├── subscribe_new_item.txt │ │ │ ├── subscribe_new_list.txt │ │ │ ├── subscriptions_guest_confirm.txt │ │ │ ├── users_friend_add.txt │ │ │ ├── users_friend_delete.txt │ │ │ ├── users_invite.txt │ │ │ └── wall_reply.txt │ │ ├── stopwords │ │ │ └── stopwords.php │ │ ├── templates │ │ │ ├── admincoreui │ │ │ │ └── admin │ │ │ │ │ └── intro │ │ │ │ │ └── widgets │ │ │ │ │ └── widgets.php │ │ │ ├── default.php │ │ │ └── modern.php │ │ └── widgets │ │ │ ├── html.php │ │ │ ├── menu.php │ │ │ ├── template.php │ │ │ └── text.php │ └── ru │ │ ├── controllers │ │ ├── ace │ │ │ └── ace.php │ │ ├── activity │ │ │ ├── activity.php │ │ │ └── widgets │ │ │ │ └── list.php │ │ ├── admin │ │ │ └── admin.php │ │ ├── auth │ │ │ └── auth.php │ │ ├── authga │ │ │ └── authga.php │ │ ├── bootstrap4 │ │ │ └── bootstrap4.php │ │ ├── comments │ │ │ ├── comments.php │ │ │ └── widgets │ │ │ │ └── list.php │ │ ├── content │ │ │ ├── content.php │ │ │ └── widgets │ │ │ │ ├── author.php │ │ │ │ ├── categories.php │ │ │ │ ├── fields.php │ │ │ │ ├── list.php │ │ │ │ └── slider.php │ │ ├── csp │ │ │ └── csp.php │ │ ├── files │ │ │ └── files.php │ │ ├── forms │ │ │ └── forms.php │ │ ├── geo │ │ │ └── geo.php │ │ ├── groups │ │ │ ├── groups.php │ │ │ └── widgets │ │ │ │ └── list.php │ │ ├── images │ │ │ └── images.php │ │ ├── languages │ │ │ └── languages.php │ │ ├── markitup │ │ │ └── markitup.php │ │ ├── messages │ │ │ └── messages.php │ │ ├── moderation │ │ │ └── moderation.php │ │ ├── photos │ │ │ └── photos.php │ │ ├── rating │ │ │ └── rating.php │ │ ├── recaptcha │ │ │ └── recaptcha.php │ │ ├── redactor │ │ │ └── redactor.php │ │ ├── redirect │ │ │ └── redirect.php │ │ ├── rss │ │ │ └── rss.php │ │ ├── search │ │ │ ├── search.php │ │ │ └── widgets │ │ │ │ └── search.php │ │ ├── sitemap │ │ │ └── sitemap.php │ │ ├── subscriptions │ │ │ ├── subscriptions.php │ │ │ └── widgets │ │ │ │ └── button.php │ │ ├── tags │ │ │ └── tags.php │ │ ├── tinymce │ │ │ └── tinymce.php │ │ ├── typograph │ │ │ └── typograph.php │ │ ├── users │ │ │ ├── users.php │ │ │ └── widgets │ │ │ │ ├── avatar.php │ │ │ │ ├── list.php │ │ │ │ └── online.php │ │ ├── wall │ │ │ └── wall.php │ │ └── wysiwygs │ │ │ └── wysiwygs.php │ │ ├── fields │ │ ├── category │ │ │ └── category.php │ │ ├── htmlcross │ │ │ └── htmlcross.php │ │ └── htmlhint │ │ │ └── htmlhint.php │ │ ├── functions.php │ │ ├── language.php │ │ ├── letters │ │ ├── comments_new.txt │ │ ├── comments_reply.txt │ │ ├── content_date_pub_end.txt │ │ ├── email_verify.txt │ │ ├── email_verify_notice.txt │ │ ├── groups_change_owner.txt │ │ ├── groups_invite.txt │ │ ├── groups_request.txt │ │ ├── groups_request_decline.txt │ │ ├── messages_new.txt │ │ ├── moderation.txt │ │ ├── moderation_approved.txt │ │ ├── moderation_comment_approved.txt │ │ ├── moderation_comment_refused.txt │ │ ├── moderation_refused.txt │ │ ├── moderation_return.txt │ │ ├── moderation_rework.txt │ │ ├── reg_restore.txt │ │ ├── reg_verify.txt │ │ ├── subscribe_new_item.txt │ │ ├── subscribe_new_list.txt │ │ ├── subscriptions_guest_confirm.txt │ │ ├── users_friend_add.txt │ │ ├── users_friend_delete.txt │ │ ├── users_invite.txt │ │ └── wall_reply.txt │ │ ├── stopwords │ │ └── stopwords.php │ │ ├── templates │ │ ├── admincoreui │ │ │ └── admin │ │ │ │ └── intro │ │ │ │ └── widgets │ │ │ │ └── widgets.php │ │ ├── default.php │ │ └── modern.php │ │ └── widgets │ │ ├── html.php │ │ ├── menu.php │ │ ├── template.php │ │ └── text.php ├── libs │ ├── files.helper.php │ ├── geshi │ │ ├── geshi.php │ │ └── geshi │ │ │ ├── css.php │ │ │ ├── html.php │ │ │ ├── javascript.php │ │ │ ├── mysql.php │ │ │ ├── php.php │ │ │ └── sql.php │ ├── google_authenticator.class.php │ ├── html.helper.php │ ├── idna_convert.class.php │ ├── jevix.class.php │ ├── lastrss.class.php │ ├── mobile_detect.class.php │ ├── phpmailer │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ ├── SMTP.php │ │ └── language │ │ │ ├── phpmailer.lang-af.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-as.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-bn.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-cs.php │ │ │ ├── phpmailer.lang-da.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hi.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-hy.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-ku.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-mg.php │ │ │ ├── phpmailer.lang-mn.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nb.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-pt_br.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-si.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sr.php │ │ │ ├── phpmailer.lang-sr_latn.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tl.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-ur.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ ├── scssphp │ │ ├── Base │ │ │ └── Range.php │ │ ├── Block.php │ │ ├── Block │ │ │ ├── AtRootBlock.php │ │ │ ├── CallableBlock.php │ │ │ ├── ContentBlock.php │ │ │ ├── DirectiveBlock.php │ │ │ ├── EachBlock.php │ │ │ ├── ElseBlock.php │ │ │ ├── ElseifBlock.php │ │ │ ├── ForBlock.php │ │ │ ├── IfBlock.php │ │ │ ├── MediaBlock.php │ │ │ ├── NestedPropertyBlock.php │ │ │ └── WhileBlock.php │ │ ├── Cache.php │ │ ├── Colors.php │ │ ├── CompilationResult.php │ │ ├── Compiler.php │ │ ├── Compiler │ │ │ ├── CachedResult.php │ │ │ └── Environment.php │ │ ├── Exception │ │ │ ├── CompilerException.php │ │ │ ├── ParserException.php │ │ │ ├── RangeException.php │ │ │ ├── SassException.php │ │ │ ├── SassScriptException.php │ │ │ └── ServerException.php │ │ ├── Formatter.php │ │ ├── Formatter │ │ │ ├── Compact.php │ │ │ ├── Compressed.php │ │ │ ├── Crunched.php │ │ │ ├── Debug.php │ │ │ ├── Expanded.php │ │ │ ├── Nested.php │ │ │ └── OutputBlock.php │ │ ├── Logger │ │ │ ├── LoggerInterface.php │ │ │ ├── QuietLogger.php │ │ │ └── StreamLogger.php │ │ ├── Node.php │ │ ├── Node │ │ │ └── Number.php │ │ ├── OutputStyle.php │ │ ├── Parser.php │ │ ├── SourceMap │ │ │ ├── Base64.php │ │ │ ├── Base64VLQ.php │ │ │ └── SourceMapGenerator.php │ │ ├── Type.php │ │ ├── Util.php │ │ ├── Util │ │ │ └── Path.php │ │ ├── ValueConverter.php │ │ ├── Version.php │ │ └── Warn.php │ ├── spyc.class.php │ ├── strings.helper.php │ └── template.helper.php ├── traits │ ├── controllers │ │ ├── actions │ │ │ ├── deleteItem.php │ │ │ ├── formFieldItem.php │ │ │ ├── formItem.php │ │ │ └── listgrid.php │ │ └── models │ │ │ ├── fieldable.php │ │ │ └── transactable.php │ ├── corePropertyLoadable.php │ ├── eventDispatcher.php │ ├── oneable.php │ └── services │ │ └── fieldsParseable.php └── widgets │ ├── html │ ├── options.form.php │ └── widget.php │ ├── menu │ ├── options.form.php │ └── widget.php │ ├── template │ ├── options.form.php │ └── widget.php │ └── text │ ├── options.form.php │ └── widget.php ├── templates ├── .htaccess ├── admincoreui │ ├── admin.tpl.php │ ├── assets │ │ ├── errors │ │ │ ├── forbidden.tpl.php │ │ │ └── notfound.tpl.php │ │ └── ui │ │ │ ├── breadcrumbs.tpl.php │ │ │ ├── form.tpl.php │ │ │ └── grid-perms.tpl.php │ ├── controllers │ │ ├── activity │ │ │ └── backend │ │ │ │ └── admin_dashboard_block_activity.tpl.php │ │ ├── admin │ │ │ ├── addons_list.tpl.php │ │ │ ├── addons_list_data.tpl.php │ │ │ ├── category_form.tpl.php │ │ │ ├── check_ftp.tpl.php │ │ │ ├── confirm_login.tpl.php │ │ │ ├── content.tpl.php │ │ │ ├── content_cats_add.tpl.php │ │ │ ├── content_cats_order.tpl.php │ │ │ ├── content_item_move.tpl.php │ │ │ ├── content_items_edit.tpl.php │ │ │ ├── content_items_edit_save.tpl.php │ │ │ ├── controllers_edit.tpl.php │ │ │ ├── controllers_events.tpl.php │ │ │ ├── controllers_moderators.tpl.php │ │ │ ├── controllers_options.tpl.php │ │ │ ├── controllers_perms.tpl.php │ │ │ ├── credits.tpl.php │ │ │ ├── ctypes_basic.tpl.php │ │ │ ├── ctypes_dataset.tpl.php │ │ │ ├── ctypes_field.tpl.php │ │ │ ├── ctypes_filter.tpl.php │ │ │ ├── ctypes_filters_error.tpl.php │ │ │ ├── ctypes_labels.tpl.php │ │ │ ├── ctypes_moderator.tpl.php │ │ │ ├── ctypes_moderators.tpl.php │ │ │ ├── ctypes_perms.tpl.php │ │ │ ├── ctypes_prop.tpl.php │ │ │ ├── ctypes_props.tpl.php │ │ │ ├── ctypes_relation.tpl.php │ │ │ ├── form_field.tpl.php │ │ │ ├── grid_advanced_filter.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── index_chart.tpl.php │ │ │ ├── index_news.tpl.php │ │ │ ├── index_news_data.tpl.php │ │ │ ├── index_page_settings.tpl.php │ │ │ ├── index_resources.tpl.php │ │ │ ├── index_sysinfo.tpl.php │ │ │ ├── install_finish.tpl.php │ │ │ ├── install_ftp.tpl.php │ │ │ ├── install_package_files.tpl.php │ │ │ ├── install_package_info.tpl.php │ │ │ ├── install_upload.tpl.php │ │ │ ├── item_form.tpl.php │ │ │ ├── mail_check.tpl.php │ │ │ ├── menu.tpl.php │ │ │ ├── menu_form.tpl.php │ │ │ ├── menu_item.tpl.php │ │ │ ├── notices.tpl.php │ │ │ ├── settings.tpl.php │ │ │ ├── settings_check_nested.tpl.php │ │ │ ├── settings_mime.tpl.php │ │ │ ├── settings_scheduler_task.tpl.php │ │ │ ├── settings_theme.tpl.php │ │ │ ├── styles.css │ │ │ ├── update.tpl.php │ │ │ ├── user.tpl.php │ │ │ ├── users.tpl.php │ │ │ ├── users_group.tpl.php │ │ │ ├── users_group_perms.tpl.php │ │ │ ├── widget_edit_layout.tpl.php │ │ │ ├── widgets.tpl.php │ │ │ ├── widgets_export_scheme.tpl.php │ │ │ ├── widgets_import_scheme.tpl.php │ │ │ ├── widgets_page.tpl.php │ │ │ ├── widgets_rows.tpl.php │ │ │ └── widgets_settings.tpl.php │ │ ├── auth │ │ │ └── backend │ │ │ │ └── send_invites.tpl.php │ │ ├── comments │ │ │ └── backend │ │ │ │ └── text_edit.tpl.php │ │ ├── csp │ │ │ └── backend │ │ │ │ └── options.tpl.php │ │ ├── forms │ │ │ └── backend │ │ │ │ ├── add.tpl.php │ │ │ │ ├── fields_add.tpl.php │ │ │ │ └── view.tpl.php │ │ ├── geo │ │ │ └── backend │ │ │ │ ├── city.tpl.php │ │ │ │ ├── country.tpl.php │ │ │ │ └── region.tpl.php │ │ ├── groups │ │ │ └── backend │ │ │ │ └── field.tpl.php │ │ ├── images │ │ │ └── backend │ │ │ │ └── preset.tpl.php │ │ ├── messages │ │ │ └── backend │ │ │ │ └── pmailing.tpl.php │ │ ├── moderation │ │ │ └── backend │ │ │ │ ├── admin_dashboard_block.tpl.php │ │ │ │ ├── admin_dashboard_trash_block.tpl.php │ │ │ │ ├── logs.tpl.php │ │ │ │ └── trash_left_time.tpl.php │ │ ├── rss │ │ │ └── backend │ │ │ │ └── edit.tpl.php │ │ ├── sitemap │ │ │ └── backend │ │ │ │ ├── options.tpl.php │ │ │ │ └── styles.css │ │ ├── tags │ │ │ └── backend │ │ │ │ └── tag.tpl.php │ │ ├── typograph │ │ │ └── backend │ │ │ │ └── preset.tpl.php │ │ ├── users │ │ │ └── backend │ │ │ │ ├── admin_dashboard_online_block.tpl.php │ │ │ │ └── field.tpl.php │ │ └── wysiwygs │ │ │ └── backend │ │ │ └── preset.tpl.php │ ├── css │ │ ├── datatables.css │ │ ├── datatree.css │ │ ├── jquery-chosen.css │ │ ├── jquery-ui.css │ │ ├── style.css │ │ └── vendors │ │ │ ├── introjs │ │ │ ├── introjs.min.css │ │ │ └── themes │ │ │ │ └── introjs-modern.css │ │ │ ├── simple-line-icons │ │ │ ├── css │ │ │ │ └── simple-line-icons.css │ │ │ └── fonts │ │ │ │ ├── simple-line-icons.eot │ │ │ │ ├── simple-line-icons.svg │ │ │ │ ├── simple-line-icons.ttf │ │ │ │ ├── simple-line-icons.woff │ │ │ │ └── simple-line-icons.woff2 │ │ │ └── toastr │ │ │ └── toastr.min.css │ ├── images │ │ ├── datatree │ │ │ ├── drag_indicator.svg │ │ │ ├── icons.gif │ │ │ ├── loading.svg │ │ │ └── vline.gif │ │ ├── favicons │ │ │ └── favicon_admin.ico │ │ ├── header_bg.jpg │ │ ├── jquery-ui │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── languages │ │ │ ├── en.svg │ │ │ └── ru.svg │ │ ├── logo-custom.svg │ │ └── logo.svg │ ├── js │ │ ├── admin-chart.js │ │ ├── admin-content.js │ │ ├── admin-core.js │ │ ├── admin-csp.js │ │ ├── admin-dashboard.js │ │ ├── admin-menu.js │ │ ├── admin-moderators.js │ │ ├── admin-prop.js │ │ ├── admin-props.js │ │ ├── admin-relation.js │ │ ├── admin-scheme.js │ │ ├── admin-typograph.js │ │ ├── admin-users.js │ │ ├── admin-widgets-page.js │ │ ├── admin-widgets.js │ │ ├── admin-wysiwygs.js │ │ └── vendors │ │ │ ├── @coreui │ │ │ ├── coreui-plugin-chartjs-custom-tooltips │ │ │ │ └── js │ │ │ │ │ └── custom-tooltips.min.js │ │ │ └── coreui │ │ │ │ └── js │ │ │ │ └── coreui.min.js │ │ │ ├── introjs │ │ │ └── intro.min.js │ │ │ └── perfect-scrollbar │ │ │ └── js │ │ │ └── perfect-scrollbar.min.js │ └── manifest.php ├── default │ ├── admin.tpl.php │ ├── assets │ │ ├── errors │ │ │ ├── error.tpl.php │ │ │ ├── forbidden.tpl.php │ │ │ ├── notfound.tpl.php │ │ │ └── offline.tpl.php │ │ ├── fields │ │ │ ├── age.tpl.php │ │ │ ├── age_filter.tpl.php │ │ │ ├── captcha.tpl.php │ │ │ ├── caption.tpl.php │ │ │ ├── category_filter.tpl.php │ │ │ ├── checkbox.tpl.php │ │ │ ├── city.tpl.php │ │ │ ├── color.tpl.php │ │ │ ├── date.tpl.php │ │ │ ├── date_range.tpl.php │ │ │ ├── file.tpl.php │ │ │ ├── forms.tpl.php │ │ │ ├── hidden.tpl.php │ │ │ ├── html.tpl.php │ │ │ ├── htmlhint.tpl.php │ │ │ ├── image.tpl.php │ │ │ ├── images.tpl.php │ │ │ ├── images_view.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── list_dynamic.tpl.php │ │ │ ├── listbitmask.tpl.php │ │ │ ├── listgroups.tpl.php │ │ │ ├── listmultiple.tpl.php │ │ │ ├── number.tpl.php │ │ │ ├── number_range.tpl.php │ │ │ ├── number_range_slide.tpl.php │ │ │ ├── parent.tpl.php │ │ │ ├── rmfield.tpl.php │ │ │ ├── string.tpl.php │ │ │ ├── text.tpl.php │ │ │ ├── url.tpl.php │ │ │ ├── user.tpl.php │ │ │ └── users.tpl.php │ │ └── ui │ │ │ ├── breadcrumbs.tpl.php │ │ │ ├── confirm.tpl.php │ │ │ ├── controller_actions_menu.tpl.php │ │ │ ├── datasets-panel.tpl.php │ │ │ ├── debug.tpl.php │ │ │ ├── filter-panel.tpl.php │ │ │ ├── form.tpl.php │ │ │ ├── form_fields.tpl.php │ │ │ ├── grid-data.tpl.php │ │ │ ├── grid-perms.tpl.php │ │ │ ├── grid.tpl.php │ │ │ ├── menu.tpl.php │ │ │ ├── pagebar.tpl.php │ │ │ ├── pagination.tpl.php │ │ │ ├── redirect_continue.tpl.php │ │ │ └── typical_form.tpl.php │ ├── content │ │ ├── albums_item.tpl.php │ │ ├── albums_list.tpl.php │ │ ├── default_item.tpl.php │ │ ├── default_list.tpl.php │ │ ├── default_list_featured.tpl.php │ │ ├── default_list_table.tpl.php │ │ └── default_list_tiles.tpl.php │ ├── controllers │ │ ├── activity │ │ │ ├── backend │ │ │ │ ├── admin_dashboard_block_activity.tpl.php │ │ │ │ └── styles.css │ │ │ ├── index.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ └── list │ │ │ │ └── list.tpl.php │ │ ├── admin │ │ │ ├── addons_list.tpl.php │ │ │ ├── addons_list_data.tpl.php │ │ │ ├── check_ftp.tpl.php │ │ │ ├── confirm_login.tpl.php │ │ │ ├── content.tpl.php │ │ │ ├── content_cats_add.tpl.php │ │ │ ├── content_cats_order.tpl.php │ │ │ ├── content_item_move.tpl.php │ │ │ ├── content_items_edit.tpl.php │ │ │ ├── content_items_edit_save.tpl.php │ │ │ ├── controllers_edit.tpl.php │ │ │ ├── controllers_events.tpl.php │ │ │ ├── controllers_moderators.tpl.php │ │ │ ├── controllers_options.tpl.php │ │ │ ├── controllers_perms.tpl.php │ │ │ ├── credits.tpl.php │ │ │ ├── ctypes_basic.tpl.php │ │ │ ├── ctypes_dataset.tpl.php │ │ │ ├── ctypes_field.tpl.php │ │ │ ├── ctypes_field_options.tpl.php │ │ │ ├── ctypes_fields.tpl.php │ │ │ ├── ctypes_filter.tpl.php │ │ │ ├── ctypes_labels.tpl.php │ │ │ ├── ctypes_moderator.tpl.php │ │ │ ├── ctypes_moderators.tpl.php │ │ │ ├── ctypes_perms.tpl.php │ │ │ ├── ctypes_prop.tpl.php │ │ │ ├── ctypes_props.tpl.php │ │ │ ├── ctypes_relation.tpl.php │ │ │ ├── form_field.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── index_chart.tpl.php │ │ │ ├── index_news.tpl.php │ │ │ ├── index_news_data.tpl.php │ │ │ ├── index_page_settings.tpl.php │ │ │ ├── index_resources.tpl.php │ │ │ ├── index_sysinfo.tpl.php │ │ │ ├── install_finish.tpl.php │ │ │ ├── install_ftp.tpl.php │ │ │ ├── install_package_files.tpl.php │ │ │ ├── install_package_info.tpl.php │ │ │ ├── install_upload.tpl.php │ │ │ ├── item_form.tpl.php │ │ │ ├── mail_check.tpl.php │ │ │ ├── menu.tpl.php │ │ │ ├── menu_form.tpl.php │ │ │ ├── menu_item.tpl.php │ │ │ ├── settings.tpl.php │ │ │ ├── settings_check_nested.tpl.php │ │ │ ├── settings_scheduler_task.tpl.php │ │ │ ├── settings_theme.tpl.php │ │ │ ├── styles.css │ │ │ ├── update.tpl.php │ │ │ ├── user.tpl.php │ │ │ ├── users.tpl.php │ │ │ ├── users_filter.tpl.php │ │ │ ├── users_group.tpl.php │ │ │ ├── users_group_perms.tpl.php │ │ │ ├── widget_edit_layout.tpl.php │ │ │ ├── widgets.tpl.php │ │ │ ├── widgets_page.tpl.php │ │ │ └── widgets_settings.tpl.php │ │ ├── auth │ │ │ ├── backend │ │ │ │ └── send_invites.tpl.php │ │ │ ├── login.tpl.php │ │ │ ├── registration.tpl.php │ │ │ ├── reset.tpl.php │ │ │ ├── restore.tpl.php │ │ │ ├── verify.tpl.php │ │ │ └── widgets │ │ │ │ ├── auth │ │ │ │ └── auth.tpl.php │ │ │ │ └── register │ │ │ │ └── register.tpl.php │ │ ├── authga │ │ │ └── login_2fa.tpl.php │ │ ├── comments │ │ │ ├── backend │ │ │ │ └── text_edit.tpl.php │ │ │ ├── comment.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── list_index.tpl.php │ │ │ ├── list_moderation.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── tab_list.tpl.php │ │ │ └── widgets │ │ │ │ └── list │ │ │ │ └── list.tpl.php │ │ ├── content │ │ │ ├── category_form.tpl.php │ │ │ ├── category_view.tpl.php │ │ │ ├── folder_form.tpl.php │ │ │ ├── from_friends.tpl.php │ │ │ ├── item_bind_form.tpl.php │ │ │ ├── item_bind_list.tpl.php │ │ │ ├── item_childs_view.tpl.php │ │ │ ├── item_form.tpl.php │ │ │ ├── item_refuse.tpl.php │ │ │ ├── item_view.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── revision_form.tpl.php │ │ │ ├── trash.tpl.php │ │ │ ├── trash_empty.tpl.php │ │ │ └── widgets │ │ │ │ ├── categories │ │ │ │ └── categories.tpl.php │ │ │ │ ├── fields │ │ │ │ └── fields.tpl.php │ │ │ │ ├── filter │ │ │ │ └── filter.tpl.php │ │ │ │ ├── list │ │ │ │ ├── list.tpl.php │ │ │ │ ├── list_compact.tpl.php │ │ │ │ ├── list_featured.tpl.php │ │ │ │ └── list_tiles_big.tpl.php │ │ │ │ └── slider │ │ │ │ └── slider.tpl.php │ │ ├── error404 │ │ │ └── index.tpl.php │ │ ├── forms │ │ │ ├── backend │ │ │ │ ├── add.tpl.php │ │ │ │ ├── fields_add.tpl.php │ │ │ │ └── view.tpl.php │ │ │ ├── embed_layout.tpl.php │ │ │ ├── form_data.tpl.php │ │ │ ├── form_success.tpl.php │ │ │ ├── form_view.tpl.php │ │ │ ├── framejs.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ └── form │ │ │ │ └── form.tpl.php │ │ ├── frontpage │ │ │ └── index.tpl.php │ │ ├── geo │ │ │ ├── backend │ │ │ │ ├── city.tpl.php │ │ │ │ ├── country.tpl.php │ │ │ │ └── region.tpl.php │ │ │ └── widget.tpl.php │ │ ├── groups │ │ │ ├── backend │ │ │ │ └── field.tpl.php │ │ │ ├── change_owner.tpl.php │ │ │ ├── group_activity.tpl.php │ │ │ ├── group_confirm.tpl.php │ │ │ ├── group_content.tpl.php │ │ │ ├── group_delete.tpl.php │ │ │ ├── group_edit.tpl.php │ │ │ ├── group_edit_header.tpl.php │ │ │ ├── group_edit_requests.tpl.php │ │ │ ├── group_edit_role.tpl.php │ │ │ ├── group_edit_roles.tpl.php │ │ │ ├── group_edit_staff.tpl.php │ │ │ ├── group_edit_staff_item.tpl.php │ │ │ ├── group_header.tpl.php │ │ │ ├── group_members.tpl.php │ │ │ ├── group_unbind.tpl.php │ │ │ ├── group_view.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── invite.tpl.php │ │ │ ├── invite_friends.tpl.php │ │ │ ├── invite_users.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── set_roles.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ └── list │ │ │ │ └── list.tpl.php │ │ ├── images │ │ │ ├── backend │ │ │ │ └── preset.tpl.php │ │ │ ├── styles.css │ │ │ ├── upload_multi.tpl.php │ │ │ └── upload_single.tpl.php │ │ ├── messages │ │ │ ├── backend │ │ │ │ └── pmailing.tpl.php │ │ │ ├── contact.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── message.tpl.php │ │ │ └── notices.tpl.php │ │ ├── moderation │ │ │ ├── backend │ │ │ │ ├── admin_dashboard_block.tpl.php │ │ │ │ ├── admin_dashboard_trash_block.tpl.php │ │ │ │ ├── logs.tpl.php │ │ │ │ └── trash_left_time.tpl.php │ │ │ ├── empty.tpl.php │ │ │ ├── index.tpl.php │ │ │ └── styles.css │ │ ├── photos │ │ │ ├── album.tpl.php │ │ │ ├── camera.tpl.php │ │ │ ├── filter-panel.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── photos.tpl.php │ │ │ ├── styles.css │ │ │ ├── upload.tpl.php │ │ │ ├── view.tpl.php │ │ │ ├── view_photo_container.tpl.php │ │ │ ├── widget.tpl.php │ │ │ └── widgets │ │ │ │ └── list │ │ │ │ ├── list.tpl.php │ │ │ │ └── list_slider.tpl.php │ │ ├── rating │ │ │ ├── info.tpl.php │ │ │ ├── info_list.tpl.php │ │ │ ├── widget.tpl.php │ │ │ └── widget_stars.tpl.php │ │ ├── recaptcha │ │ │ └── captcha.tpl.php │ │ ├── redirect │ │ │ ├── index.tpl.php │ │ │ └── styles.css │ │ ├── rss │ │ │ ├── backend │ │ │ │ └── edit.tpl.php │ │ │ ├── feed.tpl.php │ │ │ └── yandex_feed.tpl.php │ │ ├── search │ │ │ ├── index.tpl.php │ │ │ ├── index_photos.tpl.php │ │ │ ├── opensearch.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ └── search │ │ │ │ └── search.tpl.php │ │ ├── sitemap │ │ │ ├── backend │ │ │ │ ├── options.tpl.php │ │ │ │ └── styles.css │ │ │ ├── index.tpl.php │ │ │ ├── sitemap.tpl.php │ │ │ ├── sitemap_index.tpl.php │ │ │ └── styles.css │ │ ├── subscriptions │ │ │ ├── button.tpl.php │ │ │ ├── guest_form.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── list_subscribers.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ └── button │ │ │ │ └── button.tpl.php │ │ ├── tags │ │ │ ├── backend │ │ │ │ └── tag.tpl.php │ │ │ ├── search.tpl.php │ │ │ ├── styles.css │ │ │ ├── tags.tpl.php │ │ │ └── widgets │ │ │ │ └── cloud │ │ │ │ └── cloud.tpl.php │ │ ├── users │ │ │ ├── backend │ │ │ │ ├── admin_dashboard_online_block.tpl.php │ │ │ │ └── field.tpl.php │ │ │ ├── index.tpl.php │ │ │ ├── list.tpl.php │ │ │ ├── profile_closed.tpl.php │ │ │ ├── profile_content.tpl.php │ │ │ ├── profile_edit.tpl.php │ │ │ ├── profile_edit_header.tpl.php │ │ │ ├── profile_edit_notices.tpl.php │ │ │ ├── profile_edit_password.tpl.php │ │ │ ├── profile_edit_privacy.tpl.php │ │ │ ├── profile_edit_sessions.tpl.php │ │ │ ├── profile_edit_theme.tpl.php │ │ │ ├── profile_friends.tpl.php │ │ │ ├── profile_header.tpl.php │ │ │ ├── profile_invites.tpl.php │ │ │ ├── profile_invites_results.tpl.php │ │ │ ├── profile_karma.tpl.php │ │ │ ├── profile_tab.tpl.php │ │ │ ├── profile_view.tpl.php │ │ │ ├── styles.css │ │ │ └── widgets │ │ │ │ ├── avatar │ │ │ │ └── avatar.tpl.php │ │ │ │ ├── list │ │ │ │ └── list.tpl.php │ │ │ │ └── online │ │ │ │ └── online.tpl.php │ │ ├── wall │ │ │ ├── entry.tpl.php │ │ │ └── list.tpl.php │ │ ├── widgets │ │ │ └── access_error.tpl.php │ │ └── wysiwygs │ │ │ └── backend │ │ │ └── preset.tpl.php │ ├── css │ │ ├── animate.css │ │ ├── colorpicker.css │ │ ├── datatree.css │ │ ├── debug.css │ │ ├── jquery-chosen.css │ │ ├── jquery-owl.carousel.css │ │ ├── jquery-ui.css │ │ ├── theme-content.css │ │ ├── theme-errors.css │ │ ├── theme-gui.css │ │ ├── theme-layout.css │ │ ├── theme-modal.css │ │ ├── theme-text.css │ │ └── theme-widgets.css │ ├── images │ │ ├── admin │ │ │ ├── menu_active_bg.png │ │ │ ├── menu_bg.png │ │ │ ├── menu_hover_bg.png │ │ │ ├── pw_bg.png │ │ │ └── pw_sep.png │ │ ├── bg.gif │ │ ├── bg.png │ │ ├── bg_top.png │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── colorpicker │ │ │ └── colorpicker.png │ │ ├── comment_arrow.png │ │ ├── comment_vote.png │ │ ├── datatree │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ └── vline.gif │ │ ├── errors │ │ │ └── maintenance.png │ │ ├── folder64.png │ │ ├── fullscreen.png │ │ ├── icons │ │ │ ├── accept.png │ │ │ ├── add.png │ │ │ ├── admin │ │ │ │ ├── diag_bg.png │ │ │ │ ├── widget_disabled.png │ │ │ │ ├── widget_disabled_tab.png │ │ │ │ ├── widget_disabled_tab_prev.png │ │ │ │ ├── widget_drag.png │ │ │ │ ├── widget_drag_tab.png │ │ │ │ └── widget_drag_tab_prev.png │ │ │ ├── basket.png │ │ │ ├── basket_put.png │ │ │ ├── basket_remove.png │ │ │ ├── bell.png │ │ │ ├── blog.png │ │ │ ├── book_open.png │ │ │ ├── bullet_arrow_down.png │ │ │ ├── calendar-small.svg │ │ │ ├── camera.png │ │ │ ├── cancel.png │ │ │ ├── chartmap.png │ │ │ ├── check_small.png │ │ │ ├── checklist.png │ │ │ ├── clock-small.png │ │ │ ├── clock-small.svg │ │ │ ├── close.gif │ │ │ ├── close.png │ │ │ ├── coin.png │ │ │ ├── coins_add.png │ │ │ ├── coins_delete.png │ │ │ ├── comment-small.png │ │ │ ├── comment.png │ │ │ ├── config.png │ │ │ ├── controller.png │ │ │ ├── copy.png │ │ │ ├── cpanel.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── draft.png │ │ │ ├── drag.png │ │ │ ├── edit.png │ │ │ ├── error.png │ │ │ ├── eye-small.png │ │ │ ├── eye.png │ │ │ ├── file.png │ │ │ ├── filter.png │ │ │ ├── filter_delete.png │ │ │ ├── flag_check.png │ │ │ ├── flag_lock.png │ │ │ ├── folder-small.png │ │ │ ├── folder.png │ │ │ ├── folder_add.png │ │ │ ├── folder_delete.png │ │ │ ├── folder_edit.png │ │ │ ├── folders.png │ │ │ ├── folders_explorer.png │ │ │ ├── form.png │ │ │ ├── group.png │ │ │ ├── group_add.png │ │ │ ├── group_delete.png │ │ │ ├── help.png │ │ │ ├── images.png │ │ │ ├── info.png │ │ │ ├── install.png │ │ │ ├── item.png │ │ │ ├── key.png │ │ │ ├── labels.png │ │ │ ├── lock.png │ │ │ ├── logout.png │ │ │ ├── logs.png │ │ │ ├── mail.png │ │ │ ├── medal_bronze.png │ │ │ ├── medal_gold.png │ │ │ ├── medal_silver.png │ │ │ ├── menu.png │ │ │ ├── messages.png │ │ │ ├── move_to_folder.png │ │ │ ├── newspaper_add.png │ │ │ ├── newspaper_delete.png │ │ │ ├── next.png │ │ │ ├── onchecklist.png │ │ │ ├── package_go.png │ │ │ ├── page_gear.png │ │ │ ├── play.png │ │ │ ├── prev.png │ │ │ ├── profile.png │ │ │ ├── refresh.png │ │ │ ├── return.png │ │ │ ├── return_for_revision.png │ │ │ ├── rss.png │ │ │ ├── save.png │ │ │ ├── save_draft.png │ │ │ ├── search-glyph.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── shield.png │ │ │ ├── signature.png │ │ │ ├── site.png │ │ │ ├── slider-controls.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_none.png │ │ │ ├── subscribe.png │ │ │ ├── tag.png │ │ │ ├── transfer.png │ │ │ ├── unbind.png │ │ │ ├── unsubscribe.png │ │ │ ├── user-small.png │ │ │ ├── user-small.svg │ │ │ ├── user.png │ │ │ ├── user_add.png │ │ │ ├── user_delete.png │ │ │ ├── view_list.png │ │ │ ├── vote_thumbs.png │ │ │ └── www_page.png │ │ ├── icons32 │ │ │ ├── brick.png │ │ │ ├── folder.png │ │ │ ├── form_edit.png │ │ │ ├── layout.png │ │ │ ├── list_switch.png │ │ │ ├── medal_bronze.png │ │ │ ├── medal_gold.png │ │ │ ├── medal_silver.png │ │ │ ├── menu-icon.svg │ │ │ ├── menu.png │ │ │ ├── package_go.png │ │ │ ├── page.png │ │ │ ├── pages.png │ │ │ ├── settings.png │ │ │ ├── shape_align_left.png │ │ │ ├── update-black.png │ │ │ ├── update.png │ │ │ └── user.png │ │ ├── jquery-ui │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_fff_256x240.png │ │ ├── languages │ │ │ ├── en.svg │ │ │ └── ru.svg │ │ ├── loader16.gif │ │ ├── loader24.gif │ │ ├── loading.gif │ │ ├── logo.svg │ │ ├── modal │ │ │ ├── close.png │ │ │ └── controls.png │ │ ├── nav-arrow-down-white.png │ │ ├── nav-arrow-right-light.png │ │ ├── nav-arrow-right.png │ │ ├── nav-home.png │ │ ├── nav_sep.png │ │ ├── nophoto.png │ │ ├── photo-sprites.png │ │ ├── processing.gif │ │ ├── spacer.gif │ │ ├── video.play.png │ │ └── vline1px.png │ ├── js │ │ ├── admin-chart.js │ │ ├── admin-content.js │ │ ├── admin-core.js │ │ ├── admin-dashboard.js │ │ ├── admin-moderators.js │ │ ├── admin-props.js │ │ ├── admin-scheme.js │ │ ├── admin-users.js │ │ ├── admin-widgets.js │ │ ├── col-auto-height.js │ │ ├── colorpicker.js │ │ ├── comments.js │ │ ├── content-bind.js │ │ ├── content.js │ │ ├── core.js │ │ ├── datagrid-drag.js │ │ ├── datagrid-pagination.js │ │ ├── datagrid.js │ │ ├── datatree.js │ │ ├── fields │ │ │ ├── city.js │ │ │ ├── list_dynamic.js │ │ │ ├── string.js │ │ │ └── string_input.js │ │ ├── files.js │ │ ├── fileuploader.js │ │ ├── forms-constructor.js │ │ ├── geo.js │ │ ├── groups.js │ │ ├── i18n │ │ │ └── jquery-ui │ │ │ │ ├── en.js │ │ │ │ └── ru.js │ │ ├── images-upload.js │ │ ├── jquery-chosen.js │ │ ├── jquery-cookie.js │ │ ├── jquery-flex-images.js │ │ ├── jquery-modal.js │ │ ├── jquery-owl.carousel.js │ │ ├── jquery-scroll.js │ │ ├── jquery-ui.js │ │ ├── jquery-ui.touch-punch.js │ │ ├── jquery-upload.js │ │ ├── jquery.js │ │ ├── jquery.scrollbar.js │ │ ├── messages.js │ │ ├── modal.js │ │ ├── photos.js │ │ ├── rating.js │ │ ├── rating_stars.js │ │ ├── screenfull.js │ │ ├── slider.js │ │ ├── subscriptions.js │ │ ├── users.js │ │ ├── vendors │ │ │ ├── jquery.inputmask.min.js │ │ │ └── parallax │ │ │ │ └── parallax.min.js │ │ ├── wall.js │ │ ├── widgets.js │ │ └── widgets_options │ │ │ └── .gitignore │ ├── main.tpl.php │ ├── manifest.php │ ├── options.css.php │ ├── options.form.php │ ├── profiles │ │ ├── options.form.php │ │ └── styler.php │ ├── scheme.php │ └── widgets │ │ ├── html │ │ ├── html.tpl.php │ │ └── html_plain.tpl.php │ │ ├── menu │ │ └── menu.tpl.php │ │ ├── text │ │ ├── text.tpl.php │ │ └── text_plain.tpl.php │ │ ├── wrap_edit_links.tpl.php │ │ ├── wrapper.tpl.php │ │ ├── wrapper_plain.tpl.php │ │ └── wrapper_tabbed.tpl.php └── modern │ ├── assets │ ├── errors │ │ ├── error.tpl.php │ │ ├── forbidden.tpl.php │ │ ├── notfound.tpl.php │ │ └── offline.tpl.php │ ├── fields │ │ ├── age_filter.tpl.php │ │ ├── category_filter.tpl.php │ │ ├── checkbox.tpl.php │ │ ├── city.tpl.php │ │ ├── date.tpl.php │ │ ├── date_range.tpl.php │ │ ├── fieldsgroup.tpl.php │ │ ├── file.tpl.php │ │ ├── htmlhint.tpl.php │ │ ├── list.tpl.php │ │ ├── list_dynamic.tpl.php │ │ ├── list_radio.tpl.php │ │ ├── listbitmask.tpl.php │ │ ├── listgroups.tpl.php │ │ ├── listmultiple.tpl.php │ │ ├── number.tpl.php │ │ ├── number_range.tpl.php │ │ ├── number_range_slide.tpl.php │ │ ├── parent.tpl.php │ │ ├── string.tpl.php │ │ ├── text.tpl.php │ │ └── users.tpl.php │ └── ui │ │ ├── breadcrumbs.tpl.php │ │ ├── confirm.tpl.php │ │ ├── datasets-panel.tpl.php │ │ ├── debug.tpl.php │ │ ├── filter-panel.tpl.php │ │ ├── form.tpl.php │ │ ├── form_fields.tpl.php │ │ ├── grid-data.tpl.php │ │ ├── grid.tpl.php │ │ ├── menu-toolbar.tpl.php │ │ ├── menu.tpl.php │ │ ├── pagebar.tpl.php │ │ ├── pagination.tpl.php │ │ ├── pagination_small.tpl.php │ │ └── redirect_continue.tpl.php │ ├── audio │ └── new_message.mp3 │ ├── content │ ├── albums_item.tpl.php │ ├── albums_list.tpl.php │ ├── default_item.tpl.php │ ├── default_list.tpl.php │ ├── default_list_featured.tpl.php │ ├── default_list_table.tpl.php │ └── default_list_tiles.tpl.php │ ├── controllers │ ├── activity │ │ ├── index.tpl.php │ │ ├── list.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ └── list │ │ │ └── list.tpl.php │ ├── admin │ │ ├── settings_theme_icon_list.tpl.php │ │ └── widgets_scheme.tpl.php │ ├── auth │ │ ├── login.tpl.php │ │ ├── registration.tpl.php │ │ ├── reset.tpl.php │ │ ├── restore.tpl.php │ │ └── verify.tpl.php │ ├── comments │ │ ├── comment.tpl.php │ │ ├── index.tpl.php │ │ ├── list.tpl.php │ │ ├── list_index.tpl.php │ │ ├── list_moderation.tpl.php │ │ ├── profile_tab.tpl.php │ │ ├── tab_list.tpl.php │ │ └── widgets │ │ │ └── list │ │ │ └── list.tpl.php │ ├── content │ │ ├── category_form.tpl.php │ │ ├── category_view.tpl.php │ │ ├── folder_form.tpl.php │ │ ├── item_bind_form.tpl.php │ │ ├── item_bind_list.tpl.php │ │ ├── item_childs_view.tpl.php │ │ ├── item_form.tpl.php │ │ ├── item_refuse.tpl.php │ │ ├── item_view.tpl.php │ │ ├── trash.tpl.php │ │ ├── trash_empty.tpl.php │ │ └── widgets │ │ │ ├── author │ │ │ └── author.tpl.php │ │ │ ├── categories │ │ │ └── categories.tpl.php │ │ │ ├── fields │ │ │ └── fields.tpl.php │ │ │ ├── filter │ │ │ └── filter.tpl.php │ │ │ ├── list │ │ │ ├── list.tpl.php │ │ │ ├── list_albums.tpl.php │ │ │ ├── list_compact.tpl.php │ │ │ ├── list_featured.tpl.php │ │ │ └── list_tiles_big.tpl.php │ │ │ └── slider │ │ │ └── slider.tpl.php │ ├── error404 │ │ └── index.tpl.php │ ├── forms │ │ ├── embed_layout.tpl.php │ │ ├── form_data.tpl.php │ │ ├── form_success.tpl.php │ │ ├── form_view.tpl.php │ │ ├── framejs.tpl.php │ │ ├── index.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ └── form │ │ │ └── form.tpl.php │ ├── geo │ │ └── widget.tpl.php │ ├── groups │ │ ├── group_confirm.tpl.php │ │ ├── group_content.tpl.php │ │ ├── group_delete.tpl.php │ │ ├── group_edit.tpl.php │ │ ├── group_edit_header.tpl.php │ │ ├── group_edit_role.tpl.php │ │ ├── group_edit_roles.tpl.php │ │ ├── group_edit_staff.tpl.php │ │ ├── group_edit_staff_item.tpl.php │ │ ├── group_header.tpl.php │ │ ├── group_members.tpl.php │ │ ├── group_view.tpl.php │ │ ├── index.tpl.php │ │ ├── invite.tpl.php │ │ ├── invite_friends.tpl.php │ │ ├── invite_users.tpl.php │ │ ├── list.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ └── list │ │ │ └── list.tpl.php │ ├── images │ │ ├── styles.css │ │ ├── upload_multi.tpl.php │ │ └── upload_single.tpl.php │ ├── messages │ │ ├── contact.tpl.php │ │ ├── index.tpl.php │ │ ├── message.tpl.php │ │ ├── notices.tpl.php │ │ └── styles.css │ ├── moderation │ │ ├── empty.tpl.php │ │ └── index.tpl.php │ ├── photos │ │ ├── album.tpl.php │ │ ├── camera.tpl.php │ │ ├── filter-panel.tpl.php │ │ ├── photos.tpl.php │ │ ├── styles.css │ │ ├── upload.tpl.php │ │ ├── view.tpl.php │ │ ├── view_photo_container.tpl.php │ │ ├── widget.tpl.php │ │ └── widgets │ │ │ └── list │ │ │ ├── list.tpl.php │ │ │ └── list_slider.tpl.php │ ├── rating │ │ ├── info.tpl.php │ │ ├── info_list.tpl.php │ │ ├── widget.tpl.php │ │ └── widget_stars.tpl.php │ ├── redirect │ │ ├── index.tpl.php │ │ └── styles.css │ ├── search │ │ ├── index.tpl.php │ │ ├── index_photos.tpl.php │ │ ├── opensearch.tpl.php │ │ ├── search_form.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ └── search │ │ │ └── search.tpl.php │ ├── sitemap │ │ └── index.tpl.php │ ├── subscriptions │ │ ├── button.tpl.php │ │ ├── list.tpl.php │ │ ├── list_subscribers.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ └── button │ │ │ └── button.tpl.php │ ├── tags │ │ ├── search.tpl.php │ │ ├── styles.css │ │ ├── tags.tpl.php │ │ └── widgets │ │ │ └── cloud │ │ │ └── cloud.tpl.php │ ├── users │ │ ├── list.tpl.php │ │ ├── profile_closed.tpl.php │ │ ├── profile_content.tpl.php │ │ ├── profile_edit.tpl.php │ │ ├── profile_edit_header.tpl.php │ │ ├── profile_edit_sessions.tpl.php │ │ ├── profile_friends.tpl.php │ │ ├── profile_header.tpl.php │ │ ├── profile_karma.tpl.php │ │ ├── profile_tab.tpl.php │ │ ├── profile_view.tpl.php │ │ ├── styles.css │ │ └── widgets │ │ │ ├── avatar │ │ │ └── avatar.tpl.php │ │ │ ├── list │ │ │ └── list.tpl.php │ │ │ └── online │ │ │ └── online.tpl.php │ ├── wall │ │ ├── entry.tpl.php │ │ └── list.tpl.php │ └── widgets │ │ └── access_error.tpl.php │ ├── css │ ├── colorpicker.css │ ├── cropperjs.css │ ├── datatables.css │ ├── jquery-chosen.css │ ├── jquery-ui.css │ ├── photoswipe.css │ ├── slick.css │ ├── theme.css │ ├── toastr.css │ └── wysiwyg │ │ ├── markitup │ │ └── styles.css │ │ └── redactor │ │ └── styles.css │ ├── icon_list.php │ ├── images │ ├── 404.svg │ ├── bg.png │ ├── colorpicker │ │ └── colorpicker.png │ ├── favicons │ │ └── favicon.ico │ ├── icons │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── logo.svg │ ├── photoswipe │ │ ├── default-skin.png │ │ ├── default-skin.svg │ │ └── preloader.gif │ ├── small_logo.svg │ └── word_map.png │ ├── js │ ├── comments.js │ ├── content-bind.js │ ├── core.js │ ├── datagrid-vue.js │ ├── datagrid.js │ ├── fields │ │ ├── fieldsgroup.js │ │ ├── list_dynamic.js │ │ └── string.js │ ├── files.js │ ├── form-translate.js │ ├── geo.js │ ├── groups.js │ ├── i18n │ │ └── jquery-ui │ │ │ ├── en.js │ │ │ └── ru.js │ ├── images-upload.js │ ├── jquery-chosen.js │ ├── jquery-cookie.js │ ├── jquery-ui.js │ ├── jquery.js │ ├── messages.js │ ├── modal.js │ ├── photos.js │ ├── rating.js │ ├── rating_stars.js │ ├── search.js │ ├── subscriptions.js │ ├── users.js │ ├── vendors │ │ ├── bootstrap │ │ │ └── bootstrap.min.js │ │ ├── cropperjs │ │ │ └── cropper.min.js │ │ ├── filesaver.min.js │ │ ├── jquery.inputmask.min.js │ │ ├── list.min.js │ │ ├── parallax │ │ │ └── parallax.min.js │ │ ├── photoswipe │ │ │ └── photoswipe.min.js │ │ ├── popper.js │ │ │ └── js │ │ │ │ └── popper.min.js │ │ ├── slick │ │ │ └── slick.min.js │ │ ├── toastr │ │ │ └── toastr.min.js │ │ └── vue │ │ │ └── vue.min.js │ ├── wall.js │ └── widgets.js │ ├── layout_childs │ └── main_scheme.tpl.php │ ├── main.tpl.php │ ├── manifest.php │ ├── options.form.php │ ├── scss │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _interactions.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ └── vendor │ │ │ └── _rfs.scss │ ├── controllers │ │ ├── activity │ │ │ ├── _activity.scss │ │ │ └── build.scss │ │ ├── forms │ │ │ ├── build.scss │ │ │ └── styles.scss │ │ ├── groups │ │ │ ├── _groups.scss │ │ │ └── build.scss │ │ ├── images │ │ │ ├── build.scss │ │ │ └── styles.scss │ │ ├── messages │ │ │ ├── _messages.scss │ │ │ └── build.scss │ │ ├── photos │ │ │ ├── build.scss │ │ │ └── styles.scss │ │ ├── search │ │ │ ├── build.scss │ │ │ └── styles.scss │ │ ├── subscriptions │ │ │ ├── _subscriptions.scss │ │ │ └── build.scss │ │ ├── tags │ │ │ ├── _tags.scss │ │ │ └── build.scss │ │ └── users │ │ │ ├── _users.scss │ │ │ └── build.scss │ ├── theme │ │ ├── _bs_override.scss │ │ ├── _comments.scss │ │ ├── _content.scss │ │ ├── _custom.scss │ │ ├── _custom_variables.scss │ │ ├── _forms.scss │ │ ├── _layout.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _profile.scss │ │ ├── _rating.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _variables.scss │ │ ├── _widgets.scss │ │ └── theme.scss │ ├── vendors │ │ ├── colorpicker │ │ │ ├── _colorpicker.scss │ │ │ └── build.scss │ │ ├── cropperjs │ │ │ ├── _cropper.scss │ │ │ └── build.scss │ │ ├── datatables │ │ │ ├── _datatables.scss │ │ │ └── build.scss │ │ ├── jquery-chosen │ │ │ ├── _component-chosen.scss │ │ │ ├── _component-variables.scss │ │ │ ├── _svg-uri.scss │ │ │ └── build.scss │ │ ├── jquery-ui │ │ │ ├── _autocomplete.scss │ │ │ ├── _core.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _draggable.scss │ │ │ ├── _slider.scss │ │ │ ├── _theme.scss │ │ │ └── build.scss │ │ ├── photoswipe │ │ │ ├── _main-settings.scss │ │ │ ├── _main.scss │ │ │ ├── build.scss │ │ │ └── default-skin │ │ │ │ └── _default-skin.scss │ │ ├── slick │ │ │ ├── _slick.scss │ │ │ └── build.scss │ │ └── toastr │ │ │ ├── _toastr.scss │ │ │ └── build.scss │ └── wysiwyg │ │ ├── markitup │ │ ├── _markitup.scss │ │ └── build.scss │ │ └── redactor │ │ ├── _redactor.scss │ │ └── build.scss │ └── widgets │ ├── html │ ├── html.tpl.php │ └── html_plain.tpl.php │ ├── menu │ ├── menu.tpl.php │ └── menu_dropdown.tpl.php │ ├── template │ └── template.tpl.php │ ├── wrap_edit_links.tpl.php │ ├── wrapper.tpl.php │ ├── wrapper_plain.tpl.php │ ├── wrapper_plain_indented.tpl.php │ ├── wrapper_styles.php │ └── wrapper_tabbed.tpl.php ├── update ├── current │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ ├── package.png │ └── package │ │ └── .gitignore └── previous │ ├── 2.10.0-2.10.1 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.10.1-2.11.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.11.0-2.11.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.11.1-2.12.0 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.12.0-2.12.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.12.1-2.12.2 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.12.2-2.13.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.13.0-2.13.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.13.1-2.14.0 │ ├── install.php │ ├── install.sql │ ├── install_modern_widgets.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.14.0-2.14.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.14.1-2.14.2 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.14.1-2.14.3 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.14.3-2.15.0 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.15.1-2.15.2 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.15.2-2.16.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.16.1-2.16.2 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.16.2-2.16.3 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.16.3-2.17.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.17.0-2.17.1 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.17.1-2.17.2 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.17.2-2.17.3 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.5.1-2.6.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ └── package.png │ ├── 2.6.0-2.6.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ └── package.png │ ├── 2.6.1-2.7.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ └── package.png │ ├── 2.7.0-2.7.1 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ └── package.png │ ├── 2.7.1-2.7.2 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ ├── manifest.ru.ini │ └── package.png │ ├── 2.7.2-2.8.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.8.0-2.8.1 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.8.1-2.8.2 │ ├── install.php │ ├── manifest.en.ini │ └── manifest.ru.ini │ ├── 2.8.2-2.9.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini │ └── 2.9.0-2.10.0 │ ├── install.php │ ├── install.sql │ ├── manifest.en.ini │ └── manifest.ru.ini ├── upload ├── .htaccess ├── default │ ├── avatar.jpg │ ├── avatar_micro.png │ ├── avatar_small.jpg │ ├── private_big.png │ ├── private_micro.png │ ├── private_normal.png │ ├── private_original.png │ └── private_small.png ├── installer │ └── .gitignore └── package-images │ └── widgets │ └── .gitignore └── wysiwyg ├── .htaccess ├── ace ├── files │ ├── ace.js │ ├── ext-beautify.js │ ├── ext-code_lens.js │ ├── ext-command_bar.js │ ├── ext-elastic_tabstops_lite.js │ ├── ext-emmet.js │ ├── ext-error_marker.js │ ├── ext-hardwrap.js │ ├── ext-inline_autocomplete.js │ ├── ext-keybinding_menu.js │ ├── ext-language_tools.js │ ├── ext-linking.js │ ├── ext-modelist.js │ ├── ext-options.js │ ├── ext-prompt.js │ ├── ext-rtl.js │ ├── ext-searchbox.js │ ├── ext-settings_menu.js │ ├── ext-simple_tokenizer.js │ ├── ext-spellcheck.js │ ├── ext-split.js │ ├── ext-static_highlight.js │ ├── ext-statusbar.js │ ├── ext-textarea.js │ ├── ext-themelist.js │ ├── ext-whitespace.js │ ├── keybinding-emacs.js │ ├── keybinding-sublime.js │ ├── keybinding-vscode.js │ ├── mode-css.js │ ├── mode-html.js │ ├── mode-ini.js │ ├── mode-javascript.js │ ├── mode-json.js │ ├── mode-mysql.js │ ├── mode-php.js │ ├── mode-plain_text.js │ ├── mode-scss.js │ ├── mode-svg.js │ ├── mode-text.js │ ├── mode-yaml.js │ ├── snippets │ │ ├── css.js │ │ ├── html.js │ │ ├── ini.js │ │ ├── javascript.js │ │ ├── json.js │ │ ├── mysql.js │ │ ├── php.js │ │ ├── plain_text.js │ │ ├── scss.js │ │ ├── svg.js │ │ ├── text.js │ │ └── yaml.js │ ├── theme-ambiance.js │ ├── theme-chaos.js │ ├── theme-chrome.js │ ├── theme-cloud9_day.js │ ├── theme-cloud9_night.js │ ├── theme-cloud9_night_low_color.js │ ├── theme-cloud_editor.js │ ├── theme-cloud_editor_dark.js │ ├── theme-clouds.js │ ├── theme-clouds_midnight.js │ ├── theme-cobalt.js │ ├── theme-crimson_editor.js │ ├── theme-dawn.js │ ├── theme-dracula.js │ ├── theme-dreamweaver.js │ ├── theme-eclipse.js │ ├── theme-github.js │ ├── theme-github_dark.js │ ├── theme-github_light_default.js │ ├── theme-gob.js │ ├── theme-gruvbox.js │ ├── theme-gruvbox_dark_hard.js │ ├── theme-gruvbox_light_hard.js │ ├── theme-idle_fingers.js │ ├── theme-iplastic.js │ ├── theme-katzenmilch.js │ ├── theme-kr_theme.js │ ├── theme-kuroir.js │ ├── theme-merbivore.js │ ├── theme-merbivore_soft.js │ ├── theme-mono_industrial.js │ ├── theme-monokai.js │ ├── theme-nord_dark.js │ ├── theme-one_dark.js │ ├── theme-pastel_on_dark.js │ ├── theme-solarized_dark.js │ ├── theme-solarized_light.js │ ├── theme-sqlserver.js │ ├── theme-terminal.js │ ├── theme-textmate.js │ ├── theme-tomorrow.js │ ├── theme-tomorrow_night.js │ ├── theme-tomorrow_night_blue.js │ ├── theme-tomorrow_night_bright.js │ ├── theme-tomorrow_night_eighties.js │ ├── theme-twilight.js │ ├── theme-vibrant_ink.js │ ├── theme-xcode.js │ ├── worker-base.js │ ├── worker-css.js │ ├── worker-html.js │ ├── worker-javascript.js │ ├── worker-json.js │ ├── worker-php.js │ └── worker-yaml.js ├── options.php └── wysiwyg.class.php ├── markitup ├── image_upload.js ├── insert_smiles.js ├── jquery.markitup.js ├── options.php ├── skins │ └── simple │ │ ├── images │ │ ├── bold.png │ │ ├── close.png │ │ ├── code.png │ │ ├── facebook.png │ │ ├── handle.png │ │ ├── image.png │ │ ├── italic.png │ │ ├── link.png │ │ ├── list-bullet.png │ │ ├── list-numeric.png │ │ ├── menu.png │ │ ├── picture.png │ │ ├── picture_upload.png │ │ ├── quote.png │ │ ├── smiles.png │ │ ├── spoiler.png │ │ ├── stroke.png │ │ ├── submenu.png │ │ ├── underline.png │ │ ├── video.png │ │ └── youtube.png │ │ └── style.css ├── templates │ ├── preview.css │ └── preview.html └── wysiwyg.class.php ├── redactor ├── files │ ├── htmlsanitizer.js │ ├── lang │ │ ├── ar.js │ │ ├── az.js │ │ ├── ba.js │ │ ├── bg.js │ │ ├── by.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── es_ar.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── ge.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── no_NB.js │ │ ├── pl.js │ │ ├── pt_br.js │ │ ├── pt_pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cir.js │ │ ├── sr-lat.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ua.js │ │ ├── vi.js │ │ ├── zh_cn.js │ │ └── zh_tw.js │ ├── plugins │ │ ├── clips │ │ │ ├── clips.js │ │ │ └── index.html │ │ ├── fontcolor │ │ │ └── fontcolor.js │ │ ├── fontfamily │ │ │ └── fontfamily.js │ │ ├── fontsize │ │ │ └── fontsize.js │ │ ├── fullscreen │ │ │ └── fullscreen.js │ │ ├── smiles │ │ │ └── smiles.js │ │ ├── spoiler │ │ │ └── spoiler.js │ │ └── textdirection │ │ │ └── textdirection.js │ ├── redactor-iframe.css │ ├── redactor.css │ ├── redactor.js │ └── redactor.min.js ├── options.php └── wysiwyg.class.php └── tinymce ├── files ├── icons │ └── default │ │ └── icons.min.js ├── langs │ └── ru.js ├── models │ └── dom │ │ └── model.min.js ├── plugins │ ├── advlist │ │ └── plugin.min.js │ ├── anchor │ │ └── plugin.min.js │ ├── autolink │ │ └── plugin.min.js │ ├── autoresize │ │ └── plugin.min.js │ ├── charmap │ │ └── plugin.min.js │ ├── code │ │ └── plugin.min.js │ ├── codesample │ │ └── plugin.min.js │ ├── emoticons │ │ ├── js │ │ │ ├── emojiimages.js │ │ │ ├── emojiimages.min.js │ │ │ ├── emojis.js │ │ │ └── emojis.min.js │ │ └── plugin.min.js │ ├── fullscreen │ │ └── plugin.min.js │ ├── icmsinsertfile │ │ └── plugin.min.js │ ├── icmsspoiler │ │ └── plugin.min.js │ ├── image │ │ └── plugin.min.js │ ├── insertdatetime │ │ └── plugin.min.js │ ├── link │ │ └── plugin.min.js │ ├── lists │ │ └── plugin.min.js │ ├── media │ │ └── plugin.min.js │ ├── nonbreaking │ │ └── plugin.min.js │ ├── quickbars │ │ └── plugin.min.js │ ├── searchreplace │ │ └── plugin.min.js │ ├── smiles │ │ └── plugin.min.js │ ├── table │ │ └── plugin.min.js │ └── wordcount │ │ └── plugin.min.js ├── skins │ ├── content │ │ ├── dark │ │ │ └── content.min.css │ │ ├── default │ │ │ └── content.min.css │ │ ├── document │ │ │ └── content.min.css │ │ ├── icms │ │ │ └── content.min.css │ │ ├── tinymce-5-dark │ │ │ └── content.min.css │ │ ├── tinymce-5 │ │ │ └── content.min.css │ │ └── writer │ │ │ └── content.min.css │ └── ui │ │ ├── icms │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── content.mobile.min.css │ │ ├── fonts │ │ │ └── tinymce-mobile.woff │ │ ├── skin.min.css │ │ └── skin.mobile.min.css │ │ ├── oxide-dark │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.min.css │ │ └── skin.shadowdom.min.css │ │ ├── oxide │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.min.css │ │ └── skin.shadowdom.min.css │ │ ├── tinymce-5-dark │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.min.css │ │ └── skin.shadowdom.min.css │ │ └── tinymce-5 │ │ ├── content.inline.min.css │ │ ├── content.min.css │ │ ├── skin.min.css │ │ └── skin.shadowdom.min.css ├── themes │ └── silver │ │ └── theme.min.js └── tinymce.min.js ├── options.php └── wysiwyg.class.php /cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cache/rss/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cache/static/css/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /cache/static/js/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /cache/static/sitemaps/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /install/externals/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /install/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/images/bg.jpg -------------------------------------------------------------------------------- /install/images/icons/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/images/icons/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/images/icons/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/images/icons/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/images/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/images/install.png -------------------------------------------------------------------------------- /install/languages/en/sql/packages/comments/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'comments', 'vote.comment', 'Rating comments', 'evaluate a comment on the %s page'); -------------------------------------------------------------------------------- /install/languages/en/sql/packages/comments/rss/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}rss_feeds` (`ctype_id`, `ctype_name`, `title`, `description`, `image`, `mapping`, `limit`, `is_enabled`, `is_cache`, `cache_interval`, `date_cached`) VALUES (NULL, 'comments', 'Comments', NULL, NULL, '---\r\ntitle: target_title\r\ndescription: content_html\r\npubDate: date_pub\r\n', 15, 1, NULL, 60, NULL); -------------------------------------------------------------------------------- /install/languages/en/sql/packages/groups/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'groups', 'join', 'Group joining', 'joined the group %s'), 3 | (1, 'groups', 'leave', 'Group leaving', 'left the group %s'); -------------------------------------------------------------------------------- /install/languages/en/sql/packages/photos/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (0, 'content', 'add.albums', 'Adding albums', 'added album %s'), 3 | (1, 'photos', 'add.photos', 'Photo uploading', 'uploaded photos to the album %s'); -------------------------------------------------------------------------------- /install/languages/en/sql/packages/photos/rss/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}rss_feeds` (`ctype_id`, `ctype_name`, `title`, `description`, `image`, `mapping`, `limit`, `is_enabled`, `is_cache`, `cache_interval`, `date_cached`) VALUES 2 | (7, 'albums', 'Photo albums', NULL, NULL, '---\ntitle: title\ndescription: content\npubDate: date_pub\nimage: cover_image\nimage_size: normal\n', 15, 1, NULL, 60, NULL); -------------------------------------------------------------------------------- /install/languages/en/sql/packages/subscriptions/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'subscriptions', 'subscribe', 'Subscription to content', 'subscribes to the %s list'); -------------------------------------------------------------------------------- /install/languages/ru/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/comments/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'comments', 'vote.comment', 'Оценка комментария', 'оценил комментарий на странице %s'); -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/comments/rss/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}rss_feeds` (`ctype_id`, `ctype_name`, `title`, `description`, `image`, `mapping`, `limit`, `is_enabled`, `is_cache`, `cache_interval`, `date_cached`) VALUES (NULL, 'comments', 'Комментарии', NULL, NULL, '---\r\ntitle: target_title\r\ndescription: content_html\r\npubDate: date_pub\r\n', 15, 1, NULL, 60, NULL); -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/groups/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'groups', 'join', 'Вступление в группу', 'вступает в группу %s'), 3 | (1, 'groups', 'leave', 'Выход из группы', 'выходит из группы %s'); -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/photos/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (0, 'content', 'add.albums', 'Добавление альбомов', 'добавляет фотоальбом %s'), 3 | (1, 'photos', 'add.photos', 'Добавление фотографий', 'загружает фото в альбом %s'); -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/photos/rss/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}rss_feeds` (`ctype_id`, `ctype_name`, `title`, `description`, `image`, `mapping`, `limit`, `is_enabled`, `is_cache`, `cache_interval`, `date_cached`) VALUES 2 | (7, 'albums', 'Фотоальбомы', NULL, NULL, '---\ntitle: title\ndescription: content\npubDate: date_pub\nimage: cover_image\nimage_size: normal\n', 15, 1, NULL, 60, NULL); -------------------------------------------------------------------------------- /install/languages/ru/sql/packages/subscriptions/activity/base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `{#}activity_types` (`is_enabled`, `controller`, `name`, `title`, `description`) VALUES 2 | (1, 'subscriptions', 'subscribe', 'Подписка на контент', 'подписывается на список %s'); -------------------------------------------------------------------------------- /install/steps/cron.php: -------------------------------------------------------------------------------- 1 | render('step_cron', [ 9 | 'doc_root' => $doc_root, 10 | 'php_path' => get_program_path('php') 11 | ]) 12 | ]; 13 | } 14 | -------------------------------------------------------------------------------- /install/steps/finish.php: -------------------------------------------------------------------------------- 1 | render('step_finish', [ 11 | 'host' => $host 12 | ]) 13 | ]; 14 | } 15 | -------------------------------------------------------------------------------- /install/steps/start.php: -------------------------------------------------------------------------------- 1 | render('step_start', [ 7 | 'langs' => get_langs(), 8 | 'lang' => LANG 9 | ]) 10 | ]; 11 | } 12 | -------------------------------------------------------------------------------- /install/templates/step_finish.php: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

5 | 6 |

7 | 8 |

9 | -------------------------------------------------------------------------------- /install/upload/default/u1/003/0599295b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/0599295b.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/1c88035a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/1c88035a.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/236d41e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/236d41e4.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/2e2bf124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/2e2bf124.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/3400aa78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/3400aa78.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/3c2e4a35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/3c2e4a35.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/3f768733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/3f768733.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/41646570.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/41646570.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/44b68dc8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/44b68dc8.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/4878547b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/4878547b.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/53497165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/53497165.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/5edc315b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/5edc315b.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/74809cbe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/74809cbe.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/77fbbb95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/77fbbb95.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/852fb216.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/852fb216.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/89e8e681.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/89e8e681.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/93e51e49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/93e51e49.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/9e9ef526.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/9e9ef526.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/9f03ca75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/9f03ca75.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/a05ad20e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/a05ad20e.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/ad753a86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/ad753a86.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/b1e550ce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/b1e550ce.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/b9767257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/b9767257.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/cae0bdfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/cae0bdfb.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/d0ed7732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/d0ed7732.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/ddaa0bd4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/ddaa0bd4.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/e3c52c3e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/e3c52c3e.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/eb2bac70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/eb2bac70.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/f1476363.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/f1476363.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/f6f14e82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/f6f14e82.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/f95ca1a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/f95ca1a2.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/003/fa562059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/003/fa562059.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/08e78cd6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/08e78cd6.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/1b6fe453.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/1b6fe453.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/29a7c938.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/29a7c938.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/4bda72dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/4bda72dd.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/64a79d25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/64a79d25.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/82645d44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/82645d44.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/8b15968b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/8b15968b.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/8d391531.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/8d391531.jpg -------------------------------------------------------------------------------- /install/upload/default/u1/004/a442fa4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/a442fa4b.png -------------------------------------------------------------------------------- /install/upload/default/u1/004/c8a73161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/c8a73161.png -------------------------------------------------------------------------------- /install/upload/default/u1/004/de897122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/de897122.png -------------------------------------------------------------------------------- /install/upload/default/u1/004/f13052e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/f13052e8.png -------------------------------------------------------------------------------- /install/upload/default/u1/004/f398ad69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/f398ad69.png -------------------------------------------------------------------------------- /install/upload/default/u1/004/f9c36ec4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/default/u1/004/f9c36ec4.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/0/3/prodam-kvartiru-v-novostroike-photo-normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/0/3/prodam-kvartiru-v-novostroike-photo-normal.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/0/7/rossijane-stali-pervymi-na-chempionate-mira-photo-content-list-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/0/7/rossijane-stali-pervymi-na-chempionate-mira-photo-content-list-small.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/0/a/35b34880.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/0/a/35b34880.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/0/b/investicii-dlja-chainikov-kuda-vkladyvat-photo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/0/b/investicii-dlja-chainikov-kuda-vkladyvat-photo-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/1/0/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/1/0/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/1/2/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/1/2/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/1/b/6e8291e5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/1/b/6e8291e5.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/1/f/rossijane-stali-pervymi-na-chempionate-mira-photo-content-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/1/f/rossijane-stali-pervymi-na-chempionate-mira-photo-content-list.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/2/2/rossijane-stali-pervymi-na-chempionate-mira-photo-content-item.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/2/2/rossijane-stali-pervymi-na-chempionate-mira-photo-content-item.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/2/3/7e8cf01c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/2/3/7e8cf01c.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/2/6/60826896.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/2/6/60826896.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/2/e/481e9f06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/2/e/481e9f06.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/3/1/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-item.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/3/1/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-item.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/3/5/c29217d1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/3/5/c29217d1.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/3/7/52241df9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/3/7/52241df9.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/3/e/prodam-kvartiru-v-novostroike-photo-micro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/3/e/prodam-kvartiru-v-novostroike-photo-micro.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/4/2/1a7da83e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/4/2/1a7da83e.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/4/3/8914eba7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/4/3/8914eba7.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/4/5/c44b04bf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/4/5/c44b04bf.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/5/0/2afcd745.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/5/0/2afcd745.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/5/3/74ca4539.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/5/3/74ca4539.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/5/5/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/5/5/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/5/b/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-item.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/5/b/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-item.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/6/7/fc4e5bc4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/6/7/fc4e5bc4.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/6/e/rossijane-stali-pervymi-na-chempionate-mira-photo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/6/e/rossijane-stali-pervymi-na-chempionate-mira-photo-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/7/2/b262ab6f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/7/2/b262ab6f.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/7/3/robototehnika-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/7/3/robototehnika-logo-small.png -------------------------------------------------------------------------------- /install/upload/modern/000/u1/7/6/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/7/6/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/7/e/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/7/e/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-list-small.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/8/b/prodam-kvartiru-v-novostroike-photos-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/8/b/prodam-kvartiru-v-novostroike-photos-big.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/9/3/6c024907.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/9/3/6c024907.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/9/8/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-item.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/9/8/investicii-dlja-chainikov-kuda-vkladyvat-photo-content-item.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/9/d/prodam-kvartiru-v-novostroike-photos-big.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/9/d/prodam-kvartiru-v-novostroike-photos-big.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/a/0/3ed25154.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/a/0/3ed25154.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/a/5/53e113d9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/a/5/53e113d9.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/a/7/f927491e.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/a/7/f927491e.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/b/7/prodam-kvartiru-v-novostroike-photos-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/b/7/prodam-kvartiru-v-novostroike-photos-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/b/c/prodam-kvartiru-v-novostroike-photos-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/b/c/prodam-kvartiru-v-novostroike-photos-small.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/b/e/prodam-kvartiru-v-novostroike-photos-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/b/e/prodam-kvartiru-v-novostroike-photos-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/c/9/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/c/9/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/e/3/923d5458.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/e/3/923d5458.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/e/3/robototehnika-logo-micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/e/3/robototehnika-logo-micro.png -------------------------------------------------------------------------------- /install/upload/modern/000/u1/e/8/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/e/8/kolichestvo-prestuplenii-v-rossii-sokraschaetsja-photo-content-list-small.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/e/e/prodam-kvartiru-v-novostroike-photo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/e/e/prodam-kvartiru-v-novostroike-photo-small.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/e/f/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list-small.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/e/f/vse-bolshe-rossijan-pokupayut-doma-za-granicei-photo-content-list-small.webp -------------------------------------------------------------------------------- /install/upload/modern/000/u1/f/3/prodam-kvartiru-v-novostroike-photos-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/f/3/prodam-kvartiru-v-novostroike-photos-big.jpg -------------------------------------------------------------------------------- /install/upload/modern/000/u1/f/7/99914b0f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/install/upload/modern/000/u1/f/7/99914b0f.webp -------------------------------------------------------------------------------- /static/.htaccess: -------------------------------------------------------------------------------- 1 | # PHP 7 2 | 3 | php_flag engine 0 4 | 5 | 6 | # PHP 8 7 | 8 | php_flag engine 0 9 | -------------------------------------------------------------------------------- /static/smiles/angel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/angel.gif -------------------------------------------------------------------------------- /static/smiles/blush.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/blush.gif -------------------------------------------------------------------------------- /static/smiles/bomb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/bomb.gif -------------------------------------------------------------------------------- /static/smiles/bravo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/bravo.gif -------------------------------------------------------------------------------- /static/smiles/crazy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/crazy.gif -------------------------------------------------------------------------------- /static/smiles/dance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/dance.gif -------------------------------------------------------------------------------- /static/smiles/devil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/devil.gif -------------------------------------------------------------------------------- /static/smiles/drink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/drink.gif -------------------------------------------------------------------------------- /static/smiles/eyes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/eyes.gif -------------------------------------------------------------------------------- /static/smiles/glass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/glass.gif -------------------------------------------------------------------------------- /static/smiles/inlove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/inlove.gif -------------------------------------------------------------------------------- /static/smiles/jokingly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/jokingly.gif -------------------------------------------------------------------------------- /static/smiles/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/kiss.gif -------------------------------------------------------------------------------- /static/smiles/kissed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/kissed.gif -------------------------------------------------------------------------------- /static/smiles/kissing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/kissing.gif -------------------------------------------------------------------------------- /static/smiles/laugh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/laugh.gif -------------------------------------------------------------------------------- /static/smiles/macho.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/macho.gif -------------------------------------------------------------------------------- /static/smiles/music.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/music.gif -------------------------------------------------------------------------------- /static/smiles/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/no.gif -------------------------------------------------------------------------------- /static/smiles/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/ok.gif -------------------------------------------------------------------------------- /static/smiles/pardon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/pardon.gif -------------------------------------------------------------------------------- /static/smiles/pitchup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/pitchup.gif -------------------------------------------------------------------------------- /static/smiles/quiet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/quiet.gif -------------------------------------------------------------------------------- /static/smiles/rofl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/rofl.gif -------------------------------------------------------------------------------- /static/smiles/rose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/rose.gif -------------------------------------------------------------------------------- /static/smiles/sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/sad.gif -------------------------------------------------------------------------------- /static/smiles/sick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/sick.gif -------------------------------------------------------------------------------- /static/smiles/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/smile.gif -------------------------------------------------------------------------------- /static/smiles/sorry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/sorry.gif -------------------------------------------------------------------------------- /static/smiles/sos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/sos.gif -------------------------------------------------------------------------------- /static/smiles/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/stop.gif -------------------------------------------------------------------------------- /static/smiles/strong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/strong.gif -------------------------------------------------------------------------------- /static/smiles/think.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/think.gif -------------------------------------------------------------------------------- /static/smiles/thumbsup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/thumbsup.gif -------------------------------------------------------------------------------- /static/smiles/tired.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/tired.gif -------------------------------------------------------------------------------- /static/smiles/tongue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/tongue.gif -------------------------------------------------------------------------------- /static/smiles/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/unknown.gif -------------------------------------------------------------------------------- /static/smiles/ups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/ups.gif -------------------------------------------------------------------------------- /static/smiles/wassup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/wassup.gif -------------------------------------------------------------------------------- /static/smiles/wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/wink.gif -------------------------------------------------------------------------------- /static/smiles/wonder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/wonder.gif -------------------------------------------------------------------------------- /static/smiles/yahoo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/static/smiles/yahoo.gif -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | # apache > 2.2 2 | 3 | Require all denied 4 | 5 | # apache <= 2.2 6 | 7 | Deny From All 8 | -------------------------------------------------------------------------------- /system/config/remap.php: -------------------------------------------------------------------------------- 1 | deleteEntry('comments', 'vote.comment', $comments_ids); 8 | 9 | return $comments_ids; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/activity/hooks/content_after_trash_put.php: -------------------------------------------------------------------------------- 1 | deleteEntry('content', "add.{$ctype_name}", $item['id']); 10 | 11 | return [$ctype_name, $item]; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/activity/hooks/content_albums_after_delete.php: -------------------------------------------------------------------------------- 1 | deleteEntry('photos', 'add.photos', $album['id']); 8 | 9 | return $album; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/activity/hooks/ctype_after_delete.php: -------------------------------------------------------------------------------- 1 | deleteType('content', "add.{$ctype['name']}"); 8 | 9 | return $ctype; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/activity/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | model->deleteUserEntries($user['id']); 8 | 9 | return $user; 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/activity/hooks/user_registered.php: -------------------------------------------------------------------------------- 1 | addEntry('users', 'signup', array( 8 | 'user_id' => $user['id'] 9 | )); 10 | 11 | return $user; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/admin/actions/ctypes_fields_edit.php: -------------------------------------------------------------------------------- 1 | runExternalAction('ctypes_fields_add', $this->params); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/admin/backend.php: -------------------------------------------------------------------------------- 1 | cms_user->is_logged){ $this->redirectTo('users', $this->cms_user->id); } 8 | 9 | return $this->runAction($action); 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/auth/hooks/frontpage_types.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'types' => array( 10 | 'auth:login' => LANG_CP_SETTINGS_FP_SHOW_PROFILE 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/authga/frontend.php: -------------------------------------------------------------------------------- 1 | $this->name, 8 | 'types' => array( 9 | $this->name => 'Google Authenticator' 10 | ) 11 | ); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/bootstrap4/frontend.php: -------------------------------------------------------------------------------- 1 | model->setCommentsIsDeleted('content', $ctype_name, $item['id'], null); 10 | 11 | return [$ctype_name, $item]; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/comments/hooks/content_after_trash_put.php: -------------------------------------------------------------------------------- 1 | model->setCommentsIsDeleted('content', $ctype_name, $item['id']); 10 | 11 | return [$ctype_name, $item]; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/comments/hooks/restore_user.php: -------------------------------------------------------------------------------- 1 | model->restoreUserComments($user['id']); 8 | 9 | return $user; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/comments/hooks/set_user_is_deleted.php: -------------------------------------------------------------------------------- 1 | model->deleteUserComments($user['id']); 8 | 9 | return $user; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/comments/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | options['hide_deleted_user_comments'])) { 8 | $this->model->deleteUserComments($user['id']); 9 | } 10 | 11 | return $user; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/content/hooks/frontpage.php: -------------------------------------------------------------------------------- 1 | request->set('ctype_name', $action); 8 | $this->request->set('slug', 'index'); 9 | 10 | return $this->runAction('category_view'); 11 | 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/content/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | model->deleteUserContent($user['id']); 8 | 9 | return $user; 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/csp/frontend.php: -------------------------------------------------------------------------------- 1 | cms_template->render([]); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/files/frontend.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'sources' => array( 10 | 'root' => LANG_HOME 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/groups/backend/actions/fields_edit.php: -------------------------------------------------------------------------------- 1 | runExternalAction('fields_add', $this->params); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/groups/hooks/sitemap_sources.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'sources' => array('profiles' => LANG_GROUPS_CONTROLLER) 10 | ); 11 | 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/groups/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | model->deleteUserGroupsAndMemberships($user['id']); 8 | 9 | return $user; 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/groups/hooks/user_notify_types.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'title' => LANG_GROUPS_NOTIFY_INVITE, 10 | 'default' => 'both' 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/languages/hooks/form_make.php: -------------------------------------------------------------------------------- 1 | enableMultilanguageFormFields($form); 8 | 9 | return $form; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/languages/hooks/frontpage_action_index.php: -------------------------------------------------------------------------------- 1 | addHreflangTags(); 8 | 9 | return $data; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/messages/actions/notices.php: -------------------------------------------------------------------------------- 1 | cms_template->render('notices', [ 8 | 'user' => $this->cms_user, 9 | 'notices' => $this->model->getNotices($this->cms_user->id) 10 | ]); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/messages/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | model->deleteUserMessages($user['id']); 10 | 11 | return $user; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/moderation/hooks/cron_trash.php: -------------------------------------------------------------------------------- 1 | model->deleteExpiredTrashContentItems(); 10 | 11 | return true; 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/photos/hooks/comments_targets.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'types' => array( 10 | $this->name.':photo' => LANG_PHOTOS_CONTROLLER 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/photos/hooks/content_albums_after_delete.php: -------------------------------------------------------------------------------- 1 | model->deletePhotos($album['id']); 8 | 9 | return $album; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/photos/hooks/sitemap_sources.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'sources' => array( 10 | 'photo' => LANG_PHOTOS_CONTROLLER 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/photos/hooks/user_delete.php: -------------------------------------------------------------------------------- 1 | model->deleteUserPhotos($user['id']); 8 | 9 | return $user; 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/queue/frontend.php: -------------------------------------------------------------------------------- 1 | model->deleteUserVotes($user['id']); 8 | 9 | return $user; 10 | 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /system/controllers/recaptcha/backend.php: -------------------------------------------------------------------------------- 1 | options['public_key'])) { 8 | return ''; 9 | } 10 | 11 | return $this->cms_template->renderInternal($this, 'captcha'); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/recaptcha/hooks/captcha_list.php: -------------------------------------------------------------------------------- 1 | model->deleteUserSubscriptions($user['id']); 8 | 9 | return $user; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /system/controllers/tags/backend/actions/recount.php: -------------------------------------------------------------------------------- 1 | model->recountTagsFrequency(); 10 | 11 | return $this->redirectToAction(); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/tags/widgets/cloud/widget.php: -------------------------------------------------------------------------------- 1 | getTagsWidgetParams($this->getOptions()); 7 | 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/typograph/backend/actions/presets_edit.php: -------------------------------------------------------------------------------- 1 | runExternalAction('presets_add', $this->params); 8 | 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /system/controllers/typograph/hooks/html_filter.php: -------------------------------------------------------------------------------- 1 | parseText($this->preparePresetParamsAndGetText($data)); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/users/backend/actions/fields_edit.php: -------------------------------------------------------------------------------- 1 | runExternalAction('fields_add', $this->params); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /system/controllers/users/hooks/ctype_relation_childs.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'types' => array( 10 | 'users:' => LANG_USERS_CONTROLLER 11 | ) 12 | ); 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /system/controllers/users/hooks/sitemap_sources.php: -------------------------------------------------------------------------------- 1 | $this->name, 9 | 'sources' => array('profiles' => LANG_USERS_CONTROLLER) 10 | ); 11 | 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/users/hooks/user_preloaded.php: -------------------------------------------------------------------------------- 1 | logoutLockedUser($user); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /system/controllers/wall/backend.php: -------------------------------------------------------------------------------- 1 | runExternalAction('presets_add', $this->params); 8 | 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /system/fields/users.php: -------------------------------------------------------------------------------- 1 | 0 — unlimited number'); -------------------------------------------------------------------------------- /system/languages/en/controllers/users/widgets/online.php: -------------------------------------------------------------------------------- 1 | {page_title}" will be discontinued after {date_pub_end}. 6 | 7 | 8 | -- 9 | Best regards, {site} 10 | This letter is sent automatically, please do not reply -------------------------------------------------------------------------------- /system/languages/en/letters/email_verify_notice.txt: -------------------------------------------------------------------------------- 1 | [subject: Mail Change Notification - {site}] 2 | 3 | Hello {nickname}. 4 | 5 | You have successfully changed your current email address to {new_email}. 6 | If you didn't do this, please contact the site administrator. 7 | 8 | 9 | -- 10 | Regards, {site} 11 | Email has been sent automatically, please do not reply to it. -------------------------------------------------------------------------------- /system/languages/en/letters/groups_invite.txt: -------------------------------------------------------------------------------- 1 | [subject:{user_nickname} invites you - {site}] 2 | 3 | Hello. 4 | 5 | {user_nickname} invites you to join the group {group_title}. 6 | 7 | 8 | -- 9 | Best regards, {site} 10 | This letter is sent automatically, please do not reply 11 | -------------------------------------------------------------------------------- /system/languages/en/letters/messages_new.txt: -------------------------------------------------------------------------------- 1 | [subject:New message - {site}] 2 | 3 | Hello, {nickname}. 4 | 5 | The site «{site}» You received a new private message from {user_nickname}. 6 | 7 | -- 8 | Best regards, {site} 9 | This letter is sent automatically, please do not reply -------------------------------------------------------------------------------- /system/languages/en/letters/moderation_approved.txt: -------------------------------------------------------------------------------- 1 | [subject:Your page is approved - {site}] 2 | 3 | Hello, {nickname}. 4 | 5 | Moderator approved publication of your page. 6 | 7 | Title: {page_title} 8 | URL: {page_url} 9 | 10 | -- 11 | Best regards, {site} 12 | This letter is sent automatically, please do not reply 13 | -------------------------------------------------------------------------------- /system/languages/en/letters/moderation_comment_approved.txt: -------------------------------------------------------------------------------- 1 | [subject:Your comment is approved - {site}] 2 | 3 | Hello, {nickname}. 4 | 5 | Moderator approved a comment on the page "{page_title}". 6 | 7 | URL: {page_url} 8 | 9 | -- 10 | Best regards, {site} 11 | This letter is sent automatically, please do not reply 12 | -------------------------------------------------------------------------------- /system/languages/en/letters/moderation_comment_refused.txt: -------------------------------------------------------------------------------- 1 | [subject:Your comment is refused - {site}] 2 | 3 | Hello, {nickname}. 4 | 5 | A moderator has rejected your comment. 6 | 7 | Commenting material: {page_title} 8 | 9 | Reason: {reason} 10 | 11 | -- 12 | Best regards, {site} 13 | This letter is sent automatically, please do not reply 14 | -------------------------------------------------------------------------------- /system/languages/en/letters/moderation_refused.txt: -------------------------------------------------------------------------------- 1 | [subject:Your page is refused - {site}] 2 | 3 | Hello, {nickname}. 4 | 5 | Moderator refused of publication of your page. 6 | 7 | Title: {page_title} 8 | 9 | Reason: {reason} 10 | 11 | -- 12 | Best regards, {site} 13 | This letter is sent automatically, please do not reply -------------------------------------------------------------------------------- /system/languages/en/letters/moderation_return.txt: -------------------------------------------------------------------------------- 1 | [subject:Item retrieve from the moderation - {site}] 2 | 3 | Hello, {moderator}. 4 | 5 | Author {author} retrieve item {page_title} from the moderation. 6 | 7 | -- 8 | Best regards, {site} 9 | This letter is sent automatically, please do not reply -------------------------------------------------------------------------------- /system/languages/en/letters/users_friend_add.txt: -------------------------------------------------------------------------------- 1 | [subject:{friend_nickname} offers friendship - {site}] 2 | 3 | Hello. 4 | 5 | {friend_nickname} invites you to become friends. 6 | 7 | To accept or reject the offer you need to login to the site. 8 | 9 | -- 10 | Best regards, {site} 11 | This letter is sent automatically, please do not reply 12 | -------------------------------------------------------------------------------- /system/languages/en/letters/users_friend_delete.txt: -------------------------------------------------------------------------------- 1 | [subject:{friend_nickname} is not your friend anymore - {site}] 2 | 3 | Hello. 4 | 5 | {friend_nickname} is not your friend anymore. 6 | 7 | 8 | -- 9 | Best regards, {site} 10 | This letter is sent automatically, please do not reply 11 | -------------------------------------------------------------------------------- /system/languages/en/widgets/text.php: -------------------------------------------------------------------------------- 1 | 0 — бесконечное количество'); -------------------------------------------------------------------------------- /system/languages/ru/controllers/users/widgets/online.php: -------------------------------------------------------------------------------- 1 | {page_title}" будет прекращена через {date_pub_end}. 6 | 7 | -- 8 | C уважением, {site} 9 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. -------------------------------------------------------------------------------- /system/languages/ru/letters/email_verify_notice.txt: -------------------------------------------------------------------------------- 1 | [subject:Уведомление о смене почты - {site}] 2 | 3 | Здравствуйте, {nickname}. 4 | 5 | Вы успешно сменили текущий email на {new_email}. 6 | Если это сделали не вы, пожалуйста, свяжитесь с администрацией сайта. 7 | 8 | 9 | -- 10 | C уважением, {site} 11 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. -------------------------------------------------------------------------------- /system/languages/ru/letters/groups_invite.txt: -------------------------------------------------------------------------------- 1 | [subject:{user_nickname} приглашает в группу - {site}] 2 | 3 | Здравствуйте. 4 | 5 | {user_nickname} приглашает Вас вступить в группу {group_title}. 6 | 7 | 8 | -- 9 | C уважением, {site} 10 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 11 | -------------------------------------------------------------------------------- /system/languages/ru/letters/messages_new.txt: -------------------------------------------------------------------------------- 1 | [subject:Новое сообщение - {site}] 2 | 3 | Здравствуйте, {nickname}. 4 | 5 | На сайте «{site}» Вам поступило новое личное сообщение от {user_nickname}. 6 | 7 | -- 8 | C уважением, {site} 9 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. -------------------------------------------------------------------------------- /system/languages/ru/letters/moderation_approved.txt: -------------------------------------------------------------------------------- 1 | [subject:Модерация пройдена - {site}] 2 | 3 | Здравствуйте, {nickname}. 4 | 5 | Модератор одобрил размещение страницы. 6 | 7 | Название: {page_title} 8 | Адрес: {page_url} 9 | 10 | -- 11 | C уважением, {site} 12 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 13 | -------------------------------------------------------------------------------- /system/languages/ru/letters/moderation_comment_approved.txt: -------------------------------------------------------------------------------- 1 | [subject:Модерация пройдена - {site}] 2 | 3 | Здравствуйте, {nickname}. 4 | 5 | Модератор одобрил размещение комментария на странице "{page_title}". 6 | 7 | Адрес: {page_url} 8 | 9 | -- 10 | C уважением, {site} 11 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 12 | -------------------------------------------------------------------------------- /system/languages/ru/letters/moderation_refused.txt: -------------------------------------------------------------------------------- 1 | [subject:Модерация не пройдена - {site}] 2 | 3 | Здравствуйте, {nickname}. 4 | 5 | Модератор отклонил размещение и удалил страницу. 6 | 7 | Название: {page_title} 8 | 9 | Причина: {reason} 10 | 11 | -- 12 | C уважением, {site} 13 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 14 | -------------------------------------------------------------------------------- /system/languages/ru/letters/moderation_return.txt: -------------------------------------------------------------------------------- 1 | [subject:Материал отозван с проверки - {site}] 2 | 3 | Здравствуйте, {moderator}. 4 | 5 | Автор {author} отозвал отправленную на проверку страницу {page_title} 6 | 7 | -- 8 | C уважением, {site} 9 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 10 | -------------------------------------------------------------------------------- /system/languages/ru/letters/users_friend_delete.txt: -------------------------------------------------------------------------------- 1 | [subject:{friend_nickname} прекратил дружбу - {site}] 2 | 3 | Здравствуйте. 4 | 5 | {friend_nickname} прекратил дружбу с вами. 6 | 7 | 8 | -- 9 | C уважением, {site} 10 | Письмо отправлено автоматически, пожалуйста, не отвечайте на него. 11 | -------------------------------------------------------------------------------- /system/languages/ru/widgets/text.php: -------------------------------------------------------------------------------- 1 | renderForm($form, [ 4 | 'ctype_name'=>$ctype['name'], 5 | 'items' => implode(',', $items) 6 | ], [ 7 | 'action' => $this->href_to('content', ['item_move', $ctype['id'], $parent_id]), 8 | 'method' => 'ajax' 9 | ], $errors); 10 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/content_items_edit.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | renderForm($form, [], [ 5 | 'action' => $this->href_to('content', ['items_edit', $ctype['id']]), 6 | 'method' => 'ajax', 7 | 'submit' => [ 8 | 'title' => LANG_CONTINUE 9 | ] 10 | ], $errors); 11 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/content_items_edit_save.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | renderForm($form, [], [ 5 | 'action' => $this->href_to('content', ['items_edit', $ctype['id']]), 6 | 'method' => 'ajax', 7 | 'submit' => [ 8 | 'title' => LANG_SAVE 9 | ] 10 | ], $errors); 11 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/credits.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_CP_3RDPARTY_CREDITS); 3 | $this->addBreadcrumb(LANG_CP_3RDPARTY_CREDITS, $this->href_to('credits')); 4 | ?> 5 | 6 |
7 |
8 |
 9 | 
10 | 
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/ctypes_filters_error.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_CP_CTYPE_FILTERS); 3 | $this->addBreadcrumb(LANG_CP_CTYPE_FILTERS); 4 | ?> 5 | 6 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/widgets_import_scheme.tpl.php: -------------------------------------------------------------------------------- 1 | renderForm($form, $data, [ 3 | 'action' => $this->href_to('widgets', ['import_scheme', $template_name]), 4 | 'method' => 'ajax' 5 | ], $errors); 6 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/admin/widgets_rows.tpl.php: -------------------------------------------------------------------------------- 1 | renderForm($form, $data, [ 3 | 'action' => $action, 4 | 'method' => 'ajax' 5 | ], $errors); 6 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/messages/backend/pmailing.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_PM_PMAILING); 4 | $this->addBreadcrumb(LANG_PM_PMAILING); 5 | 6 | $this->renderForm($form, $mailing, [ 7 | 'action' => '', 8 | 'method' => 'post', 9 | 'submit' => [ 10 | 'title' => LANG_SUBMIT 11 | ] 12 | ], $errors); 13 | -------------------------------------------------------------------------------- /templates/admincoreui/controllers/sitemap/backend/styles.css: -------------------------------------------------------------------------------- 1 | #robots { 2 | height: 300px; 3 | } -------------------------------------------------------------------------------- /templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.eot -------------------------------------------------------------------------------- /templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.ttf -------------------------------------------------------------------------------- /templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.woff -------------------------------------------------------------------------------- /templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/css/vendors/simple-line-icons/fonts/simple-line-icons.woff2 -------------------------------------------------------------------------------- /templates/admincoreui/images/datatree/drag_indicator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/admincoreui/images/datatree/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/datatree/icons.gif -------------------------------------------------------------------------------- /templates/admincoreui/images/datatree/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/datatree/vline.gif -------------------------------------------------------------------------------- /templates/admincoreui/images/favicons/favicon_admin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/favicons/favicon_admin.ico -------------------------------------------------------------------------------- /templates/admincoreui/images/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/header_bg.jpg -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/jquery-ui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/admincoreui/images/jquery-ui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /templates/admincoreui/images/languages/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /templates/default/assets/fields/captcha.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | 3 | data['captcha_html']; 4 | -------------------------------------------------------------------------------- /templates/default/assets/fields/hidden.tpl.php: -------------------------------------------------------------------------------- 1 | element_name, $value, $field->data['dom_attr']); ?> -------------------------------------------------------------------------------- /templates/default/assets/fields/html.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | element_name, $value, $field->data['editor'], $field->data['options']); 3 | -------------------------------------------------------------------------------- /templates/default/assets/fields/htmlhint.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | getOption('html'); ?> -------------------------------------------------------------------------------- /templates/default/assets/fields/image.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | data['images_controller']->getSingleUploadWidget($field->element_name, $field->data['paths'], $field->data); ?> 3 | -------------------------------------------------------------------------------- /templates/default/assets/fields/images.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | data['images_controller']->getMultiUploadWidget($field->element_name, $field->data['images'], $field->data); ?> 3 | -------------------------------------------------------------------------------- /templates/default/assets/fields/rmfield.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | html; ?> -------------------------------------------------------------------------------- /templates/default/assets/fields/user.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | element_name, $value, array('id'=>$field->id)); ?> -------------------------------------------------------------------------------- /templates/default/assets/ui/grid.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($page_title); 4 | $this->setPageTitle($page_title); 5 | } 6 | ?> 7 | 8 |

9 | 10 | renderGrid($source_url, $grid); 11 | -------------------------------------------------------------------------------- /templates/default/controllers/activity/backend/styles.css: -------------------------------------------------------------------------------- 1 | #f_types label { display: block; } -------------------------------------------------------------------------------- /templates/default/controllers/activity/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($tab['title']); 4 | 5 | echo $html; 6 | -------------------------------------------------------------------------------- /templates/default/controllers/admin/content_items_edit.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | renderForm($form, [], array( 5 | 'action' => $this->href_to('content', array('items_edit', $ctype['id'])), 6 | 'method' => 'ajax', 7 | 'submit' => array( 8 | 'title' => LANG_CONTINUE 9 | ) 10 | ), $errors); 11 | -------------------------------------------------------------------------------- /templates/default/controllers/admin/content_items_edit_save.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | renderForm($form, [], array( 5 | 'action' => $this->href_to('content', array('items_edit', $ctype['id'])), 6 | 'method' => 'ajax', 7 | 'submit' => array( 8 | 'title' => LANG_SAVE 9 | ) 10 | ), $errors); 11 | -------------------------------------------------------------------------------- /templates/default/controllers/admin/credits.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_CP_3RDPARTY_CREDITS); 3 | $this->addBreadcrumb(LANG_CP_3RDPARTY_CREDITS, $this->href_to('credits')); 4 | ?> 5 | 6 |
7 |
8 |
 9 | 
10 | 
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /templates/default/controllers/admin/index_sysinfo.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/controllers/auth/reset.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_PASS_RESTORE); ?> 2 | 3 |

4 | 5 |

6 | 7 | renderForm($form, $profile, array( 9 | 'action' => '', 10 | 'method' => 'post', 11 | ), $errors); 12 | -------------------------------------------------------------------------------- /templates/default/controllers/auth/widgets/register/register.tpl.php: -------------------------------------------------------------------------------- 1 | renderForm($form, array(), array( 3 | 'action' => href_to('auth', 'register'), 4 | 'method' => 'post', 5 | 'submit' => array( 6 | 'title' => LANG_CONTINUE 7 | ) 8 | ), false); 9 | -------------------------------------------------------------------------------- /templates/default/controllers/comments/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($tab['title']); 4 | 5 | echo $html; 6 | -------------------------------------------------------------------------------- /templates/default/controllers/content/revision_form.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/controllers/content/trash_empty.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_BASKET_TITLE); 3 | $this->addBreadcrumb(LANG_BASKET_TITLE); 4 | ?> 5 | 6 |

7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /templates/default/controllers/forms/form_data.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | $value) { ?> 3 |

:

4 | 5 | -------------------------------------------------------------------------------- /templates/default/controllers/frontpage/index.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/controllers/frontpage/index.tpl.php -------------------------------------------------------------------------------- /templates/default/controllers/groups/change_owner.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/default/controllers/groups/group_activity.tpl.php: -------------------------------------------------------------------------------- 1 |
2 | renderChild('group_header', array('group'=>$group)); ?> 3 |
4 | 5 | addMenuItems('group_tabs', $this->controller->getGroupEditMenu($group)); 3 | ?> 4 | 5 |
6 |
7 | menu('group_tabs', true, 'tabbed'); ?> 8 |
9 |
-------------------------------------------------------------------------------- /templates/default/controllers/groups/group_edit_requests.tpl.php: -------------------------------------------------------------------------------- 1 | addTplJSName('groups'); ?> 2 |

3 | 4 | renderChild('group_edit_header', array('group' => $group)); ?> 5 | 6 |
-------------------------------------------------------------------------------- /templates/default/controllers/moderation/empty.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle($page_title); 3 | $this->addBreadcrumb($page_title); 4 | ?> 5 | 6 |

7 | 8 |
9 |

10 |
11 | -------------------------------------------------------------------------------- /templates/default/controllers/moderation/index.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | 3 |
4 | menu('moderation_content_types', true, 'pills-menu-small'); ?> 5 |
6 | 7 |
-------------------------------------------------------------------------------- /templates/default/controllers/moderation/styles.css: -------------------------------------------------------------------------------- 1 | #moderation_content_pills { margin-bottom: 30px; } 2 | -------------------------------------------------------------------------------- /templates/default/controllers/photos/index.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb(LANG_PHOTOS_ALL); ?> 2 | 3 |

pageH1();?>

4 | 5 | renderChild('filter-panel', [ 6 | 'item' => $album, 7 | 'page_url' => href_to('photos') 8 | ]); ?> 9 | 10 | 2 |
3 | LANG_WD_SEARCH_QUERY_INPUT)); ?> 4 |
5 | 6 | -------------------------------------------------------------------------------- /templates/default/controllers/sitemap/backend/styles.css: -------------------------------------------------------------------------------- 1 | #sitemap_info p:last-child { 2 | margin-bottom: 0; 3 | } 4 | #sitemap_info { 5 | border-top: solid 1px #B3C2C9; 6 | margin: 10px 0 0 0; 7 | } 8 | #robots { 9 | height: 300px; 10 | } -------------------------------------------------------------------------------- /templates/default/controllers/subscriptions/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($tab['title']); 4 | 5 | echo $html; 6 | -------------------------------------------------------------------------------- /templates/default/controllers/tags/styles.css: -------------------------------------------------------------------------------- 1 | #tags_search_pills { 2 | margin-bottom: 20px; 3 | } -------------------------------------------------------------------------------- /templates/default/controllers/users/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | setPageDescription($profile['nickname'].' — '.$tab['title']); ?> 2 |
3 | renderChild('profile_header', ['profile'=>$profile, 'meta_profile' => $meta_profile, 'tabs'=>$tabs]); ?> 4 |
5 | 6 |
7 | 8 |
-------------------------------------------------------------------------------- /templates/default/controllers/widgets/access_error.tpl.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
403
4 | 5 |
6 | 7 |

8 |

9 | 10 |
11 | 12 |
-------------------------------------------------------------------------------- /templates/default/images/admin/menu_active_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/admin/menu_active_bg.png -------------------------------------------------------------------------------- /templates/default/images/admin/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/admin/menu_bg.png -------------------------------------------------------------------------------- /templates/default/images/admin/menu_hover_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/admin/menu_hover_bg.png -------------------------------------------------------------------------------- /templates/default/images/admin/pw_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/admin/pw_bg.png -------------------------------------------------------------------------------- /templates/default/images/admin/pw_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/admin/pw_sep.png -------------------------------------------------------------------------------- /templates/default/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/bg.gif -------------------------------------------------------------------------------- /templates/default/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/bg.png -------------------------------------------------------------------------------- /templates/default/images/bg_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/bg_top.png -------------------------------------------------------------------------------- /templates/default/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/chosen-sprite.png -------------------------------------------------------------------------------- /templates/default/images/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/chosen-sprite@2x.png -------------------------------------------------------------------------------- /templates/default/images/colorpicker/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/colorpicker/colorpicker.png -------------------------------------------------------------------------------- /templates/default/images/comment_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/comment_arrow.png -------------------------------------------------------------------------------- /templates/default/images/comment_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/comment_vote.png -------------------------------------------------------------------------------- /templates/default/images/datatree/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/datatree/icons.gif -------------------------------------------------------------------------------- /templates/default/images/datatree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/datatree/loading.gif -------------------------------------------------------------------------------- /templates/default/images/datatree/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/datatree/vline.gif -------------------------------------------------------------------------------- /templates/default/images/errors/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/errors/maintenance.png -------------------------------------------------------------------------------- /templates/default/images/folder64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/folder64.png -------------------------------------------------------------------------------- /templates/default/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/fullscreen.png -------------------------------------------------------------------------------- /templates/default/images/icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/accept.png -------------------------------------------------------------------------------- /templates/default/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/add.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/diag_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/diag_bg.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_disabled.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_disabled_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_disabled_tab.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_disabled_tab_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_disabled_tab_prev.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_drag.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_drag_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_drag_tab.png -------------------------------------------------------------------------------- /templates/default/images/icons/admin/widget_drag_tab_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/admin/widget_drag_tab_prev.png -------------------------------------------------------------------------------- /templates/default/images/icons/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/basket.png -------------------------------------------------------------------------------- /templates/default/images/icons/basket_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/basket_put.png -------------------------------------------------------------------------------- /templates/default/images/icons/basket_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/basket_remove.png -------------------------------------------------------------------------------- /templates/default/images/icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/bell.png -------------------------------------------------------------------------------- /templates/default/images/icons/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/blog.png -------------------------------------------------------------------------------- /templates/default/images/icons/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/book_open.png -------------------------------------------------------------------------------- /templates/default/images/icons/bullet_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/bullet_arrow_down.png -------------------------------------------------------------------------------- /templates/default/images/icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/camera.png -------------------------------------------------------------------------------- /templates/default/images/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/cancel.png -------------------------------------------------------------------------------- /templates/default/images/icons/chartmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/chartmap.png -------------------------------------------------------------------------------- /templates/default/images/icons/check_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/check_small.png -------------------------------------------------------------------------------- /templates/default/images/icons/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/checklist.png -------------------------------------------------------------------------------- /templates/default/images/icons/clock-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/clock-small.png -------------------------------------------------------------------------------- /templates/default/images/icons/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/close.gif -------------------------------------------------------------------------------- /templates/default/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/close.png -------------------------------------------------------------------------------- /templates/default/images/icons/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/coin.png -------------------------------------------------------------------------------- /templates/default/images/icons/coins_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/coins_add.png -------------------------------------------------------------------------------- /templates/default/images/icons/coins_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/coins_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/comment-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/comment-small.png -------------------------------------------------------------------------------- /templates/default/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/comment.png -------------------------------------------------------------------------------- /templates/default/images/icons/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/config.png -------------------------------------------------------------------------------- /templates/default/images/icons/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/controller.png -------------------------------------------------------------------------------- /templates/default/images/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/copy.png -------------------------------------------------------------------------------- /templates/default/images/icons/cpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/cpanel.png -------------------------------------------------------------------------------- /templates/default/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/download.png -------------------------------------------------------------------------------- /templates/default/images/icons/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/draft.png -------------------------------------------------------------------------------- /templates/default/images/icons/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/drag.png -------------------------------------------------------------------------------- /templates/default/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/edit.png -------------------------------------------------------------------------------- /templates/default/images/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/error.png -------------------------------------------------------------------------------- /templates/default/images/icons/eye-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/eye-small.png -------------------------------------------------------------------------------- /templates/default/images/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/eye.png -------------------------------------------------------------------------------- /templates/default/images/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/file.png -------------------------------------------------------------------------------- /templates/default/images/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/filter.png -------------------------------------------------------------------------------- /templates/default/images/icons/filter_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/filter_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/flag_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/flag_check.png -------------------------------------------------------------------------------- /templates/default/images/icons/flag_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/flag_lock.png -------------------------------------------------------------------------------- /templates/default/images/icons/folder-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folder-small.png -------------------------------------------------------------------------------- /templates/default/images/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folder.png -------------------------------------------------------------------------------- /templates/default/images/icons/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folder_add.png -------------------------------------------------------------------------------- /templates/default/images/icons/folder_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folder_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/folder_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folder_edit.png -------------------------------------------------------------------------------- /templates/default/images/icons/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folders.png -------------------------------------------------------------------------------- /templates/default/images/icons/folders_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/folders_explorer.png -------------------------------------------------------------------------------- /templates/default/images/icons/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/form.png -------------------------------------------------------------------------------- /templates/default/images/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/group.png -------------------------------------------------------------------------------- /templates/default/images/icons/group_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/group_add.png -------------------------------------------------------------------------------- /templates/default/images/icons/group_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/group_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/help.png -------------------------------------------------------------------------------- /templates/default/images/icons/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/images.png -------------------------------------------------------------------------------- /templates/default/images/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/info.png -------------------------------------------------------------------------------- /templates/default/images/icons/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/install.png -------------------------------------------------------------------------------- /templates/default/images/icons/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/item.png -------------------------------------------------------------------------------- /templates/default/images/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/key.png -------------------------------------------------------------------------------- /templates/default/images/icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/labels.png -------------------------------------------------------------------------------- /templates/default/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/lock.png -------------------------------------------------------------------------------- /templates/default/images/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/logout.png -------------------------------------------------------------------------------- /templates/default/images/icons/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/logs.png -------------------------------------------------------------------------------- /templates/default/images/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/mail.png -------------------------------------------------------------------------------- /templates/default/images/icons/medal_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/medal_bronze.png -------------------------------------------------------------------------------- /templates/default/images/icons/medal_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/medal_gold.png -------------------------------------------------------------------------------- /templates/default/images/icons/medal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/medal_silver.png -------------------------------------------------------------------------------- /templates/default/images/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/menu.png -------------------------------------------------------------------------------- /templates/default/images/icons/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/messages.png -------------------------------------------------------------------------------- /templates/default/images/icons/move_to_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/move_to_folder.png -------------------------------------------------------------------------------- /templates/default/images/icons/newspaper_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/newspaper_add.png -------------------------------------------------------------------------------- /templates/default/images/icons/newspaper_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/newspaper_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/next.png -------------------------------------------------------------------------------- /templates/default/images/icons/onchecklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/onchecklist.png -------------------------------------------------------------------------------- /templates/default/images/icons/package_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/package_go.png -------------------------------------------------------------------------------- /templates/default/images/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/page_gear.png -------------------------------------------------------------------------------- /templates/default/images/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/play.png -------------------------------------------------------------------------------- /templates/default/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/prev.png -------------------------------------------------------------------------------- /templates/default/images/icons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/profile.png -------------------------------------------------------------------------------- /templates/default/images/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/refresh.png -------------------------------------------------------------------------------- /templates/default/images/icons/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/return.png -------------------------------------------------------------------------------- /templates/default/images/icons/return_for_revision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/return_for_revision.png -------------------------------------------------------------------------------- /templates/default/images/icons/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/rss.png -------------------------------------------------------------------------------- /templates/default/images/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/save.png -------------------------------------------------------------------------------- /templates/default/images/icons/save_draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/save_draft.png -------------------------------------------------------------------------------- /templates/default/images/icons/search-glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/search-glyph.png -------------------------------------------------------------------------------- /templates/default/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/search.png -------------------------------------------------------------------------------- /templates/default/images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/settings.png -------------------------------------------------------------------------------- /templates/default/images/icons/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/shield.png -------------------------------------------------------------------------------- /templates/default/images/icons/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/signature.png -------------------------------------------------------------------------------- /templates/default/images/icons/site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/site.png -------------------------------------------------------------------------------- /templates/default/images/icons/slider-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/slider-controls.png -------------------------------------------------------------------------------- /templates/default/images/icons/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/sort_asc.png -------------------------------------------------------------------------------- /templates/default/images/icons/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/sort_desc.png -------------------------------------------------------------------------------- /templates/default/images/icons/sort_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/sort_none.png -------------------------------------------------------------------------------- /templates/default/images/icons/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/subscribe.png -------------------------------------------------------------------------------- /templates/default/images/icons/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/tag.png -------------------------------------------------------------------------------- /templates/default/images/icons/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/transfer.png -------------------------------------------------------------------------------- /templates/default/images/icons/unbind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/unbind.png -------------------------------------------------------------------------------- /templates/default/images/icons/unsubscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/unsubscribe.png -------------------------------------------------------------------------------- /templates/default/images/icons/user-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/user-small.png -------------------------------------------------------------------------------- /templates/default/images/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/user.png -------------------------------------------------------------------------------- /templates/default/images/icons/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/user_add.png -------------------------------------------------------------------------------- /templates/default/images/icons/user_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/user_delete.png -------------------------------------------------------------------------------- /templates/default/images/icons/view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/view_list.png -------------------------------------------------------------------------------- /templates/default/images/icons/vote_thumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/vote_thumbs.png -------------------------------------------------------------------------------- /templates/default/images/icons/www_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons/www_page.png -------------------------------------------------------------------------------- /templates/default/images/icons32/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/brick.png -------------------------------------------------------------------------------- /templates/default/images/icons32/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/folder.png -------------------------------------------------------------------------------- /templates/default/images/icons32/form_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/form_edit.png -------------------------------------------------------------------------------- /templates/default/images/icons32/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/layout.png -------------------------------------------------------------------------------- /templates/default/images/icons32/list_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/list_switch.png -------------------------------------------------------------------------------- /templates/default/images/icons32/medal_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/medal_bronze.png -------------------------------------------------------------------------------- /templates/default/images/icons32/medal_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/medal_gold.png -------------------------------------------------------------------------------- /templates/default/images/icons32/medal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/medal_silver.png -------------------------------------------------------------------------------- /templates/default/images/icons32/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/menu.png -------------------------------------------------------------------------------- /templates/default/images/icons32/package_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/package_go.png -------------------------------------------------------------------------------- /templates/default/images/icons32/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/page.png -------------------------------------------------------------------------------- /templates/default/images/icons32/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/pages.png -------------------------------------------------------------------------------- /templates/default/images/icons32/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/settings.png -------------------------------------------------------------------------------- /templates/default/images/icons32/shape_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/shape_align_left.png -------------------------------------------------------------------------------- /templates/default/images/icons32/update-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/update-black.png -------------------------------------------------------------------------------- /templates/default/images/icons32/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/update.png -------------------------------------------------------------------------------- /templates/default/images/icons32/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/icons32/user.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /templates/default/images/jquery-ui/ui-icons_fff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/jquery-ui/ui-icons_fff_256x240.png -------------------------------------------------------------------------------- /templates/default/images/languages/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /templates/default/images/loader16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/loader16.gif -------------------------------------------------------------------------------- /templates/default/images/loader24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/loader24.gif -------------------------------------------------------------------------------- /templates/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/loading.gif -------------------------------------------------------------------------------- /templates/default/images/modal/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/modal/close.png -------------------------------------------------------------------------------- /templates/default/images/modal/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/modal/controls.png -------------------------------------------------------------------------------- /templates/default/images/nav-arrow-down-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nav-arrow-down-white.png -------------------------------------------------------------------------------- /templates/default/images/nav-arrow-right-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nav-arrow-right-light.png -------------------------------------------------------------------------------- /templates/default/images/nav-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nav-arrow-right.png -------------------------------------------------------------------------------- /templates/default/images/nav-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nav-home.png -------------------------------------------------------------------------------- /templates/default/images/nav_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nav_sep.png -------------------------------------------------------------------------------- /templates/default/images/nophoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/nophoto.png -------------------------------------------------------------------------------- /templates/default/images/photo-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/photo-sprites.png -------------------------------------------------------------------------------- /templates/default/images/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/processing.gif -------------------------------------------------------------------------------- /templates/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/spacer.gif -------------------------------------------------------------------------------- /templates/default/images/video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/video.play.png -------------------------------------------------------------------------------- /templates/default/images/vline1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/images/vline1px.png -------------------------------------------------------------------------------- /templates/default/js/fields/city.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('#location_group').on('input', function (){ 3 | v = $(this).val(); 4 | if(v){ 5 | $('#output_string').parent().show(); 6 | } else { 7 | $('#output_string').parent().hide(); 8 | } 9 | }).trigger('input'); 10 | }); -------------------------------------------------------------------------------- /templates/default/js/i18n/jquery-ui/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/default/js/i18n/jquery-ui/en.js -------------------------------------------------------------------------------- /templates/default/js/widgets_options/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/default/widgets/html/html.tpl.php: -------------------------------------------------------------------------------- 1 |
options['content']; ?>
2 | 3 | -------------------------------------------------------------------------------- /templates/default/widgets/html/html_plain.tpl.php: -------------------------------------------------------------------------------- 1 | options['content']; 2 | -------------------------------------------------------------------------------- /templates/default/widgets/text/text.tpl.php: -------------------------------------------------------------------------------- 1 |
2 | options['content']), $this->getOptions()); ?> 3 |
4 | -------------------------------------------------------------------------------- /templates/default/widgets/text/text_plain.tpl.php: -------------------------------------------------------------------------------- 1 | options['content']), $this->getOptions()); 2 | -------------------------------------------------------------------------------- /templates/default/widgets/wrapper_plain.tpl.php: -------------------------------------------------------------------------------- 1 | title) { ?> 2 | getOption('html'); ?> -------------------------------------------------------------------------------- /templates/modern/assets/ui/grid.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($page_title); 4 | $this->setPageTitle($page_title); 5 | } 6 | ?> 7 | 8 |

9 | 10 | renderGrid($source_url, $grid); 11 | -------------------------------------------------------------------------------- /templates/modern/audio/new_message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/audio/new_message.mp3 -------------------------------------------------------------------------------- /templates/modern/controllers/comments/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | addBreadcrumb($tab['title']); 4 | 5 | echo $html; 6 | -------------------------------------------------------------------------------- /templates/modern/controllers/content/trash_empty.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle(LANG_BASKET_TITLE); 3 | $this->addBreadcrumb(LANG_BASKET_TITLE); 4 | ?> 5 | 6 |

7 | 8 |

9 | 10 |

-------------------------------------------------------------------------------- /templates/modern/controllers/forms/form_data.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | $value) { ?> 3 |

:

4 | 5 | -------------------------------------------------------------------------------- /templates/modern/controllers/forms/styles.css: -------------------------------------------------------------------------------- 1 | .icms-forms__full-msg{z-index:99;top:0;left:0;background-color:rgba(255, 255, 255, 0.85);color:#1a1a1a} -------------------------------------------------------------------------------- /templates/modern/controllers/groups/group_confirm.tpl.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 'modal']); ?> 7 |
-------------------------------------------------------------------------------- /templates/modern/controllers/groups/group_edit_header.tpl.php: -------------------------------------------------------------------------------- 1 | addMenuItems('group_tabs', $this->controller->getGroupEditMenu($group)); 3 | ?> 4 |
5 | menu('group_tabs', true, 'icms-groups__tabs nav nav-tabs'); ?> 6 |
-------------------------------------------------------------------------------- /templates/modern/controllers/groups/styles.css: -------------------------------------------------------------------------------- 1 | .icms-groups-g__header_counts{bottom:1rem;right:1rem;background-color:rgba(56, 103, 214, 0.8)} -------------------------------------------------------------------------------- /templates/modern/controllers/moderation/empty.tpl.php: -------------------------------------------------------------------------------- 1 | setPageTitle($page_title); 3 | $this->addBreadcrumb($page_title); 4 | ?> 5 | 6 |

7 | 8 | 11 | -------------------------------------------------------------------------------- /templates/modern/controllers/moderation/index.tpl.php: -------------------------------------------------------------------------------- 1 |

2 | 3 |
4 | menu('moderation_content_types', true, 'nav nav-pills mb-3 mb-md-4'); ?> 5 |
6 | 7 |
-------------------------------------------------------------------------------- /templates/modern/controllers/redirect/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/controllers/redirect/styles.css -------------------------------------------------------------------------------- /templates/modern/controllers/search/styles.css: -------------------------------------------------------------------------------- 1 | #search_results_list .media-body em{color:#e66767} -------------------------------------------------------------------------------- /templates/modern/controllers/tags/styles.css: -------------------------------------------------------------------------------- 1 | .btn.btn-outline-secondary.icms-btn-tag.colored:hover{background-color:#eeeeee} -------------------------------------------------------------------------------- /templates/modern/controllers/users/profile_tab.tpl.php: -------------------------------------------------------------------------------- 1 | setPageDescription($profile['nickname'].' — '.$tab['title']); ?> 2 | 3 | renderChild('profile_header', ['profile' => $profile, 'meta_profile' => $meta_profile, 'tabs' => $tabs, 'fields' => $fields]); ?> 4 | 5 |
6 | 7 |
-------------------------------------------------------------------------------- /templates/modern/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/bg.png -------------------------------------------------------------------------------- /templates/modern/images/colorpicker/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/colorpicker/colorpicker.png -------------------------------------------------------------------------------- /templates/modern/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/favicons/favicon.ico -------------------------------------------------------------------------------- /templates/modern/images/photoswipe/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/photoswipe/default-skin.png -------------------------------------------------------------------------------- /templates/modern/images/photoswipe/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/photoswipe/preloader.gif -------------------------------------------------------------------------------- /templates/modern/images/word_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/images/word_map.png -------------------------------------------------------------------------------- /templates/modern/js/i18n/jquery-ui/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/js/i18n/jquery-ui/en.js -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_interactions.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $user-selects { 4 | .user-select-#{$value} { user-select: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /templates/modern/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/activity/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "activity"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/forms/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "styles"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/forms/styles.scss: -------------------------------------------------------------------------------- 1 | .icms-forms__full-msg { 2 | z-index: 99; 3 | top: 0; 4 | left: 0; 5 | background-color: rgba($white, .85); 6 | color: $black; 7 | } -------------------------------------------------------------------------------- /templates/modern/scss/controllers/groups/_groups.scss: -------------------------------------------------------------------------------- 1 | .icms-groups-g__header_counts { 2 | bottom: $spacer; 3 | right: $spacer; 4 | background-color: rgba($primary, 0.8); 5 | } -------------------------------------------------------------------------------- /templates/modern/scss/controllers/groups/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "groups"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/images/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "styles"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/messages/build.scss: -------------------------------------------------------------------------------- 1 | // Переменные шаблона 2 | @import "../../theme/variables"; 3 | 4 | @import "../../bootstrap/functions"; 5 | @import "../../bootstrap/variables"; 6 | @import "../../bootstrap/mixins"; 7 | 8 | @import "messages"; 9 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/photos/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "styles"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/search/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "styles"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/search/styles.scss: -------------------------------------------------------------------------------- 1 | #search_results_list { 2 | .media-body { 3 | em { 4 | color: $danger; 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /templates/modern/scss/controllers/subscriptions/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "subscriptions"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/tags/_tags.scss: -------------------------------------------------------------------------------- 1 | .btn.btn-outline-secondary.icms-btn-tag.colored:hover { 2 | background-color: $gray-200; 3 | } -------------------------------------------------------------------------------- /templates/modern/scss/controllers/tags/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "tags"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/controllers/users/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "users"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/theme/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/scss/theme/_custom.scss -------------------------------------------------------------------------------- /templates/modern/scss/theme/_custom_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/scss/theme/_custom_variables.scss -------------------------------------------------------------------------------- /templates/modern/scss/theme/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/templates/modern/scss/theme/_mixins.scss -------------------------------------------------------------------------------- /templates/modern/scss/vendors/colorpicker/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "colorpicker"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/vendors/cropperjs/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "cropper"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/vendors/datatables/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "datatables"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/vendors/jquery-chosen/build.scss: -------------------------------------------------------------------------------- 1 | @import "svg-uri"; 2 | 3 | @import "../../bootstrap/functions"; 4 | @import "../../bootstrap/variables"; 5 | @import "../../bootstrap/mixins"; 6 | 7 | @import "component-variables"; 8 | @import "component-chosen"; 9 | -------------------------------------------------------------------------------- /templates/modern/scss/vendors/jquery-ui/_draggable.scss: -------------------------------------------------------------------------------- 1 | .ui-draggable-handle, .ui-sortable-handle { 2 | -ms-touch-action: none; 3 | touch-action: none; 4 | } -------------------------------------------------------------------------------- /templates/modern/scss/vendors/jquery-ui/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "core"; 6 | @import "datepicker"; 7 | @import "draggable"; 8 | @import "autocomplete"; 9 | @import "slider"; 10 | @import "theme"; -------------------------------------------------------------------------------- /templates/modern/scss/vendors/photoswipe/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "main-settings"; 6 | @import "main"; 7 | @import "default-skin/default-skin"; -------------------------------------------------------------------------------- /templates/modern/scss/vendors/slick/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "slick"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/vendors/toastr/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "toastr"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/wysiwyg/markitup/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "markitup"; 6 | -------------------------------------------------------------------------------- /templates/modern/scss/wysiwyg/redactor/build.scss: -------------------------------------------------------------------------------- 1 | @import "../../bootstrap/functions"; 2 | @import "../../bootstrap/variables"; 3 | @import "../../bootstrap/mixins"; 4 | 5 | @import "redactor"; 6 | -------------------------------------------------------------------------------- /templates/modern/widgets/html/html.tpl.php: -------------------------------------------------------------------------------- 1 |
2 | options['content']), $this->getOptions()); ?> 3 |
-------------------------------------------------------------------------------- /templates/modern/widgets/html/html_plain.tpl.php: -------------------------------------------------------------------------------- 1 | options['content']), $this->getOptions()); 2 | -------------------------------------------------------------------------------- /templates/modern/widgets/wrapper_plain.tpl.php: -------------------------------------------------------------------------------- 1 | " id="widget_wrapper_"> 2 | 3 | -------------------------------------------------------------------------------- /update/current/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/current/install.sql -------------------------------------------------------------------------------- /update/current/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/current/package.png -------------------------------------------------------------------------------- /update/current/package/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /update/previous/2.10.1-2.11.0/install.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `{#}content_types` CHANGE `description` `description` TEXT NULL DEFAULT NULL COMMENT 'Описание'; -------------------------------------------------------------------------------- /update/previous/2.12.0-2.12.1/install.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `{users}` CHANGE `password` `password` VARCHAR(32) NULL DEFAULT NULL COMMENT 'Хэш пароля (устаревшее поле)'; -------------------------------------------------------------------------------- /update/previous/2.12.2-2.13.0/install.sql: -------------------------------------------------------------------------------- 1 | UPDATE `{#}perms_rules` SET `options` = 'all,other,allow' WHERE `controller` = 'content' AND `name` = 'view_list'; -------------------------------------------------------------------------------- /update/previous/2.13.0-2.13.1/install.sql: -------------------------------------------------------------------------------- 1 | UPDATE `{#}comments` SET `user_id` = NULL WHERE `user_id` = 0; 2 | UPDATE `{#}menu` SET `is_fixed` = NULL WHERE `name` = 'footer'; 3 | -------------------------------------------------------------------------------- /update/previous/2.14.0-2.14.1/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.14.0-2.14.1/install.sql -------------------------------------------------------------------------------- /update/previous/2.14.1-2.14.2/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.14.1-2.14.2/install.sql -------------------------------------------------------------------------------- /update/previous/2.5.1-2.6.0/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.5.1-2.6.0/package.png -------------------------------------------------------------------------------- /update/previous/2.6.0-2.6.1/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.6.0-2.6.1/install.sql -------------------------------------------------------------------------------- /update/previous/2.6.0-2.6.1/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.6.0-2.6.1/package.png -------------------------------------------------------------------------------- /update/previous/2.6.1-2.7.0/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.6.1-2.7.0/package.png -------------------------------------------------------------------------------- /update/previous/2.7.0-2.7.1/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.7.0-2.7.1/install.sql -------------------------------------------------------------------------------- /update/previous/2.7.0-2.7.1/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.7.0-2.7.1/package.png -------------------------------------------------------------------------------- /update/previous/2.7.1-2.7.2/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/update/previous/2.7.1-2.7.2/package.png -------------------------------------------------------------------------------- /upload/.htaccess: -------------------------------------------------------------------------------- 1 | # PHP 7 2 | 3 | php_flag engine 0 4 | 5 | 6 | # PHP 8 7 | 8 | php_flag engine 0 9 | -------------------------------------------------------------------------------- /upload/default/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/avatar.jpg -------------------------------------------------------------------------------- /upload/default/avatar_micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/avatar_micro.png -------------------------------------------------------------------------------- /upload/default/avatar_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/avatar_small.jpg -------------------------------------------------------------------------------- /upload/default/private_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/private_big.png -------------------------------------------------------------------------------- /upload/default/private_micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/private_micro.png -------------------------------------------------------------------------------- /upload/default/private_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/private_normal.png -------------------------------------------------------------------------------- /upload/default/private_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/private_original.png -------------------------------------------------------------------------------- /upload/default/private_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/upload/default/private_small.png -------------------------------------------------------------------------------- /upload/installer/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/package-images/widgets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wysiwyg/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | # apache > 2.2 3 | 4 | Require all denied 5 | 6 | # apache <= 2.2 7 | 8 | deny from all 9 | 10 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/ext/error_marker"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/mode-text.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/mode/text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/ini.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/ini"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/json.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/json"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/mysql"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/plain_text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/scss.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/scss"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/svg.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/svg"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/text.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/text"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/ace/files/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | ; (function() { 2 | ace.require(["ace/snippets/yaml"], function(m) { 3 | if (typeof module == "object" && typeof exports == "object" && module) { 4 | module.exports = m; 5 | } 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/bold.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/close.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/code.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/facebook.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/handle.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/image.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/italic.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/link.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/list-bullet.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/list-numeric.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/menu.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/picture.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/picture_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/picture_upload.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/quote.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/smiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/smiles.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/spoiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/spoiler.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/stroke.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/submenu.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/underline.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/video.png -------------------------------------------------------------------------------- /wysiwyg/markitup/skins/simple/images/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/markitup/skins/simple/images/youtube.png -------------------------------------------------------------------------------- /wysiwyg/markitup/templates/preview.css: -------------------------------------------------------------------------------- 1 | /* preview style examples */ 2 | body { 3 | background-color:#EFEFEF; 4 | font:70% Verdana, Arial, Helvetica, sans-serif; 5 | } -------------------------------------------------------------------------------- /wysiwyg/tinymce/files/skins/ui/icms/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsoft/icms2/fa820a5a09a53daf46a1905ab25d17ffe5c2478d/wysiwyg/tinymce/files/skins/ui/icms/fonts/tinymce-mobile.woff --------------------------------------------------------------------------------