1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-03-09 15:39:59 +00:00

add files to project

This commit is contained in:
janickiy 2020-02-05 06:34:26 +03:00
commit 5cac498444
3729 changed files with 836998 additions and 0 deletions

40
views/google/index.php Normal file
View file

@ -0,0 +1,40 @@
<?php
/* @var $searchRequest \app\models\SearchRequest */
use yii\helpers\Html;
use yii\helpers\Url;
?>
<div class="breadcrumbs">
<ul class="breadcrumb">
<?php if(\Yii::$app->devicedetect->isMobile() || \Yii::$app->devicedetect->isTablet()): ?>
<li><?= Html::a('Главная', Url::home()) ?></li>
<li>Поиск данных в Google</li>
<?php else: ?>
<li><?= Html::a('Главная', Url::home()) ?></li>
<li>Поиск данных в Google</li>
<?php endif; ?>
</ul>
</div>
<div class="page-content">
<div class="cont clfix">
<h1>Поиск данных в Google</h1>
<br />
<div class="result resultNo" id="google">
<div class="resultInner">
<div class="parcent">0%</div>
<div class="resultTitle ic7">Google<span class="sTime"></span></div>
<div class="resultCont">
Идет поиск
</div>
</div>
</div>
</div>
</div>
<?php
if ($searchRequest->id) {
$this->registerJs("NomerIoApp.socket().emit('searchgoogle', { id: " . $searchRequest->id . "})", \yii\web\View::POS_READY, "search");
}
?>