Current Path : /var/www/html/clients/old.e-nkama.ru/e-nkama_bitrix/bitrix/modules/fileman/ |
Current File : /var/www/html/clients/old.e-nkama.ru/e-nkama_bitrix/bitrix/modules/fileman/properties.php |
<? IncludeModuleLangFile(__FILE__); class CIBlockPropertyMapInterface { function GetUserTypeDescription() { return array(); } function GetPropertyFieldHtml($arProperty, $value, $strHTMLControlName) { return ''; } function GetAdminListViewHTML($arProperty, $value, $strHTMLControlName) { return $value['VALUE']; } function GetPublicViewHTML($arProperty, $value, $strHTMLControlName) { return ''; } function ConvertFromDB($arProperty, $value) { $arResult = array('VALUE' => ''); if (strlen($value['VALUE']) > 0) { $arCoords = explode(',', $value['VALUE'], 2); $lat = doubleval($arCoords[0]); $lng = doubleval($arCoords[1]); if ($lat && $lng) $arResult['VALUE'] = $lat.','.$lng; } return $arResult; } function ConvertToDB($arProperty, $value) { $arResult = array('VALUE' => ''); if (strlen($value['VALUE']) > 0) { $arCoords = explode(',', $value['VALUE'], 2); $lat = doubleval($arCoords[0]); $lng = doubleval($arCoords[1]); if ($lat && $lng) $arResult['VALUE'] = $lat.','.$lng; } return $arResult; } function _GetMapKey($map_type, &$strDomain) { $MAP_KEY = ''; $strMapKeys = COPtion::GetOptionString('fileman', 'map_'.$map_type.'_keys'); $strDomain = $_SERVER['HTTP_HOST']; $wwwPos = strpos($strDomain, 'www.'); if ($wwwPos === 0) $strDomain = substr($strDomain, 4); if ($strMapKeys) { $arMapKeys = unserialize($strMapKeys); if (array_key_exists($strDomain, $arMapKeys)) $MAP_KEY = $arMapKeys[$strDomain]; } return $MAP_KEY; } } class CIBlockPropertyMapGoogle extends CIBlockPropertyMapInterface { function GetUserTypeDescription() { return array( "PROPERTY_TYPE" =>"S", "USER_TYPE" =>"map_google", "DESCRIPTION" =>GetMessage("IBLOCK_PROP_MAP_GOOGLE"), "GetPropertyFieldHtml" =>array("CIBlockPropertyMapGoogle","GetPropertyFieldHtml"), "GetPublicViewHTML" =>array("CIBlockPropertyMapGoogle","GetPublicViewHTML"), "ConvertToDB" =>array("CIBlockPropertyMapGoogle","ConvertToDB"), "ConvertFromDB" =>array("CIBlockPropertyMapGoogle","ConvertFromDB"), ); } function GetPropertyFieldHtml($arProperty, $value, $strHTMLControlName) { global $APPLICATION; if ($strHTMLControlName["MODE"] != "FORM_FILL") return '<input type="text" name="'.htmlspecialchars($strHTMLControlName['VALUE']).'" value="'.htmlspecialchars($value['VALUE']).'" />'; if (strlen($value['VALUE']) > 0) { list($POINT_LAT, $POINT_LON) = explode(',', $value['VALUE'], 2); $bHasValue = true; } else { $POINT_LAT = doubleval(GetMessage('IBLOCK_PROP_MAP_GOOGLE_INIT_LAT')); $POINT_LON = doubleval(GetMessage('IBLOCK_PROP_MAP_GOOGLE_INIT_LON')); $bHasValue = false; } $MAP_ID = 'map_google_'.$arProperty['CODE'].'_'.$arProperty['ID']; ?> <div id="bx_map_hint_<?echo $MAP_ID?>" style="display: none;"> <div id="bx_map_hint_value_<?echo $MAP_ID?>" style="display: <?echo $bHasValue ? 'block' : 'none'?>;"> <? echo GetMessage('IBLOCK_PROP_MAP_GOOGLE_INSTR_VALUE').'<br /><br />'; ?> <a href="javascript:void(0);" onclick="findPoint_<?echo $MAP_ID?>()"><?echo GetMessage('IBLOCK_PROP_MAP_GOOGLE_GOTO_POINT')?></a> | <a href="javascript:void(0);" onclick="if (confirm('<?echo CUtil::JSEscape(GetMessage('IBLOCK_PROP_MAP_GOOGLE_REMOVE_POINT_CONFIRM'))?>')) removePoint_<?echo $MAP_ID?>()"><?echo GetMessage('IBLOCK_PROP_MAP_GOOGLE_REMOVE_POINT')?></a><br /><br /> </div> <div id="bx_map_hint_novalue_<?echo $MAP_ID?>" style="display: <?echo $bHasValue ? 'none' : 'block'?>;"> <? echo GetMessage('IBLOCK_PROP_MAP_GOOGLE_INSTR').'<br /><br />'; ?> </div> </div> <? $APPLICATION->IncludeComponent( 'bitrix:map.google.system', '', array( 'INIT_MAP_TYPE' => 'NORMAL', 'INIT_MAP_LON' => $POINT_LON ? $POINT_LON : 37.64, 'INIT_MAP_LAT' => $POINT_LAT ? $POINT_LAT : 55.76, 'INIT_MAP_SCALE' => 10, 'OPTIONS' => array('ENABLE_SCROLL_ZOOM', 'ENABLE_DRAGGING'), 'CONTROLS' => array('LARGE_MAP_CONTROL', 'HTYPECONTROL', 'MINIMAP', 'SCALELINE'), 'MAP_WIDTH' => '95%', 'MAP_HEIGHT' => 400, 'MAP_ID' => $MAP_ID, 'DEV_MODE' => 'Y', ), false, array('HIDE_ICONS' => 'Y') ); ?> <div id="bx_address_search_control_<?echo $MAP_ID?>" style="display: none;"><?echo GetMessage('IBLOCK_PROP_MAP_GOOGLE_SEARCH')?><input type="text" name="bx_address_<?echo $MAP_ID?>" id="bx_address_<?echo $MAP_ID?>" value="" style="width: 300px;" autocomplete="off" /></div> <input type="hidden" id="value_<?echo $MAP_ID;?>" name="<?=htmlspecialchars($strHTMLControlName["VALUE"])?>" value="<?=htmlspecialcharsEx($value["VALUE"])?>" /> <script type="text/javascript"> window.jsAdminGoogleMess = { nothing_found: '<?echo CUtil::JSEscape(GetMessage('IBLOCK_PROP_MAP_GOOGLE_NOTHING_FOUND'))?>' } BX.loadCSS('/bitrix/components/bitrix/map.google.view/settings/settings.css'); function BXWaitForMap_<?echo $MAP_ID?>() { if (!window.GLOBAL_arMapObjects['<?echo $MAP_ID?>']) setTimeout(BXWaitForMap_<?echo $MAP_ID?>, 300); else { window.obPoint_<?echo $MAP_ID?> = null; google.maps.event.addListener(window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'], 'dblclick', setPointValue_<?echo $MAP_ID?>); BX('bx_address_<?echo $MAP_ID?>').onkeypress = jsGoogleCESearch_<?echo $MAP_ID;?>.setTypingStarted; <? if ($bHasValue): ?> setPointValue_<?echo $MAP_ID?>({latLng: new google.maps.LatLng(<?echo $POINT_LAT?>, <?echo $POINT_LON?>)}); <? endif; ?> BX('bx_address_search_control_<?echo $MAP_ID?>').style.display = 'block'; BX('bx_map_hint_<?echo $MAP_ID?>').style.display = 'block'; } } <? if (defined('BX_PUBLIC_MODE') && BX_PUBLIC_MODE == 1): ?> setTimeout(BXWaitForMap_<?echo $MAP_ID?>, 1000); <? else: ?> BX.ready(BXWaitForMap_<?echo $MAP_ID?>); <? endif; ?> function findPoint_<?echo $MAP_ID?>() { if (null != window.obPoint_<?echo $MAP_ID?>) window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].panTo(window.obPoint_<?echo $MAP_ID?>.getPosition()); } function removePoint_<?echo $MAP_ID?>() { window.obPoint_<?echo $MAP_ID?>.setMap(null); window.obPoint_<?echo $MAP_ID?> = null; BX('bx_map_hint_novalue_<?echo $MAP_ID?>').style.display = 'block'; BX('bx_map_hint_value_<?echo $MAP_ID?>').style.display = 'none'; updatePointPosition_<?echo $MAP_ID?>(); } function setPointValue_<?echo $MAP_ID?>(obPoint) { if (null == window.obPoint_<?echo $MAP_ID?>) { window.obPoint_<?echo $MAP_ID?> = new google.maps.Marker({ position: obPoint.latLng, map: window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'], draggable:true }); google.maps.event.addListener(window.obPoint_<?echo $MAP_ID?>, "dragend", updatePointPosition_<?echo $MAP_ID?>); } else { window.obPoint_<?echo $MAP_ID?>.setPosition(obPoint.latLng); } BX('bx_map_hint_novalue_<?echo $MAP_ID?>').style.display = 'none'; BX('bx_map_hint_value_<?echo $MAP_ID?>').style.display = 'block'; updatePointPosition_<?echo $MAP_ID?>(obPoint); } function updatePointPosition_<?echo $MAP_ID?>(obPoint) { var val = ''; if (null != obPoint) { val = obPoint.latLng.lat() + ',' + obPoint.latLng.lng(); } BX('value_<?echo $MAP_ID?>').value = val; } var jsGoogleCESearch_<?echo $MAP_ID;?> = { bInited: false, map: null, geocoder: null, obInput: null, timerID: null, timerDelay: 1000, arSearchResults: [], obOut: null, __init: function(input) { if (jsGoogleCESearch_<?echo $MAP_ID;?>.bInited) return; jsGoogleCESearch_<?echo $MAP_ID;?>.map = window.GLOBAL_arMapObjects['<?echo $MAP_ID?>']; jsGoogleCESearch_<?echo $MAP_ID;?>.obInput = input; //input.form.onsubmit = function() {jsGoogleCESearch_<?echo $MAP_ID;?>.doSearch(); return false;} input.onfocus = jsGoogleCESearch_<?echo $MAP_ID;?>.showResults; input.onblur = jsGoogleCESearch_<?echo $MAP_ID;?>.hideResults; jsGoogleCESearch_<?echo $MAP_ID;?>.bInited = true; }, setTypingStarted: function(e) { if (null == e) e = window.event; if (e.keyCode == 13) { jsGoogleCESearch_<?echo $MAP_ID;?>.doSearch(); return false; } else { if (!jsGoogleCESearch_<?echo $MAP_ID;?>.bInited) jsGoogleCESearch_<?echo $MAP_ID;?>.__init(this); jsGoogleCESearch_<?echo $MAP_ID;?>.hideResults(); if (null != jsGoogleCESearch_<?echo $MAP_ID;?>.timerID) clearTimeout(jsGoogleCESearch_<?echo $MAP_ID;?>.timerID); jsGoogleCESearch_<?echo $MAP_ID;?>.timerID = setTimeout(jsGoogleCESearch_<?echo $MAP_ID;?>.doSearch, jsGoogleCESearch_<?echo $MAP_ID;?>.timerDelay); } }, doSearch: function() { var value = jsUtils.trim(jsGoogleCESearch_<?echo $MAP_ID;?>.obInput.value); if (value.length > 1) { if (null == jsGoogleCESearch_<?echo $MAP_ID;?>.geocoder) jsGoogleCESearch_<?echo $MAP_ID;?>.geocoder = new google.maps.Geocoder(); jsGoogleCESearch_<?echo $MAP_ID;?>.geocoder.geocode({ address: value, language: '<?=LANGUAGE_ID?>' }, jsGoogleCESearch_<?echo $MAP_ID;?>.__searchResultsLoad); } }, handleError: function() { alert(jsGoogleCE.jsMess.mess_error); }, __generateOutput: function() { var obPos = jsUtils.GetRealPos(jsGoogleCESearch_<?echo $MAP_ID;?>.obInput); jsGoogleCESearch_<?echo $MAP_ID;?>.obOut = document.body.appendChild(document.createElement('UL')); jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.className = 'bx-google-address-search-results'; jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.style.top = (obPos.bottom + 2) + 'px'; jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.style.left = obPos.left + 'px'; }, __searchResultsLoad: function(obResult, status) { var _this = jsGoogleCESearch_<?echo $MAP_ID;?>; if (status != google.maps.GeocoderStatus.OK && status != google.maps.GeocoderStatus.ZERO_RESULTS) { _this.handleError({message: status}); return; } if (!obResult) { _this.handleError(); } else { if (null == _this.obOut) _this.__generateOutput(); _this.obOut.innerHTML = ''; _this.clearSearchResults(); var len = 0; if (status == google.maps.GeocoderStatus.OK) { len = obResult.length; var obList = null; } if (len > 0) { for (var i = 0; i < len; i++) { _this.arSearchResults[i] = obResult[i].geometry.location; var lnk_text = ''; for (var j = 0; j < obResult[i].address_components.length; j++) { lnk_text += (lnk_text.length > 0 ? ', ' : '') + obResult[i].address_components[j].long_name; } _this.obOut.appendChild(BX.create('LI', { attrs: {className: i == 0 ? 'bx-google-first' : ''}, children: [ BX.create('A', { attrs: {href: "javascript:void(0)"}, props: {BXSearchIndex: i}, events: {click: _this.__showSearchResult}, children: [ BX.create('SPAN', { text: lnk_text }) ] }) ] })); } } else { _this.obOut.innerHTML = '<li class="bx-google-notfound">' + window.jsAdminGoogleMess.nothing_found + '</li>'; } _this.showResults(); } }, __showSearchResult: function() { if (null !== this.BXSearchIndex) { jsGoogleCESearch_<?echo $MAP_ID;?>.map.panTo(jsGoogleCESearch_<?echo $MAP_ID;?>.arSearchResults[this.BXSearchIndex]); } }, showResults: function() { if (null != jsGoogleCESearch_<?echo $MAP_ID;?>.obOut) jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.style.display = 'block'; }, hideResults: function() { if (null != jsGoogleCESearch_<?echo $MAP_ID;?>.obOut) { setTimeout("jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.style.display = 'none'", 300); } }, clearSearchResults: function() { for (var i = 0; i < jsGoogleCESearch_<?echo $MAP_ID;?>.arSearchResults.length; i++) { delete jsGoogleCESearch_<?echo $MAP_ID;?>.arSearchResults[i]; } jsGoogleCESearch_<?echo $MAP_ID;?>.arSearchResults = []; }, clear: function() { if (!jsGoogleCESearch_<?echo $MAP_ID;?>.bInited) return; jsGoogleCESearch_<?echo $MAP_ID;?>.bInited = false; if (null != jsGoogleCESearch_<?echo $MAP_ID;?>.obOut) { jsGoogleCESearch_<?echo $MAP_ID;?>.obOut.parentNode.removeChild(jsGoogleCESearch_<?echo $MAP_ID;?>.obOut); jsGoogleCESearch_<?echo $MAP_ID;?>.obOut = null; } jsGoogleCESearch_<?echo $MAP_ID;?>.arSearchResults = []; jsGoogleCESearch_<?echo $MAP_ID;?>.map = null; jsGoogleCESearch_<?echo $MAP_ID;?>.geocoder = null; jsGoogleCESearch_<?echo $MAP_ID;?>.obInput = null; jsGoogleCESearch_<?echo $MAP_ID;?>.timerID = null; } } </script> <? } function GetPublicViewHTML($arProperty, $value, $strHTMLControlName) { $s = ''; if(strlen($value["VALUE"])>0) { $value = parent::ConvertFromDB($arProperty, $value); $arCoords = explode(',', $value['VALUE']); ob_start(); $GLOBALS['APPLICATION']->IncludeComponent( 'bitrix:map.google.view', '', array( 'MAP_DATA' => serialize(array( 'google_lat' => $arCoords[0], 'google_lon' => $arCoords[1], 'PLACEMARKS' => array( array( 'LON' => $arCoords[1], 'LAT' => $arCoords[0], ), ), )), 'MAP_ID' => 'MAP_GOOGLE_VIEW_'.$arProperty['IBLOCK_ID'].'_'.$arProperty['ID'], 'DEV_MODE' => 'Y', ), false, array('HIDE_ICONS' => 'Y') ); $s .= ob_get_contents(); ob_end_clean(); } return $s; } } class CIBlockPropertyMapYandex extends CIBlockPropertyMapInterface { function GetUserTypeDescription() { return array( "PROPERTY_TYPE" => "S", "USER_TYPE" => "map_yandex", "DESCRIPTION" => GetMessage("IBLOCK_PROP_MAP_YANDEX"), "GetPropertyFieldHtml" => array("CIBlockPropertyMapYandex", "GetPropertyFieldHtml"), "GetPublicViewHTML" => array("CIBlockPropertyMapYandex", "GetPublicViewHTML"), "ConvertToDB" => array("CIBlockPropertyMapYandex", "ConvertToDB"), "ConvertFromDB" => array("CIBlockPropertyMapYandex", "ConvertFromDB"), ); } function _DrawKeyInputControl($MAP_ID, $strDomain) { echo BeginNote(); ?> <div id="key_input_control_<?echo $MAP_ID?>"> <?echo str_replace('#DOMAIN#', $strDomain, GetMessage('IBLOCK_PROP_MAP_YANDEX_NO_KEY_MESSAGE'))?><br /><br /> <?echo GetMessage('IBLOCK_PROP_MAP_YANDEX_NO_KEY')?><input type="text" name="map_yandex_key_<?echo $MAP_ID?>" id="map_yandex_key_<?echo $MAP_ID?>" /> <input type="button" value="<?echo htmlspecialchars(GetMessage('IBLOCK_PROP_MAP_YANDEX_NO_KEY_BUTTON'))?>" onclick="setYandexKey('<?echo $strDomain?>', 'map_yandex_key_<?echo $MAP_ID?>')" /> <input type="button" value="<?echo htmlspecialchars(GetMessage('IBLOCK_PROP_MAP_YANDEX_SAVE_KEY_BUTTON'))?>" onclick="saveYandexKey('<?echo $strDomain?>', 'map_yandex_key_<?echo $MAP_ID?>')" /> </div> <div id="key_input_message_<?echo $MAP_ID?>" style="display: none;"><?echo GetMessage('IBLOCK_PROP_MAP_YANDEX_NO_KEY_OKMESSAGE')?></div> <? echo EndNote(); ?> <script type="text/javascript"> function setYandexKey(domain, input) { LoadMap_<?echo $MAP_ID?>(document.getElementById(input).value); } function saveYandexKey(domain, input) { var value = document.getElementById(input).value; CHttpRequest.Action = function(result) { CloseWaitWindow(); if (result == 'OK') { document.getElementById('key_input_control_<?echo $MAP_ID?>').style.display = 'none'; document.getElementById('key_input_message_<?echo $MAP_ID?>').style.display = 'block'; if (!window.GLOBAL_arMapObjects['<?echo $MAP_ID?>']) setYandexKey(domain, input); } else alert('<?echo CUtil::JSEscape(GetMessage('IBLOCK_PROP_MAP_YANDEX_NO_KEY_ERRORMESSAGE'))?>'); } var data = 'key_type=yandex&domain=' + domain + '&key=' + value; ShowWaitWindow(); CHttpRequest.Post('/bitrix/admin/settings.php?lang=<?echo LANGUAGE_ID?>&mid=fileman&save_map_key=Y', data); } </script> <? } // _DrawKeyInputControl() function GetPropertyFieldHtml($arProperty, $value, $strHTMLControlName) { global $APPLICATION; // TODO: remove this later to use in property default value setting if ($strHTMLControlName["MODE"] != "FORM_FILL") return '<input type="text" name="'.htmlspecialchars($strHTMLControlName['VALUE']).'" value="'.htmlspecialchars($value['VALUE']).'" />'; if (strlen($value['VALUE']) > 0) { list($POINT_LAT, $POINT_LON) = explode(',', $value['VALUE'], 2); $bHasValue = true; } else { $POINT_LAT = doubleval(GetMessage('IBLOCK_PROP_MAP_YANDEX_INIT_LAT')); $POINT_LON = doubleval(GetMessage('IBLOCK_PROP_MAP_YANDEX_INIT_LON')); $bHasValue = false; } $cur_index = RandString(5); if ($arProperty['MULTIPLE'] == 'Y' && isset($GLOBALS['YANDEX_MAP_PROPERTY_'.$arProperty['ID']])) { // property is multimple and map is already showed $MAP_ID = $GLOBALS['YANDEX_MAP_PROPERTY_'.$arProperty['ID']]; } else { $MAP_ID = 'map_yandex_'.$arProperty['CODE'].'_'.$arProperty['ID']; $GLOBALS['YANDEX_MAP_PROPERTY_'.$arProperty['ID']] = $MAP_ID; $strDomain = ''; if (!$MAP_KEY = CIBlockPropertyMapYandex::_GetMapKey('yandex', $strDomain)) { CIBlockPropertyMapYandex::_DrawKeyInputControl($MAP_ID, $strDomain); } ?> <div id="bx_map_hint_<?echo $MAP_ID?>" style="display: none;"> <div id="bx_map_hint_value_<?echo $MAP_ID?>" style="display: <?echo $bHasValue ? 'block' : 'none'?>;"> <? echo GetMessage('IBLOCK_PROP_MAP_YANDEX_INSTR_VALUE').'<br /><br />'; ?> <a href="javascript:void(0);" onclick="findPoint_<?echo $MAP_ID?>()"><?echo GetMessage('IBLOCK_PROP_MAP_YANDEX_GOTO_POINT')?></a> | <a href="javascript:void(0);" onclick="if (confirm('<?echo CUtil::JSEscape(GetMessage('IBLOCK_PROP_MAP_YANDEX_REMOVE_POINT_CONFIRM'))?>')) removePoint_<?echo $MAP_ID?>()"><?echo GetMessage('IBLOCK_PROP_MAP_YANDEX_REMOVE_POINT')?></a><br /><br /> </div> <div id="bx_map_hint_novalue_<?echo $MAP_ID?>" style="display: <?echo $bHasValue ? 'none' : 'block'?>;"> <? echo GetMessage('IBLOCK_PROP_MAP_YANDEX_INSTR').'<br /><br />'; ?> </div> </div> <? $APPLICATION->IncludeComponent( 'bitrix:map.yandex.system', '', array( 'KEY' => $MAP_KEY, 'INIT_MAP_TYPE' => 'NORMAL', 'INIT_MAP_LON' => $POINT_LON ? $POINT_LON : 37.64, 'INIT_MAP_LAT' => $POINT_LAT ? $POINT_LAT : 55.76, 'INIT_MAP_SCALE' => 10, 'OPTIONS' => array('ENABLE_SCROLL_ZOOM', 'ENABLE_DRAGGING'), 'CONTROLS' => array('TOOLBAR', 'ZOOM', 'TYPECONTROL', 'MINIMAP', 'SCALELINE'), 'MAP_WIDTH' => '95%', 'MAP_HEIGHT' => 400, 'MAP_ID' => $MAP_ID, 'DEV_MODE' => 'Y', 'WAIT_FOR_EVENT' => $MAP_KEY ? '' : 'LoadMap_'.$MAP_ID, 'ONMAPREADY' => 'BXWaitForMap_'.$MAP_ID ), false, array('HIDE_ICONS' => 'Y') ); ?> <div id="bx_address_search_control_<?echo $MAP_ID?>" style="display: none;"><?echo GetMessage('IBLOCK_PROP_MAP_YANDEX_SEARCH')?><input type="text" name="bx_address_<?echo $MAP_ID?>" id="bx_address_<?echo $MAP_ID?>" value="" style="width: 300px;" autocomplete="off" /></div> <input type="hidden" id="value_<?echo $MAP_ID;?>" name="<?=htmlspecialchars($strHTMLControlName["VALUE"])?>" value="<?=htmlspecialcharsEx($value["VALUE"])?>" /> <script type="text/javascript"> window.jsAdminYandexMess = { nothing_found: '<?echo CUtil::JSEscape(GetMessage('IBLOCK_PROP_MAP_YANDEX_NOTHING_FOUND'))?>' } jsUtils.loadCSSFile('/bitrix/components/bitrix/map.yandex.view/settings/settings.css'); function BXWaitForMap_<?echo $MAP_ID?>() { window.obPoint_<?echo $MAP_ID?> = null; window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Events.observe(window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'], window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].Events.DblClick, setPointValue_<?echo $MAP_ID?>); document.getElementById('bx_address_<?echo $MAP_ID?>').onkeypress = jsYandexCESearch_<?echo $MAP_ID;?>.setTypingStarted; <? if ($bHasValue): ?> setPointValue_<?echo $MAP_ID?>(new window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.GeoPoint(<?echo $POINT_LON?>, <?echo $POINT_LAT?>)); <? endif; ?> document.getElementById('bx_address_search_control_<?echo $MAP_ID?>').style.display = 'block'; document.getElementById('bx_map_hint_<?echo $MAP_ID?>').style.display = 'block'; } function findPoint_<?echo $MAP_ID?>() { if (null != window.obPoint_<?echo $MAP_ID?>) window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].panTo(window.obPoint_<?echo $MAP_ID?>.getGeoPoint()); } function removePoint_<?echo $MAP_ID?>() { window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].removeOverlay(window.obPoint_<?echo $MAP_ID?>); window.obPoint_<?echo $MAP_ID?> = null; document.getElementById('bx_map_hint_novalue_<?echo $MAP_ID?>').style.display = 'block'; document.getElementById('bx_map_hint_value_<?echo $MAP_ID?>').style.display = 'none'; updatePointPosition_<?echo $MAP_ID?>(); } // !!! function setPointValue_<?echo $MAP_ID?>(obEvent) { if (null != obEvent.getGeoPoint) var obPoint = obEvent.getGeoPoint(); else var obPoint = obEvent; if (null == window.obPoint_<?echo $MAP_ID?>) { window.obPoint_<?echo $MAP_ID?> = new window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Placemark(obPoint, {draggable:true}); window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].addOverlay(window.obPoint_<?echo $MAP_ID?>); window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Events.observe(window.obPoint_<?echo $MAP_ID?>, window.obPoint_<?echo $MAP_ID?>.Events.DragEnd, updatePointPosition_<?echo $MAP_ID?>); } else { window.obPoint_<?echo $MAP_ID?>.setGeoPoint(obPoint); } document.getElementById('bx_map_hint_novalue_<?echo $MAP_ID?>').style.display = 'none'; document.getElementById('bx_map_hint_value_<?echo $MAP_ID?>').style.display = 'block'; updatePointPosition_<?echo $MAP_ID?>(obPoint); window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].panTo(obPoint_<?echo $MAP_ID?>.getGeoPoint()); } function updatePointPosition_<?echo $MAP_ID?>(obPoint) { //var obPosition = obPoint.getGeoPoint(); if (null != obPoint && null != obPoint.getGeoPoint) obPoint = obPoint.getGeoPoint(); var obInput = document.getElementById('value_<?echo $MAP_ID?>'); obInput.value = null == obPoint ? '' : obPoint.getLat() + ',' + obPoint.getLng(); document.getElementById('point_<?echo $cur_index?>_lat').value = obPoint.getLat(); document.getElementById('point_<?echo $cur_index?>_lon').value = obPoint.getLng(); } var jsYandexCESearch_<?echo $MAP_ID;?> = { bInited: false, map: null, geocoder: null, obInput: null, timerID: null, timerDelay: 1000, arSearchResults: [], obOut: null, __init: function(input) { if (jsYandexCESearch_<?echo $MAP_ID;?>.bInited) return; jsYandexCESearch_<?echo $MAP_ID;?>.map = window.GLOBAL_arMapObjects['<?echo $MAP_ID?>']; jsYandexCESearch_<?echo $MAP_ID;?>.obInput = input; input.onfocus = jsYandexCESearch_<?echo $MAP_ID;?>.showResults; input.onblur = jsYandexCESearch_<?echo $MAP_ID;?>.hideResults; jsYandexCESearch_<?echo $MAP_ID;?>.bInited = true; }, setTypingStarted: function(e) { if (null == e) e = window.event; if (e.keyCode == 13) { jsYandexCESearch_<?echo $MAP_ID;?>.doSearch(); return false; } else { if (!jsYandexCESearch_<?echo $MAP_ID;?>.bInited) jsYandexCESearch_<?echo $MAP_ID;?>.__init(this); jsYandexCESearch_<?echo $MAP_ID;?>.hideResults(); if (null != jsYandexCESearch_<?echo $MAP_ID;?>.timerID) clearTimeout(jsYandexCESearch_<?echo $MAP_ID;?>.timerID); jsYandexCESearch_<?echo $MAP_ID;?>.timerID = setTimeout(jsYandexCESearch_<?echo $MAP_ID;?>.doSearch, jsYandexCESearch_<?echo $MAP_ID;?>.timerDelay); } }, doSearch: function() { var value = jsUtils.trim(jsYandexCESearch_<?echo $MAP_ID;?>.obInput.value); if (value.length > 1) { var geocoder = new window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Geocoder(value); window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Events.observe( geocoder, geocoder.Events.Load, jsYandexCESearch_<?echo $MAP_ID;?>.__searchResultsLoad ); window.GLOBAL_arMapObjects['<?echo $MAP_ID?>'].bx_context.YMaps.Events.observe( geocoder, geocoder.Events.Fault, jsYandexCESearch_<?echo $MAP_ID;?>.handleError ); } }, handleError: function(error) { alert(this.jsMess.mess_error + ': ' + error.message); }, __generateOutput: function() { var obPos = jsUtils.GetRealPos(jsYandexCESearch_<?echo $MAP_ID;?>.obInput); jsYandexCESearch_<?echo $MAP_ID;?>.obOut = document.body.appendChild(document.createElement('UL')); jsYandexCESearch_<?echo $MAP_ID;?>.obOut.className = 'bx-yandex-address-search-results'; jsYandexCESearch_<?echo $MAP_ID;?>.obOut.style.top = (obPos.bottom + 2) + 'px'; jsYandexCESearch_<?echo $MAP_ID;?>.obOut.style.left = obPos.left + 'px'; }, __searchResultsLoad: function(geocoder) { var _this = jsYandexCESearch_<?echo $MAP_ID;?>; if (null == _this.obOut) _this.__generateOutput(); _this.obOut.innerHTML = ''; _this.clearSearchResults(); if (len = geocoder.length()) { for (var i = 0; i < len; i++) { _this.arSearchResults[i] = geocoder.get(i); var obListElement = document.createElement('LI'); if (i == 0) obListElement.className = 'bx-yandex-first'; var obLink = document.createElement('A'); obLink.href = "javascript:void(0)"; var obText = obLink.appendChild(document.createElement('SPAN')); obText.appendChild(document.createTextNode(_this.arSearchResults[i].text)); obLink.BXSearchIndex = i; obLink.onclick = _this.__showSearchResult; obListElement.appendChild(obLink); _this.obOut.appendChild(obListElement); } } else { //var str = _this.jsMess.mess_search_empty; _this.obOut.innerHTML = '<li class="bx-yandex-notfound">' + window.jsAdminYandexMess.nothing_found + '</li>'; } _this.showResults(); //_this.map.redraw(); }, __showSearchResult: function() { if (null !== this.BXSearchIndex) { jsYandexCESearch_<?echo $MAP_ID;?>.map.panTo(jsYandexCESearch_<?echo $MAP_ID;?>.arSearchResults[this.BXSearchIndex].getGeoPoint()); jsYandexCESearch_<?echo $MAP_ID;?>.map.redraw(); } }, showResults: function() { if (null != jsYandexCESearch_<?echo $MAP_ID;?>.obOut) jsYandexCESearch_<?echo $MAP_ID;?>.obOut.style.display = 'block'; }, hideResults: function() { if (null != jsYandexCESearch_<?echo $MAP_ID;?>.obOut) { setTimeout("jsYandexCESearch_<?echo $MAP_ID;?>.obOut.style.display = 'none'", 300); } }, clearSearchResults: function() { for (var i = 0; i < jsYandexCESearch_<?echo $MAP_ID;?>.arSearchResults.length; i++) { delete jsYandexCESearch_<?echo $MAP_ID;?>.arSearchResults[i]; } jsYandexCESearch_<?echo $MAP_ID;?>.arSearchResults = []; }, clear: function() { if (!jsYandexCESearch_<?echo $MAP_ID;?>.bInited) return; jsYandexCESearch_<?echo $MAP_ID;?>.bInited = false; if (null != jsYandexCESearch_<?echo $MAP_ID;?>.obOut) { jsYandexCESearch_<?echo $MAP_ID;?>.obOut.parentNode.removeChild(jsYandexCESearch_<?echo $MAP_ID;?>.obOut); jsYandexCESearch_<?echo $MAP_ID;?>.obOut = null; } jsYandexCESearch_<?echo $MAP_ID;?>.arSearchResults = []; jsYandexCESearch_<?echo $MAP_ID;?>.map = null; jsYandexCESearch_<?echo $MAP_ID;?>.geocoder = null; jsYandexCESearch_<?echo $MAP_ID;?>.obInput = null; jsYandexCESearch_<?echo $MAP_ID;?>.timerID = null; } } </script><br /> <? } ?> <input type="text" name="point_<?echo $cur_index?>_lat" id="point_<?echo $cur_index?>_lat" />, <input type="text" name="point_<?echo $cur_index?>_lon" id="point_<?echo $cur_index?>_lon" /><br /> <? } function GetPublicViewHTML($arProperty, $value, $strHTMLControlName) { $MAP_KEY = ''; $strMapKeys = COPtion::GetOptionString('fileman', 'map_yandex_keys'); $strDomain = $_SERVER['HTTP_HOST']; $wwwPos = strpos($strDomian, 'www.'); if ($wwwPos === 0) $strDomain = substr($strDomain, 4); if ($strMapKeys) { $arMapKeys = unserialize($strMapKeys); if (array_key_exists($strDomain, $arMapKeys)) $MAP_KEY = $arMapKeys[$strDomain]; } $s = ''; if(strlen($value["VALUE"])>0) { $value = parent::ConvertFromDB($arProperty, $value); $arCoords = explode(',', $value['VALUE']); ob_start(); $GLOBALS['APPLICATION']->IncludeComponent( 'bitrix:map.yandex.view', '', array( 'KEY' => $MAP_KEY, 'MAP_DATA' => serialize(array( 'yandex_lat' => $arCoords[0], 'yandex_lon' => $arCoords[1], 'PLACEMARKS' => array( array( 'LON' => $arCoords[1], 'LAT' => $arCoords[0], ), ), )), 'MAP_ID' => 'MAP_YANDEX_VIEW_'.$arProperty['IBLOCK_ID'].'_'.$arProperty['ID'], 'DEV_MODE' => 'Y', ), false, array('HIDE_ICONS' => 'Y') ); $s .= ob_get_contents(); ob_end_clean(); } return $s; } } //AddEventHandler("iblock", "OnIBlockPropertyBuildList", array("CIBlockPropertyFileMan", "GetUserTypeDescription")); //RegisterModuleDependences('iblock', 'OnIBlockPropertyBuildList', 'fileman', 'CIBlockPropertyMapGoogle', 'GetUserTypeDescription'); //RegisterModuleDependences('iblock', 'OnIBlockPropertyBuildList', 'fileman', 'CIBlockPropertyMapYandex', 'GetUserTypeDescription'); // ########################## // ####### VIDEO PROPERTIES ###### // ########################## // ### Base class ### class CVideoProperty { function BasePrepareSettings($arProperty, $key = "SETTINGS") { $arSet = array( "BUFFER_LENGTH" => "10", "CONTROLBAR" => "bottom", "AUTOSTART" => "N", "VOLUME" => "90", "SKIN" => "", "FLASHVARS" => "", "WMODE_FLV" => "transparent", "BGCOLOR" => "FFFFFF", "COLOR" => "000000", "OVER_COLOR" => "000000", "SCREEN_COLOR" => "000000", "SILVERVARS" => "", "WMODE_WMV" => "windowless", ); if(is_array($arProperty[$key])) { if (isset($arProperty[$key]["BUFFER_LENGTH"])) $arSet["BUFFER_LENGTH"] = intVal($arProperty[$key]["BUFFER_LENGTH"]); if (isset($arProperty[$key]["CONTROLBAR"])) $arSet["CONTROLBAR"] = $arProperty[$key]["CONTROLBAR"]; if (isset($arProperty[$key]["AUTOSTART"])) $arSet["AUTOSTART"] = $arProperty[$key]["AUTOSTART"] == "Y" ? "Y" : "N"; if (isset($arProperty[$key]["VOLUME"])) $arSet["VOLUME"] = intVal($arProperty[$key]["VOLUME"]); if (isset($arProperty[$key]["SKIN"])) $arSet["SKIN"] = $arProperty[$key]["SKIN"]; if (isset($arProperty[$key]["FLASHVARS"])) $arSet["FLASHVARS"] = $arProperty[$key]["FLASHVARS"]; if (isset($arProperty[$key]["WMODE_FLV"])) $arSet["WMODE_FLV"] = $arProperty[$key]["WMODE_FLV"]; if (isset($arProperty[$key]["BGCOLOR"])) $arSet["BGCOLOR"] = $arProperty[$key]["BGCOLOR"]; if (isset($arProperty[$key]["COLOR"])) $arSet["COLOR"] = $arProperty[$key]["COLOR"]; if (isset($arProperty[$key]["OVER_COLOR"])) $arSet["OVER_COLOR"] = $arProperty[$key]["OVER_COLOR"]; if (isset($arProperty[$key]["SCREEN_COLOR"])) $arSet["SCREEN_COLOR"] = $arProperty[$key]["SCREEN_COLOR"]; if (isset($arProperty[$key]["SILVERVARS"])) $arSet["SILVERVARS"] = $arProperty[$key]["SILVERVARS"]; if (isset($arProperty[$key]["WMODE_WMV"])) $arSet["WMODE_WMV"] = $arProperty[$key]["WMODE_WMV"]; } return $arSet; } function BaseGetSettingsHTML($name, $val) { $arSkins = CUserTypeVideo::GetSkinsEx(CUserTypeVideo::GetSkinPath()); ob_start(); ?> <tr><td colSpan="2"> <style> tr.bx-prop-sub-title td{background: #E2E1E0! important; color: #525355! important; font-weight: bold! important; text-align: left! important; padding-left: 10px;} </style> </td></tr> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_BOTH_SET')?></td></tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_BUFFER')?>:</td> <td> <input type="text" name="<?= $name?>[BUFFER_LENGTH]" size="10" value="<?= $val["BUFFER_LENGTH"]?>"/> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_CONTROLBAR')?>:</td> <td> <select name="<?= $name?>[CONTROLBAR]"> <option value="bottom" <? if($val["CONTROLBAR"] == 'bottom') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_CONTROLBAR_DOWN')?></option> <option value="none" <? if($val["CONTROLBAR"] == 'none') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_CONTROLBAR_NONE')?></option> </select> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_AUTOSTART')?>:</td> <td> <input value="Y" type="checkbox" name="<?= $name?>[AUTOSTART]" <? if($val["AUTOSTART"] == 'Y') echo 'checked="checked"';?>/> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_VOLUME')?>:</td> <td> <input type="text" name="<?= $name?>[VOLUME]" size="10" value="<?= $val["VOLUME"]?>"/> </td> </tr> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_FLV_SET')?></td></tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_SKIN')?>:</td> <td id="bx_player_skin_cell"> <input id="bx_player_skin_input" type="hidden" name="<?= $name?>[SKIN]" value="<?= $val["SKIN"]?>" /> <script> jsUtils.loadCSSFile("/bitrix/components/bitrix/player/js/skin_selector.css"); jsUtils.loadJSFile("/bitrix/components/bitrix/player/js/prop_skin_selector.js", function() { if (!window.ComponentPropsSkinSelector || !window.BXSkinSelector) return; // Try to imitate CUSTOM-parameter in component params dialog ComponentPropsSkinSelector({ popertyID : "SKIN", getElements : function(){return {SKIN_PATH: {value: "<?= CVideoProperty::GetSkinPath()?>"}};}, oInput : document.getElementById("bx_player_skin_input"), oCont : document.getElementById("bx_player_skin_cell"), data : '<?= CUtil::JSEscape(CUtil::PhpToJSObject(array($arSkins, array('NoPreview' => GetMessage("IBLOCK_PROP_VIDEO_NO_PREVIEW"))))) ?>' }); }); </script> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_FLASHVARS')?>:</td> <td> <textarea cols="25" name="<?= $name?>[FLASHVARS]"><?= $val["FLASHVARS"]?></textarea> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_FLV')?>:</td> <td> <select name="<?= $name?>[WMODE_FLV]"> <option value="window" <? if($val["WMODE_FLV"] == 'window' || !$val["WMODE_FLV"]) echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_WINDOW')?></option> <option value="opaque" <? if($val["WMODE_FLV"] == 'opaque') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_OPAQUE')?></option> <option value="transparent" <? if($val["WMODE_FLV"] == 'transparent') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_TRANSPARENT')?></option> </select> </td> </tr> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_WMV_SET')?></td></tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_BGCOLOR')?>:</td> <td><input type="text" name="<?= $name?>[BGCOLOR]" size="10" value="<?= $val["BGCOLOR"]?>"/></td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_COLOR')?>:</td> <td><input type="text" name="<?= $name?>[COLOR]" size="10" value="<?= $val["COLOR"]?>"/></td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_OVER_COLOR')?>:</td> <td><input type="text" name="<?= $name?>[OVER_COLOR]" size="10" value="<?= $val["OVER_COLOR"]?>"/></td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_SCREEN_COLOR')?>:</td> <td><input type="text" name="<?= $name?>[SCREEN_COLOR]" size="10" value="<?= $val["SCREEN_COLOR"]?>"/ ></td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_SILVERVARS')?>:</td> <td> <textarea cols="25" name="<?= $name?>[SILVERVARS]"><?= $val["SILVERVARS"]?></textarea> </td> </tr> <tr> <td><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_WMV')?>:</td> <td> <select name="<?= $name?>[WMODE_WMV]"> <option value="window" <? if($val["WMODE_WMV"] == 'window') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_WINDOW')?></option> <option value="windowless" <? if($val["WMODE_WMV"] == 'windowless') echo 'selected';?>><?= GetMessage('IBLOCK_PROP_VIDEO_SET_WMODE_TRANSPARENT')?></option> </select> </td> </tr> <? $result .= ob_get_contents(); ob_end_clean(); return $result; } function BaseGetEditFormHTML($set, $val, $name) { global $APPLICATION; $id = str_replace(array("[","]"), "_", $name); $path = $val["path"]; if (intVal($val['width']) <= 0) $val['width'] = 400; if (intVal($val['height']) <= 0) $val['height'] = 300; ob_start(); ?> <div style="padding: 5px;"> <style> table.bx-video-prop-tbl{border-collapse: collapse! important; border: 1px solid #E0E4F1;} table.bx-video-prop-tbl td{padding: 3px 5px! important; border-bottom: 1px dotted #BABABA !important;} table.bx-video-prop-tbl tr.bx-prop-main-title td{background: #E0E4F1! important; color: #525355! important; font-weight: bold! important; text-align: center! important; border-bottom-width: 0px !important; padding: 5px! important;} table.bx-video-prop-tbl tr.bx-prop-sub-title td{background: #E2E1E0! important; color: #525355! important; font-weight: bold! important; text-align: left! important; border-bottom-width: 0px !important;} table.bx-video-prop-tbl td.bx-pr-title{text-align: right! important; vertical-align: top! important; padding-top: 8px !important;} div.bx-path-div a{float: right !important;} div.bx-path-div a.bx-leave{display: none;} div.bx-path-div-changed a.bx-leave{display: block !important;} div.bx-path-div-changed a.bx-change{display: none !important;} div.bx-path-div input.bx-path{color: #525355 !important;} div.bx-path-div-changed input.bx-path{text-decoration: line-through !important;} table.bx-video-prop-tbl img.spacer{display:block;float:left;height:1px;margin-top:-2px;width:220px;} </style> <table class="bx-video-prop-tbl"> <tr class="bx-prop-main-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_PARAMS_TITLE')?></td></tr> <? if(strlen($path) > 0):?> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_PARAMS_TITLE_VIEW')?></td></tr> <tr> <td colSpan="2" style="text-align: center;"> <?$APPLICATION->IncludeComponent( "bitrix:player", "", array( "PLAYER_TYPE" => "auto", "PATH" => $path, "WIDTH" => $val['width'], "HEIGHT" => $val['height'], "FILE_TITLE" => $val['title'], "FILE_DURATION" => intVal($val['duration']), "FILE_AUTHOR" => $val['author'], "FILE_DATE" => $val['date'], "FILE_DESCRIPTION" => $val['desc'], "SKIN_PATH" => CVideoProperty::GetSkinPath(), "SKIN" => $set["SKIN"], "CONTROLBAR" => $set["CONTROLBAR"], "WMODE" => $set["WMODE_FLV"], "WMODE_WMV" => $set["WMODE_WMV"], "SHOW_CONTROLS" => $set["CONTROLBAR"] != 'none' ? "Y" : "N", "CONTROLS_BGCOLOR" => $set["CONTROLS_BGCOLOR"], "CONTROLS_COLOR" => $set["CONTROLS_COLOR"], "CONTROLS_OVER_COLOR" => $set["CONTROLS_OVER_COLOR"], "SCREEN_COLOR" => $set["SCREEN_COLOR"], "AUTOSTART" => $set["AUTOSTART"], "VOLUME" => $set["VOLUME"], "ADDITIONAL_FLASHVARS" => $set["FLASHVARS"], "BUFFER_LENGTH" => $set["BUFFER_LENGTH"], "ADDITIONAL_WMVVARS" => $set["SILVERVARS"], "ALLOW_SWF" => "N", "LOGO_POSITION" => "none" ), false, array('HIDE_ICONS' => 'Y') ); ?> </td> </tr> <?endif;?> <tr><td class="bx-pr-title" style="width: 300px;"></td><td style="width: 240px;"></td></tr> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_PARAMS_TITLE_MAIN')?></td></tr> <? if(strlen($path) > 0):?> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_FILE')?>:</td> <td> <div id="bx_video_path_div_<?= $id?>" class="bx-path-div"> <input type="hidden" value="<?= $path?>" name= "<?= $name?>[CUR_PATH]" /> <input id="bx_video_b_new_file_<?= $id?>" type="hidden" value="N" name= "<?= $name?>[B_NEW_FILE]" /> <input class="bx-path" readonly="readonly" value="<?= htmlspecialcharsex($path)?>" size="30" /> <br /> <a href="javascript: void(0)" onclick="return ChangeOrLeaveFile<?= $id?>(true);" class="bx-change"><?= GetMessage('IBLOCK_PROP_VIDEO_FILE_CHANGE')?></a> <a href="javascript: void(0)" onclick="return ChangeOrLeaveFile<?= $id?>(false);" class="bx-leave"><?= GetMessage('IBLOCK_PROP_VIDEO_FILE_LEAVE')?></a> </div> </td> </tr> <? if(CVideoProperty::CheckFileInUploadDir($path)):?> <tr id="bx_video_del_row_<?= $id?>" style="display: none;"> <td class="bx-pr-title"></td> <td> <input type="checkbox" value="Y" id="bx_video_del_<?= $id?>" checked="checked" name= "<?= $name?>[DEL_CUR_FILE]" /><label for="bx_video_del_<?= $id?>"><?= GetMessage('IBLOCK_PROP_VIDEO_DEL_FILE')?></label> </td> </tr> <?endif;?> <?endif;?> <tr id="bx_video_new_path_row_<?= $id?>" <?if (strlen($path) > 0){ echo 'style="display: none;"'; }?>> <td class="bx-pr-title" style="width: 300px;"><?= GetMessage(strlen($path) > 0 ? 'IBLOCK_PROP_VIDEO_PATH_NEW' : 'IBLOCK_PROP_VIDEO_PATH')?>:</td> <td style="width: 240px;"> <img src="/bitrix/images/1.gif" class="spacer" /> <div id="bx_video_path_cont1_<?= $id?>" style="display: none;"> <input type="text" size="25" value="" id="bx_video_path_<?= $id?>" style="float:left;" name= "<?= $name?>[PATH]" /> <? CAdminFileDialog::ShowScript(Array ( "event" => "OpenFileBrowser_".$id, "arResultDest" => Array("FUNCTION_NAME" => "SetVideoPath".$id), "arPath" => Array(), "select" => 'F',// F - file only, D - folder only "operation" => 'O',// O - open, S - save "showUploadTab" => false, "showAddToMenuTab" => false, "fileFilter" => 'flv,mp4,mp3,wmv', "allowAllFiles" => true, "SaveConfig" => true ) ); CMedialib::ShowBrowseButton( array( "id" => 'OpenFileBrowser_but_'.$id, "event" => "OpenFileBrowser_".$id, 'MedialibConfig' => array( "event" => "OpenFileBrowser_ml_".$id, "arResultDest" => array("FUNCTION_NAME" => "SetVideoPath".$id) ) ));?> <br /> <a href="javascript: void(0)" onclick="return DisplayCont('bx_video_path_cont2_<?= $id?>', 'bx_video_path_cont1_<?= $id?>');" style="float: right;"><?= GetMessage('IBLOCK_PROP_VIDEO_PATH_FROM_PC')?></a> </div> <div id="bx_video_path_cont2_<?= $id?>"> <input type="file" value="" id="bx_video_path_<?= $id?>" name= "<?= $name?>[FILE]" /> <br /> <a href="javascript: void(0)" onclick="return DisplayCont('bx_video_path_cont1_<?= $id?>', 'bx_video_path_cont2_<?= $id?>');" style="float: right;"><?= GetMessage('IBLOCK_PROP_VIDEO_PATH_FROM_FD')?></a> </div> </td> </tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_SIZE')?>:</td> <td> <input id="bx_video_width_<?= $id?>" type="text" size="10" style="width: 70px;" value="<?= $val['width']?>" name= "<?= $name?>[WIDTH]" /> x <input id="bx_video_height_<?= $id?>" type="text" size="10" style="width: 70px;" value="<?= $val['height']?>" name= "<?= $name?>[HEIGHT]" /> </td> </tr> <tr class="bx-prop-sub-title"><td colSpan="2"><?= GetMessage('IBLOCK_PROP_VIDEO_PARAMS_TITLE_INFO')?></td></tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_TITLE')?>:</td> <td><input id="bx_video_title_<?= $id?>" type="text" size="30" value="<?= $val['title']?>" name="<?= $name?>[TITLE]" /></td> </tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_DURATION')?>:</td> <td><input id="bx_video_duration_<?= $id?>" type="text" size="30" value="<?= $val['duration']?>" name="<?= $name?>[DURATION]"/></td> </tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_AUTHOR')?>:</td> <td><input id="bx_video_author_<?= $id?>" type="text" size="30" value="<?= $val['author']?>" name="<?= $name?>[AUTHOR]"/></td> </tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_DATE')?>:</td> <td><input id="bx_video_date_<?= $id?>" type="text" size="30" value="<?= $val['date']?>" name="<?= $name?>[DATE]" /></td> </tr> <tr> <td class="bx-pr-title"><?= GetMessage('IBLOCK_PROP_VIDEO_DESC')?>:</td> <td><input id="bx_video_desc_<?= $id?>" type="text" size="30" value="<?= $val['desc']?>" name="<?= $name?>[DESC]"/></td> </tr> </table> <script> function DisplayCont(id1, id2) { var el1 = document.getElementById(id1), el2 = document.getElementById(id2); if (el1 && el2) { el1.style.display = "block"; el2.style.display = "none"; } return false; } function SetVideoPath<?= $id?>(filename, path, site) { var url, srcInput = document.getElementById("bx_video_path_<?= $id?>"); if (typeof filename == 'object') // Using medialibrary { url = filename.src; document.getElementById("bx_video_title_<?= $id?>").value = filename.name || ''; document.getElementById("bx_video_desc_<?= $id?>").value = filename.description || ''; } else // Using file dialog { url = (path == '/' ? '' : path) + '/'+filename; } srcInput.value = url; if(srcInput.onchange) srcInput.onchange(); srcInput.focus(); srcInput.select(); } function ChangeOrLeaveFile<?= $id?>(bChange) { var pDiv = document.getElementById("bx_video_path_div_<?= $id?>"), pDelRow = document.getElementById("bx_video_del_row_<?= $id?>"), pBNewFile = document.getElementById("bx_video_b_new_file_<?= $id?>"), pNewFileRow = document.getElementById("bx_video_new_path_row_<?= $id?>"), _display = jsUtils.IsIE() ? "inline" : "table-row"; if (pBNewFile) pBNewFile.value = bChange ? "Y" : "N"; if (pDelRow) pDelRow.style.display = bChange ? _display : 'none'; if (pNewFileRow) pNewFileRow.style.display = bChange ? _display : 'none'; pDiv.className = bChange ? "bx-path-div bx-path-div-changed" : "bx-path-div"; return false; } </script> </div> <? $s = ob_get_contents(); ob_end_clean(); return $s; } function BaseConvertToDB($value) { $arRes = array("path" => ""); if (!is_array($value)) $value = array(); if ($value["B_NEW_FILE"] != "N") // New video or replacing old { if (strlen($value["CUR_PATH"]) > 0 && $value["DEL_CUR_FILE"] == "Y" && CIBlockPropertyVideo::CheckFileInUploadDir($value["CUR_PATH"])) { // del current file $cur_path_ = $_SERVER["DOCUMENT_ROOT"].Rel2Abs("/", $value["CUR_PATH"]); if(@unlink($cur_path_)) { // Quota if(COption::GetOptionInt("main", "disk_space") > 0) CDiskQuota::updateDiskQuota("file", filesize($cur_path_), "delete"); } } // Get video if (strlen($value["PATH"]) > 0 ) { $arRes["path"] = $value["PATH"]; } else if (isset($value["FILE"]) && strlen($value["FILE"]["tmp_name"]) > 0) { $pathToDir = CIBlockPropertyVideo::GetUploadDirPath(); if (!is_dir($_SERVER["DOCUMENT_ROOT"].$pathToDir)) CFileMan::CreateDir($pathToDir); // 1. Convert name $name = preg_replace("/[^a-zA-Z0-9_:\.]/is", "_", $value["FILE"]["name"]); $baseNamePart = substr($name, 0, strpos($name, '.')); $ext = GetFileExtension($name); if(strlen($ext) > 0 && !in_array($ext, CFileMan::GetScriptFileExt()) && !substr($name, 0, 1) != ".") { $ind = 0; // 2. Check if file already exists while(file_exists($_SERVER["DOCUMENT_ROOT"].Rel2Abs($pathToDir, $name))) $name = $baseNamePart."_(".++$ind.").".$ext; // 3. Rename $pathto = Rel2Abs($pathToDir, $name); if (is_uploaded_file($value["FILE"]["tmp_name"]) && copy($value["FILE"]["tmp_name"], $_SERVER["DOCUMENT_ROOT"].$pathto)) { $arRes["path"] = Rel2Abs("/", $pathto); // Quota if(COption::GetOptionInt("main", "disk_space") > 0) CDiskQuota::updateDiskQuota("file", $value["FILE"]["size"], "add"); } } } } elseif (strlen($value["CUR_PATH"]) > 0) // save curren file { $arRes["path"] = Rel2Abs("/", $value["CUR_PATH"]); } // Width & height $arRes["width"] = intVal($value["WIDTH"]); $arRes["height"] = intVal($value["HEIGHT"]); if ($arRes["width"] < 0) $arRes["width"] = 400; if ($arRes["height"] < 0) $arRes["height"] = 300; // Video info $arRes["title"] = $value["TITLE"]; $arRes["duration"] = $value["DURATION"]; $arRes["author"] = $value["AUTHOR"]; $arRes["date"] = $value["DATE"]; $arRes["desc"] = $value["DESC"]; $strRes = serialize($arRes); if ($arRes["path"] == "" && $arRes["title"] == "" && $arRes["author"] == "") return ""; return $strRes; } function BaseConvertFromDB($val = "") { if (strlen($val) > 0) $val = unserialize($val); return $val ? $val : array(); } function BaseCheckFields($val) { $arErrors = array(); if (!is_array($val)) $val = array(); // Check uploaded file if ($val["B_NEW_FILE"] != "N" && isset($val["FILE"]) && strlen($val["FILE"]["tmp_name"]) > 0) // { $name = $val["FILE"]["name"]; $name = preg_replace("/[^a-zA-Z0-9_:\.]/is", "_", $name); $ext = GetFileExtension($name); if(strlen($ext) == 0 || in_array($ext, CFileMan::GetScriptFileExt()) || substr($name, 0, 1) == ".") $arErrors[] = GetMessage("IBLOCK_PROP_VIDEO_INCORRECT_EXT", array("#EXT#" => strtoupper($ext))); elseif (!is_uploaded_file($val["FILE"]["tmp_name"])) $arErrors[] = GetMessage("IBLOCK_PROP_VIDEO_UPLOAD_ERROR"); elseif($val["FILE"]["error"] == 1 || $val["FILE"]["error"] == 2) $arErrors[] = GetMessage("IBLOCK_PROP_VIDEO_SIZE_ERROR", Array('#FILE_NAME#' => $pathto))."\n"; else { $quota = new CDiskQuota(); if (!$quota->checkDiskQuota(array("FILE_SIZE" => $val["FILE"]["size"]))) $arErrors[] = GetMessage("IBLOCK_PROP_VIDEO_QUOTE_ERROR")."\n"; } } return $arErrors; } function BaseGetAdminListViewHTML($val) { if (!is_array($val) || strlen($val["path"]) == 0) return ''; return "<span style='white-space: nowrap;' title='".$val["path"]."'>".GetMessage("IBLOCK_PROP_VIDEO")." [".htmlspecialcharsex($val["path"])."]</span>"; } function BaseGetPublicHTML($set, $val) { if (strlen($val["path"]) <= 0) return ''; global $APPLICATION; ob_start(); $title = strlen($val['title']) > 0 ? $val['title'] : ""; ?> <div title="<?= addslashes($title)?>"> <?$APPLICATION->IncludeComponent( "bitrix:player", "", array( "PLAYER_TYPE" => "auto", "PATH" => $val["path"], "WIDTH" => $val['width'], "HEIGHT" => $val['height'], "FILE_TITLE" => $val['title'], "FILE_DURATION" => intVal($val['duration']), "FILE_AUTHOR" => $val['author'], "FILE_DATE" => $val['date'], "FILE_DESCRIPTION" => $val['desc'], "SKIN_PATH" => CIBlockPropertyVideo::GetSkinPath(), "SKIN" => $set["SKIN"], "CONTROLBAR" => $set["CONTROLBAR"], "WMODE" => $set["WMODE_FLV"], "WMODE_WMV" => $set["WMODE_WMV"], "SHOW_CONTROLS" => $set["CONTROLBAR"] != 'none' ? "Y" : "N", "CONTROLS_BGCOLOR" => $set["CONTROLS_BGCOLOR"], "CONTROLS_COLOR" => $set["CONTROLS_COLOR"], "CONTROLS_OVER_COLOR" => $set["CONTROLS_OVER_COLOR"], "SCREEN_COLOR" => $set["SCREEN_COLOR"], "AUTOSTART" => $set["AUTOSTART"], "VOLUME" => $set["VOLUME"], "ADDITIONAL_FLASHVARS" => $set["FLASHVARS"], "BUFFER_LENGTH" => $set["BUFFER_LENGTH"], "ADDITIONAL_WMVVARS" => $set["SILVERVARS"], "ALLOW_SWF" => "N", "LOGO_POSITION" => "none" ), false, array('HIDE_ICONS' => 'Y') ); ?> </div> <? $s = ob_get_contents(); ob_end_clean(); return $s; } function BaseOnSearchContent($val) { $str = ""; if (strlen($val['path']) > 0) { if (strlen($val['title']) > 0) $str .= $val['title']." \n"; if (strlen($val['author']) > 0) $str .= $val['author']." \n"; if (strlen($val['desc']) > 0) $str .= $val['desc']." \n"; } return $str; } function CheckFileInUploadDir($path = '') { $pathToDir = CVideoProperty::GetUploadDirPath(); return substr($path, 0, strlen($pathToDir)) == $pathToDir; } function GetUploadDirPath() { return "/upload/video/"; } function GetSkinPath() { return "/bitrix/components/bitrix/player/mediaplayer/skins"; } function GetSkinsEx($path) { $basePath = $_SERVER["DOCUMENT_ROOT"].Rel2Abs("/", $path); $arSkinExt = array('swf', 'zip'); $arPreviewExt = array('png', 'gif', 'jpg', 'jpeg'); $prExtCnt = count($arPreviewExt); $arSkins = Array(); if (!is_dir($basePath)) // Not valid folder return $arSkins; $handle = @opendir($basePath); while(false !== ($f = @readdir($handle))) { if($f == "." || $f == ".." || $f == ".htaccess" || !is_file($basePath.'/'.$f)) continue; $ext = strtolower(GetFileExtension($f)); if (in_array($ext, $arSkinExt)) // We find skin { $name = substr($f, 0, - strlen($ext) - 1); // name of the skin if (strlen($name) <= 0) continue; $Skin = array('filename' => $f); $Skin['name'] = strtoupper(substr($name, 0, 1)).strtolower(substr($name, 1)); // Try to find preview for ($i = 0; $i < $prExtCnt; $i++) { if (file_exists(($basePath.'/'.$name.'.'.$arPreviewExt[$i]))) { $Skin['preview'] = $name.'.'.$arPreviewExt[$i]; break; } } $arSkins[] = $Skin; } } return $arSkins; } } // ### Iblock property ### class CIBlockPropertyVideo extends CVideoProperty { function GetUserTypeDescription() { return array( "PROPERTY_TYPE" => "S", "USER_TYPE" => "video", "DESCRIPTION" => GetMessage("IBLOCK_PROP_VIDEO"), "GetPropertyFieldHtml" => array("CIBlockPropertyVideo", "GetPropertyFieldHtml"), "GetPublicViewHTML" => array("CIBlockPropertyVideo", "GetPublicViewHTML"), "ConvertToDB" => array("CIBlockPropertyVideo", "ConvertToDB"), "ConvertFromDB" => array("CIBlockPropertyVideo", "ConvertFromDB"), "CheckFields" => array("CIBlockPropertyVideo", "CheckFields"), "GetSearchContent" => array("CIBlockPropertyVideo", "GetSearchContent"), "GetSettingsHTML" => array("CIBlockPropertyVideo", "GetSettingsHTML"), "PrepareSettings" => array("CIBlockPropertyVideo", "PrepareSettings"), "GetAdminListViewHTML" => array("CIBlockPropertyVideo", "GetAdminListViewHTML") ); } function GetPropertyFieldHtml($arProperty, $value, $strHTMLControlName) { return CIBlockPropertyVideo::BaseGetEditFormHTML($arProperty["USER_TYPE_SETTINGS"], $value["VALUE"], $strHTMLControlName["VALUE"]); } function GetAdminListViewHTML($arProperty, $value, $strHTMLControlName) { return CIBlockPropertyVideo::BaseGetAdminListViewHTML($value["VALUE"]); } function GetPublicViewHTML($arProperty, $value, $strHTMLControlName) { return CIBlockPropertyVideo::BaseGetPublicHTML($arProperty["USER_TYPE_SETTINGS"], $value["VALUE"]); } function ConvertFromDB($arProperty, $value) { $value['VALUE'] = CIBlockPropertyVideo::BaseConvertFromDB($value['VALUE']); return $value; } function ConvertToDB($arProperty, $value) { return CIBlockPropertyVideo::BaseConvertToDB($value["VALUE"]); } function CheckFields($arProperty, $value) { return CIBlockPropertyVideo::BaseCheckFields($value["VALUE"]); } function PrepareSettings($arProperty) { return CUserTypeVideo::BasePrepareSettings($arProperty, "USER_TYPE_SETTINGS"); } function GetSettingsHTML($arProperty, $strHTMLControlName, $arPropertyFields) { $result = ''; $arPropertyFields = array( "HIDE" => array("FILTRABLE", "ROW_COUNT", "COL_COUNT", "DEFAULT_VALUE"), //will hide the field "SET" => array("FILTRABLE" => "N"), //if set then hidden field will get this value "USER_TYPE_SETTINGS_TITLE" => GetMessage("IBLOCK_PROP_VIDEO_SET_NAME") ); $arProperty["USER_TYPE_SETTINGS"] = CIBlockPropertyVideo::PrepareSettings($arProperty); $val = $arProperty["USER_TYPE_SETTINGS"]; return CIBlockPropertyVideo::BaseGetSettingsHTML($strHTMLControlName["NAME"], $val); } function GetSearchContent($arProperty, $value, $strHTMLControlName) { return CIBlockPropertyVideo::BaseOnSearchContent($value["VALUE"]); } } // ### UserType for main module ### class CUserTypeVideo extends CVideoProperty { function GetUserTypeDescription() { return array( "USER_TYPE_ID" => "video", "CLASS_NAME" => "CUserTypeVideo", "DESCRIPTION" => GetMessage("IBLOCK_PROP_VIDEO"), "BASE_TYPE" => "string" ); } function GetDBColumnType($arUserField) { global $DB; switch(strtolower($DB->type)) { case "mysql": return "text"; case "oracle": return "varchar2(2000 char)"; case "mssql": return "varchar(2000)"; } } function PrepareSettings($arProperty) { return CUserTypeVideo::BasePrepareSettings($arProperty, "SETTINGS"); } function GetSettingsHTML($arUserField = array(), $arHtmlControl, $bVarsFromForm) { if(!is_array($arUserField)) $arUserField = array(); $arUserField["SETTINGS"] = $bVarsFromForm ? $GLOBALS[$arHtmlControl["NAME"]] : CUserTypeVideo::PrepareSettings($arUserField); return CUserTypeVideo::BaseGetSettingsHTML($arHtmlControl["NAME"], $arUserField["SETTINGS"]); } function GetEditFormHTML($arUserField, $arHtmlControl) { $val = CUserTypeVideo::BaseConvertFromDB(htmlspecialcharsback($arHtmlControl["VALUE"])); // Unserialize array return CUserTypeVideo::BaseGetEditFormHTML($arUserField["SETTINGS"], $val, $arHtmlControl["NAME"]); } function OnBeforeSave($arUserField, $value) { return CUserTypeVideo::BaseConvertToDB($value); } function GetAdminListViewHTML($arUserField, $arHtmlControl) { $val = CUserTypeVideo::BaseConvertFromDB(htmlspecialcharsback($arHtmlControl["VALUE"])); // Unserialize array return CUserTypeVideo::BaseGetAdminListViewHTML($val); } function CheckFields($arUserField, $value) { return CUserTypeVideo::BaseCheckFields($value); } function OnSearchIndex($arUserField) { return CIBlockPropertyVideo::BaseOnSearchContent($arUserField["VALUE"]); } function GetPublicViewHTML($arUserField, $arHtmlControl) { $val = CUserTypeVideo::BaseConvertFromDB(htmlspecialcharsback($arHtmlControl["VALUE"])); // Unserialize array return CUserTypeVideo::BaseGetPublicHTML($arUserField["SETTINGS"], $val); } } ?>