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
<?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
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 | |
# Это скрипт для проверки работоспособности базы данных 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
SELECT COUNT(distinct id) FROM `flx__games` where uid!=0 and created between '2014-01-15' and '2014-10-26 23:59:59' |
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
SELECT | |
IF(user.sex='m','Mr','Mrs') AS 'Title', | |
user.username AS 'First Name', | |
user.lastname AS 'Surname', | |
'' AS 'AddressLine1', | |
'' AS 'AddressLine2', | |
'' AS 'AddressLine3', | |
'' AS 'AddressLine4', | |
'' AS 'AddressLine5', | |
'' AS 'Town', |
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
User-agent: * | |
Disallow: / |
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
CRM_Query_DigestUnsubscribe Object | |
( | |
[url:protected] => https://felix-services.directcrm.ru/v2/customers/current/ticket | |
[method:protected] => POST | |
[config:CRM_Query2:private] => Config_Group Object | |
( | |
[_parent_instance:protected] => Config Object | |
( | |
[_sources:protected] => Array | |
( |
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
CRM_Query_DigestUnsubscribe Object | |
( | |
[url:protected] => https://felix-services.directcrm.ru/v2/customers/current/ticket | |
[method:protected] => POST | |
[config:CRM_Query2:private] => Config_Group Object | |
( | |
[_parent_instance:protected] => Config Object | |
( | |
[_sources:protected] => Array | |
( |
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
$user = (new User()) | |
->setId($table['id']) | |
->setEnabled(true) | |
->setEmail($table['email']) | |
->setPlainPassword($table['pass']) | |
->addGroup($em->getRepository('UserBundle:Group')->findOneBy(['name' => 'user'])) | |
->setNick($table['nick']) | |
->setUsername($table['nick']) | |
->setAvatar(null) | |
->setRating((int)$table['rating']) |