{"id":1144,"date":"2020-07-07T18:43:18","date_gmt":"2020-07-07T15:43:18","guid":{"rendered":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/%d0%be%d0%bf%d1%86%d0%b8%d0%b8-%d0%bf%d0%be%d1%80%d1%82%d0%b0%d0%bb%d0%b0-infinitly"},"modified":"2026-01-30T11:42:44","modified_gmt":"2026-01-30T08:42:44","slug":"infinitly-settings","status":"publish","type":"docs","link":"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings","title":{"rendered":"Infinitly interface options"},"content":{"rendered":"<p>Additional options allow you to change the appearance and behavior of the application, and are specified in the configuration file <code>\/etc\/microimpuls\/portal\/client.js<\/code>.<\/p>\n\n\n\n<p>The following options are available for the infinitly interface.<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Logic of work<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Authorization regime<\/h4>\n\n\n\n<p>Option name: <code>auth_mode<\/code>, data type: string.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>password<\/strong> \u2014 by login and password (by default).<\/li><li><strong>device_uid<\/strong> \u2014 by unique device identifier (usually MAC address) or IP address. In case of unsuccessful authorization, the subscriber will be offered authorization by login and password.<\/li><li><strong>device_uid_wo_fallback<\/strong> \u2014 the same as <strong>device_uid<\/strong>, but without processing some situations of unsuccessful authorization and transition to login and password authorization.<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'auth_mode': 'password'\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">The ability to enter characters in the password<\/h4>\n\n\n\n<p>Option name: <code>is_letter_in_password<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> numbers and letters can be entered in the password.<\/li><li><strong>falsely<\/strong> only numbers can be entered in the password (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'is_letters_in_password': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">The possibility of registration via SMS<\/h4>\n\n\n\n<p>Option name: <code>registration_available<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> The registration button is displayed via SMS.<\/li><li><strong>falsely<\/strong> it is not displayed (by default).<\/li><\/ul>\n\n\n\n<p>To be able to register via SMS, you need to properly configure integration with the SMS gateway on the Smarty server side.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'registration_available': false\n};<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png\" alt=\"\" class=\"wp-image-1598\"\/><figcaption>Registration screen via SMS<\/figcaption><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Registration regime<\/h4>\n\n\n\n<p>Option name: <code>registration_mode<\/code>data type: <code>string<\/code>.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>phone<\/strong> registration by phone number (by default).<\/li><li><strong>phone_and_password<\/strong> registration by phone number and password.<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'registration_mode': 'phone_and_password'\n};<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/11\/localhost_5080_templates_infinitly_default_index.html.png\" alt=\"\" class=\"wp-image-1604\"\/><figcaption>Registration by phone number and password.<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Mobile phone number mask in the registration screen<\/h4>\n\n\n\n<p>Option name: <code>registration_phone_mask<\/code>, data type: string.<\/p>\n\n\n\n<p>By default <strong>+7 ??? ??? ?? ??<\/strong>.<\/p>\n\n\n\n<p>The mask uses a special symbol <em>?<\/em>, instead of which the input value will be substituted, the remaining characters will be displayed as is.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'registration_phone_mask': '+7??????????\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display of the button and the ability to change the account<\/h4>\n\n\n\n<p>Option name: <code>show_logout_option<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 in the screen \u00abMy profile \u00bb when you click the yellow button, the user can log out of your account and log in under another account.<\/li><li><strong>falsely<\/strong> \u2014 the logout option will not be available (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'show_logout_option': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Saving the login and password in the input fields on the authorization screen when restarting the application<\/h4>\n\n\n\n<p>Option name: <code>restore_login_form_input_from_settings<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 when restarting the application and in the case of a logout in the input fields, the login and password from the previous session will be filled in on the authorization screen.<\/li><li><strong>falsely<\/strong> \u2014 the data will not be filled in (by default).<\/li><\/ul>\n\n\n\n<p>It is recommended to use this option in the authorization method <strong>password<\/strong> to avoid loss of password by subscribers after logout.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'restore_login_form_input_from_settings': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Reboot the device after the first activation<\/h4>\n\n\n\n<p>Option name: <code>reboot_device_after_login_with_password<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 after login and password authorization through the authorization form, the device will be rebooted.<\/li><li><strong>falsely<\/strong> \u2014 no reboot will be made, the application will be downloaded as usual (by default).<\/li><\/ul>\n\n\n\n<p>Can be used to perform system billing operations at primary \u00ab activation \u00bb prefixes by the subscriber.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'reboot_device_after_login_with_password': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Disabling the SET button on MAG consoles<\/h4>\n\n\n\n<p>Option name: <code>disable_set_button_on_mag<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the SET (Setup) button on the MAG console will be locked.<\/li><li><strong>falsely<\/strong> \u2014 the button will work according to the settings in the firmware (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'disable_set_button_on_mag': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Selection of the application interface used through account settings in Smarty<\/h4>\n\n\n\n<p>Option name: <code>check_account_template<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 after the account is authorized, the template installed in the account settings in Smarty will be checked, and if it differs from the application used, it will be rebooted in the desired template (by default).<\/li><li><strong>falsely<\/strong> \u2014 the set template in Smarty account settings will be ignored.<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'check_account_template': true\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Selection of the interface used on the page \u00abSettings\u00bb<\/h4>\n\n\n\n<p>Option name: <code>show_change_template_settings<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 on the page \u00abSettings\u00bb inside the application will be displayed item \u00abSelect template\u00bb. The list of templates for selection will be formed from the array prescribed in the option <code><a href=\"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/portal-settings\/\" data-type=\"docs\" data-id=\"989\">available_templates<\/a><\/code>.<\/li><li><strong>falsely<\/strong> \u2014 item \u00abSelect template\u00bb on the settings page will be hidden (by default).<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"450\" src=\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2021\/08\/show_change_template_settings_infinitly.png\" alt=\"\" class=\"wp-image-2045\"\/><figcaption><meta charset=\"utf-8\">Item \u00abSelect template\u00bb in the screen \u00abSettings\u00bb<\/figcaption><\/figure>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n-<code>show_change_template_settings<\/code>': true\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Suspension of server requests in Stand-By mode<\/h4>\n\n\n\n<p>Option name: <code>block_request_in_standby<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 includes blocking server requests if the device is in Stand-By mode. After leaving Stand-By, sending requests to the server is restored, however, the data in the interface may be outdated for some time.<\/li><li><strong>falsely<\/strong> \u2014 requests do not stop even in Stand-By, the data displayed in the interface does not become outdated (by default).<\/li><\/ul>\n\n\n\n<p>The option allows you to save server resources in moments of downtime of user devices.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'block_requests_in_standby': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Using the system keyboard of the device for input<\/h4>\n\n\n\n<p>Option name: <code>use_system_keyboard<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 involves using the system keyboard of the device to enter values instead of the built-in application keyboard.<\/li><li><strong>falsely<\/strong> \u2014 the built-in application keyboard is used to enter values (by default).<\/li><\/ul>\n\n\n\n<p>The option only works for devices that support calling the system keyboard.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'use_system_keyboard': true\n};<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Management logic<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Compatibility Mode with Smart TV Platform Guidelines<\/h4>\n\n\n\n<p>Option name: <code>samsung_guidelines_compatibility_mode<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> Enable compatibility mode with the recommendations of Smart TV platforms.<\/li><li><strong>falsely<\/strong> - disable (by default).<\/li><\/ul>\n\n\n\n<p>Compatibility mode affects the logic of the portal behavior, including the assignment of remote buttons, and is necessary to include some special restrictions for easier publication in the Samsung and LG app stores.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'samsung_guidelines_compatibility_mode': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Switching channels within the selected category<\/h4>\n\n\n\n<p>Option name: <code>switching_channels_inside_category<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 channel switching with Ch+\/- buttons will occur within the selected channel category.<\/li><li><strong>falsely<\/strong> \u2014 switching will occur within the category \u00abAll\u00bb even if another category is selected (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'switching_channels_inside_category': false\n};<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Reproduction of content<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Player rewind step<\/h4>\n\n\n\n<p>Option name: <code>player_wind_step<\/code>, data type: int.<\/p>\n\n\n\n<p>Allows you to set the step of rewinding the player in the archive and video library mode in one click of the rewind button. The step is set in seconds, by default 30.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'player_rewind_step': 30\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Volume up\/down step<\/h4>\n\n\n\n<p>Option name: <code>volume_control_step<\/code>, data type: int.<\/p>\n\n\n\n<p>By default <strong>5<\/strong> (percentage points out of 100, where 100 \u2014 maximum volume, 0 \u2014 minimum).<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'volume_control_step': 5\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Keeping the selected aspect ratio for each channel separately<\/h4>\n\n\n\n<p>Option name: <code>save_aspect_ratio_per_channel<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 in the application settings on the device, the user selected aspect ratio will be stored separately for each channel.<\/li><li><strong>falsely<\/strong> \u2014 the last selected aspect ratio common to all channels will be retained (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'save_aspect_ratio_per_channel': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Save the selected audio track language for each channel separately<\/h4>\n\n\n\n<p>Option name: <code>save_audio_track_lang_per_channel<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 in the application settings on the device, the user-selected audio track language will be stored separately for each channel.<\/li><li><strong>falsely<\/strong> \u2014 the last selected language common to all channels will be saved (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'save_audio_track_lang_per_channel': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Automatically Hiding Menus When Playing Content<\/h4>\n\n\n\n<p>Option name: <code>autohide_timer<\/code>, data type: int.<\/p>\n\n\n\n<p>Allows you to set a timeout (in minutes), after which the current screen should be hidden and open full-screen player, if at the moment there is a playback of some content.<\/p>\n\n\n\n<p>By default <strong>0<\/strong> (hidden off).<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'autohide_timer': 2\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Configure UDP Proxy on Android devices<\/h4>\n\n\n\n<p>Option name: <code>show_udp_proxy_settings<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> The settings menu will display the item \u00abUDP Proxy\u00bb with which you can configure the Multicast-links wrapping through UDP Proxy.<\/li><li><strong>falsely<\/strong> - the item will be hidden (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'show_udp_proxy_settings': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Setting a special ratio of screen sides when playing movies<\/h4>\n\n\n\n<p>Option name: <code>set_default_aspect_ratio_for_vod<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> after the inclusion of the playback of the film from the video library, the aspect ratio of 16\u00d79 will be forcibly established.<\/li><li><strong>falsely<\/strong> - the aspect ratio selected earlier by the subscriber will be retained (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'set_default_aspect_ratio_for_vod': false\n};<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Appearance \u2014 General<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Additional CSS class for body interface<\/h4>\n\n\n\n<p>Option name: <code>custom<\/code>, data type: string.<\/p>\n\n\n\n<p>Allows you to connect an additional class to the body portal tag. It can be used to customize the interface through an additional CSS file.<\/p>\n\n\n\n<p>No default.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'custom_body_class': 'custom'\n};<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Appearance \u2014 TV<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Depth of TV program display<\/h4>\n\n\n\n<p>Option name: <code>max_epg_depth<\/code>, data type: int.<\/p>\n\n\n\n<p>Determines the depth of EPG in days for the screen \u00abTV program \u00bb. If the value of the option is greater than 0, the depth will be equal to this value. If the option is not specified (or equal to 0), then the archive depth will be used for the channel with the archive <code>max_archive_duration<\/code> if the channel does not have an archive \u2014, the program will be displayed only for the current day.<\/p>\n\n\n\n<p>By default <strong>0<\/strong>.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'max_epg_depth': 0\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display category \u00abFavorites\u00bb for TV channels<\/h4>\n\n\n\n<p>Option name: <code>tv_how_favorites<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the list of channels will display the category \u00abFavorites\u00bb and the user can add channels to favorites.<\/li><li><strong>falsely<\/strong> \u2014 the function will be disabled (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'tv_show_favorites': false\n};<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Appearance \u2014 video library<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Display category \u00abNews\u00bb in the video library<\/h4>\n\n\n\n<p>Option name: <code>vod_show_news<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> display the category \u00abNews\u00bb (by default).<\/li><li><strong>falsely<\/strong> - not display.<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'vod_show_news': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display category \u00abFilm Packages\u00bb in video library<\/h4>\n\n\n\n<p>Option name: <code>vod_show_packages<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the list of categories in the video library will show the category \u00ab Movie Packages\u00bb with movie packages configured in Smarty as packages (by default).<\/li><li><strong>falsely<\/strong> \u2014 the category will be hidden.<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'vod_show_packages': true\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display category \u00abBuyed\u00bb in video library<\/h4>\n\n\n\n<p>Option name: <code>vod_show_purchased<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the list of categories in the video library will show the category \u00abBuyed\u00bb containing purchased movies (within rent or subscription).<\/li><li><strong>falsely<\/strong> \u2014 the category will be hidden (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'vod_show_purchased': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Category display \u00abVised \u00bb in video library<\/h4>\n\n\n\n<p>Option name: <code>vod_show_viewed<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the list of categories in the video library will show the category \u00ab Viewed \u00bb containing watched and unwatched movies.<\/li><li><strong>falsely<\/strong> \u2014 the category will be hidden (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'vod_show_viewed': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display category \u00abFavorites\u00bb in video library<\/h4>\n\n\n\n<p>Option name: <code>vod_show_favorited<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> \u2014 the list of categories in the video library will show the category \u00abFavorites\u00bb and the user can add movies to their favorites.<\/li><li><strong>falsely<\/strong> \u2014 the function will be disabled (by default).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'vod_show_favorited': false\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Grouping of films by category or genre<\/h4>\n\n\n\n<p>Option name: <code>filter_videos_by_genres<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> movies will be grouped by genre (by default).<\/li><li><strong>falsely<\/strong> Films will be grouped into categories (genres in Smarty with the option \u00ab enabled; is a category \u00bb).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'filter_videos_by_genres': true\n};<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Display item \u00abEnter session \u00bb<\/h4>\n\n\n\n<p>Option name: <code>show_seances<\/code>, data type: bool.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>true<\/strong> - will be shown item \u00ab Log in session \u00bb inside section \u00abMy profile \u00bb.<\/li><li><strong>falsely<\/strong> the entry point for the session will not be shown (by default).<\/li><\/ul>\n\n\n\n<p>Session \u2014 truncated version of the movie, available to the subscriber at a certain time after entering the ticket. The player in the session mode is deprived of the possibility of rewinding or pause (imitation of a real session in the cinema).<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n-<code>show_seances<\/code>': true\n};<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/11\/localhost_5080_templates_infinitly_default_index.html-1.png\" alt=\"\" class=\"wp-image-1607\"\/><figcaption>Item \u00abEnter the session \u00bb<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">How to sort movies by default<\/h4>\n\n\n\n<p>Option name: <code>default_vod_sort_order<\/code>, data type: string.<\/p>\n\n\n\n<p>Possible values:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>- created_at<\/strong> - by the date of addition (first the newest) (by default).<\/li><li><strong>-kinopoisk_rating<\/strong> - according to the rating of Kinopoisk (first the most popular).<\/li><li><strong>-imdb_rating<\/strong> According to IMDB rating (first most popular).<\/li><li><strong>-year<\/strong> the year the film was released (the newest first).<\/li><li><strong>-premiere_date<\/strong> the release date of the film (the newest first).<\/li><li><strong>name<\/strong> \u2014 by name (in alphabetical order).<\/li><\/ul>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">var CLIENT_SETTINGS = {\n\/\/\/...\n'default_vod_sort_order': \"-created_at\"\n};<\/pre>","protected":false},"featured_media":0,"parent":628,"menu_order":6,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_links_to":"","_links_to_target":""},"doc_tag":[],"class_list":["post-1144","docs","type-docs","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly\" \/>\n<meta property=\"og:description\" content=\"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u043f\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0439 \u0432\u0438\u0434 \u0438 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0438 \u0437\u0430\u0434\u0430\u044e\u0442\u0441\u044f \u0432 \u0444\u0430\u0439\u043b\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \/etc\/microimpuls\/portal\/client.js. \u0414\u043b\u044f \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u043f\u0446\u0438\u0438. \u041b\u043e\u0433\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0420\u0435\u0436\u0438\u043c \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043e\u043f\u0446\u0438\u0438: auth_mode, \u0442\u0438\u043f \u0434\u0430\u043d\u043d\u044b\u0445: string. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f: password &#8212; \u043f\u043e \u043b\u043e\u0433\u0438\u043d\u0443 \u0438 \u043f\u0430\u0440\u043e\u043b\u044e (\u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e). device_uid &#8212; \u043f\u043e \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043e\u0431\u044b\u0447\u043d\u043e MAC-\u0430\u0434\u0440\u0435\u0441\u0443) \u0438\u043b\u0438 \u043f\u043e IP-\u0430\u0434\u0440\u0435\u0441\u0443. \u0412 \u0441\u043b\u0443\u0447\u0430\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e\u0439 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\/\" \/>\n<meta property=\"og:site_name\" content=\"Microimpuls\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-30T08:42:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\",\"url\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\",\"name\":\"\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly\",\"isPartOf\":{\"@id\":\"https:\/\/micro.im\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage\"},\"image\":{\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png\",\"datePublished\":\"2020-07-07T15:43:18+00:00\",\"dateModified\":\"2026-01-30T08:42:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage\",\"url\":\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png\",\"contentUrl\":\"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\",\"item\":\"https:\/\/micro.im\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Smarty\",\"item\":\"https:\/\/microimpuls.com\/docs\/smarty\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e\u0440\u0442\u0430\u043b\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439\",\"item\":\"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/micro.im\/#website\",\"url\":\"https:\/\/micro.im\/\",\"name\":\"Microimpuls\",\"description\":\"\u041a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0434\u043b\u044f OTT \u0438 IPTV\",\"publisher\":{\"@id\":\"https:\/\/micro.im\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/micro.im\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/micro.im\/#organization\",\"name\":\"Microimpuls\",\"url\":\"https:\/\/micro.im\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/micro.im\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/microimpuls.com\/wp-content\/uploads\/2024\/12\/mi-logo-square-en-black.png\",\"contentUrl\":\"https:\/\/microimpuls.com\/wp-content\/uploads\/2024\/12\/mi-logo-square-en-black.png\",\"width\":208,\"height\":219,\"caption\":\"Microimpuls\"},\"image\":{\"@id\":\"https:\/\/micro.im\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Infinitly interface options","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\/","og_locale":"en_US","og_type":"article","og_title":"\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly","og_description":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u043f\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0439 \u0432\u0438\u0434 \u0438 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0438 \u0437\u0430\u0434\u0430\u044e\u0442\u0441\u044f \u0432 \u0444\u0430\u0439\u043b\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \/etc\/microimpuls\/portal\/client.js. \u0414\u043b\u044f \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043e\u043f\u0446\u0438\u0438. \u041b\u043e\u0433\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0420\u0435\u0436\u0438\u043c \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043e\u043f\u0446\u0438\u0438: auth_mode, \u0442\u0438\u043f \u0434\u0430\u043d\u043d\u044b\u0445: string. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f: password &#8212; \u043f\u043e \u043b\u043e\u0433\u0438\u043d\u0443 \u0438 \u043f\u0430\u0440\u043e\u043b\u044e (\u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e). device_uid &#8212; \u043f\u043e \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 (\u043e\u0431\u044b\u0447\u043d\u043e MAC-\u0430\u0434\u0440\u0435\u0441\u0443) \u0438\u043b\u0438 \u043f\u043e IP-\u0430\u0434\u0440\u0435\u0441\u0443. \u0412 \u0441\u043b\u0443\u0447\u0430\u0435 \u043d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e\u0439 [&hellip;]","og_url":"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings\/","og_site_name":"Microimpuls","article_modified_time":"2026-01-30T08:42:44+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings","url":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings","name":"Infinitly interface options","isPartOf":{"@id":"https:\/\/micro.im\/#website"},"primaryImageOfPage":{"@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage"},"image":{"@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage"},"thumbnailUrl":"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png","datePublished":"2020-07-07T15:43:18+00:00","dateModified":"2026-01-30T08:42:44+00:00","breadcrumb":{"@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#primaryimage","url":"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png","contentUrl":"https:\/\/www.microimpuls.com\/wp-content\/uploads\/2020\/10\/localhost_5080_templates_infinitly_default_index.html-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings\/infinitly-settings#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","item":"https:\/\/micro.im\/"},{"@type":"ListItem","position":2,"name":"Smarty","item":"https:\/\/microimpuls.com\/docs\/smarty"},{"@type":"ListItem","position":3,"name":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e\u0440\u0442\u0430\u043b\u043e\u0432 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439","item":"https:\/\/microimpuls.com\/docs\/smarty\/portal-and-apps-settings"},{"@type":"ListItem","position":4,"name":"\u041e\u043f\u0446\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 infinitly"}]},{"@type":"WebSite","@id":"https:\/\/micro.im\/#website","url":"https:\/\/micro.im\/","name":"Microimpulses","description":"Comprehensive solutions for OTT and IPTV","publisher":{"@id":"https:\/\/micro.im\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/micro.im\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/micro.im\/#organization","name":"Microimpulses","url":"https:\/\/micro.im\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/micro.im\/#\/schema\/logo\/image\/","url":"https:\/\/microimpuls.com\/wp-content\/uploads\/2024\/12\/mi-logo-square-en-black.png","contentUrl":"https:\/\/microimpuls.com\/wp-content\/uploads\/2024\/12\/mi-logo-square-en-black.png","width":208,"height":219,"caption":"Microimpuls"},"image":{"@id":"https:\/\/micro.im\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/1144","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/types\/docs"}],"replies":[{"embeddable":true,"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/comments?post=1144"}],"version-history":[{"count":20,"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/1144\/revisions"}],"predecessor-version":[{"id":3139,"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/1144\/revisions\/3139"}],"up":[{"embeddable":true,"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/628"}],"next":[{"title":"Redmax interface options","link":"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/%d0%be%d0%bf%d1%86%d0%b8%d0%b8-%d0%b8%d0%bd%d1%82%d0%b5%d1%80%d1%84%d0%b5%d0%b9%d1%81%d0%b0-redmax","href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/5012"}],"prev":[{"title":"Impuls interface options","link":"https:\/\/microimpuls.com\/en\/docs\/smarty\/portal-and-apps-settings\/impuls-settings","href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/docs\/1027"}],"wp:attachment":[{"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/media?parent=1144"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/microimpuls.com\/en\/wp-json\/wp\/v2\/doc_tag?post=1144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}