Архив

Архив Июнь 2020
echo "<ul>";
for($i=0;$i<=count($arResult)-1;$i++){
	$arItemActive=($arResult[$i]['SELECTED'])?' class="active"':'';
	echo "<li".$arItemActive.">";
		echo '<a href="'.$arResult[$i]['LINK'].'">'.$arResult[$i]['TEXT'].'</a>';
		if($arResult[$i]['DEPTH_LEVEL']<$arResult[$i+1]['DEPTH_LEVEL']){
			echo "<ul>\r\n";
		}
		elseif($arResult[$i]['DEPTH_LEVEL']==$arResult[$i+1]['DEPTH_LEVEL']){
			echo "</li>\r\n";
		}
		if($arResult[$i]['DEPTH_LEVEL']>$arResult[$i+1]['DEPTH_LEVEL']){
			echo "</ul>\r\n";
		}
}
echo "</ul>";
Categories: PHP Tags:
define('HTTP_USER','user');
define('HTTP_PASS','pass');
if(isset($_SERVER['PHP_AUTH_USER'])&&($_SERVER['PHP_AUTH_PW']==HTTP_PASS)&&(strtolower($_SERVER['PHP_AUTH_USER'])==HTTP_USER)){
	//success
}
else{
	header('WWW-Authenticate: Basic realm="Authorization required"');
	header('HTTP/1.0 401 Unauthorized');
	echo 'Authenticate required!';
	exit();
}
Categories: PHP Tags:

при клике внутри label по блоку .finded отменить стандартное действие и отправить форму

$('.filters_inline label').on('click',function(event){
	if($(event.target).closest(".finded").length){
		event.preventDefault();
		$(this).closest('form').submit();
	}
});
Categories: Javascript Tags:
@import (css) url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
Categories: CSS Tags:
$date_from=strtotime(date('Y-m-d').' 00:00:00');
Categories: PHP Tags:

Закомментировать данный код в chosen.jquery.js

    AbstractChosen.browser_is_supported = function() {
      /*
	  if ("Microsoft Internet Explorer" === window.navigator.appName) {
        return document.documentMode >= 8;
      }
      if (/iP(od|hone)/i.test(window.navigator.userAgent) || /IEMobile/i.test(window.navigator.userAgent) || /Windows Phone/i.test(window.navigator.userAgent) || /BlackBerry/i.test(window.navigator.userAgent) || /BB10/i.test(window.navigator.userAgent) || /Android.*Mobile/i.test(window.navigator.userAgent)) {
        return false;
      }
	  */
      return true;
    };
Categories: Javascript Tags:

Для нормальной работы ui на мобильных устройствах подключить https://github.com/furf/jquery-ui-touch-punch

Categories: Javascript Tags: