Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/calendar/sync/interface/src/panelitems/ |
Upload File : |
import SyncItemTemplate from "./syncitemtemplate"; import {Menu} from "main.popup"; import {Loc, Tag} from "main.core"; export default class OutlookItem extends SyncItemTemplate { constructor(options) { super(options); this.sliderIconClass = 'calendar-sync-slider-header-icon-ms'; this.image = '/bitrix/images/calendar/sync/outlook.svg'; this.color = '#ffa900'; this.title = Loc.getMessage('CALENDAR_TITLE_OUTLOOK'); this.data.hasMenu = true; this.infoBySections = options.data.infoBySections; } syncSectionWithOutlook (section) { } getMenuItems(): * { return this.data.sections; } showMenu() { if (!this.menu) { } else { this.menu.show(); } } }