This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# Это скрипт для проверки работоспособности базы данных MySQL. | |
# Версия: 1. | |
# Далее идут настройки, которые вам необходимо указать. | |
######################################################################### | |
# Сервер. В большинстве случаев сервер именно localhost, если ваш хостинг-провайдер не указывает другое. | |
$host='localhost'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO `geoip` (`city`) VALUES | |
('Абакан'), | |
('Абдулино'), | |
('Азов'), | |
('Аксай'), | |
('Алапаевск'), | |
('Алдан'), | |
('Александров'), | |
('Александровск'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header('Content-Type: text/plain; charset=utf-8'); | |
class CntSoapContentCriteria | |
{ | |
public $limit = 5; | |
public $offset = 0; | |
public $typeId = 3; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '/locale/ru/Press.twig' %} | |
{% block Post %} | |
<h2 class="press__title"> | |
</h2> | |
<span class="press__subtitle">12.09.2014</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="teams__promo-banner single_team"> | |
<div class="promo__banner-text"> | |
<p> | |
Поделитесь фотографией команды «Аякс» в социальной сети | |
и получите возможность выиграть мяч с логотипом Manchester United и Аэрофлота. | |
</p> | |
</div> | |
<a href="#" class="promo__banner-more">ПРАВИЛА АКЦИИ</a> | |
<div class="promo__banner-btn get_registration"> | |
<span>поделиться</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace fifa\app\controllers\site; | |
use fifa\app\controllers\ControllerInterface; | |
use fifa\app\controllers\GenericController; | |
use fifa\lib\Config; | |
use fifa\lib\TwigHelper; | |
use fifa\model\content\Cheerleader; | |
use fifa\model\content\CheerleaderFactory; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: Aleksey Kolyadin | |
* Date: 02.10.2014 | |
* Time: 16:18 | |
*/ | |
set_time_limit(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ php vw-request.php | |
<pre>SoapClient Object | |
( | |
[_soap_version] => 1 | |
[sdl] => Resource id #4 | |
[__soap_fault] => SoapFault Object | |
( | |
[message:protected] => Unknown protocol. Only http and https are allowed. | |
[string:Exception:private] => | |
[code:protected] => 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '/locale/ru/teams/team/TeamGeneric.twig' %} | |
{% block Title %} | |
<h2 class="team-name">Духовная скрепа (россия)</h2> | |
<span class="team-from">Международный институт экономики и права (Владивосток)</span> | |
{% endblock %} | |
{% block TeamPhoto %} | |
<img class="team-picture" src="/assets_m/img/mobile/tmp/_2.jpg" alt="" /> | |
{% endblock %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( '.header__subscribe' ).click(function(){ | |
if (!$(this).hasClass('authorized')){ | |
$( '.popup__auth' ).show(); | |
$( '.popups__wrapper' ).show(); | |
$('.btn_reg').click(function(){ | |
$( '.popup__auth' ).hide(); | |
$( '.popup__registration' ).show(); | |
}) |