module shop
This commit is contained in:
parent
0a76920800
commit
0671346ce8
@ -11,6 +11,12 @@ class Html
|
|||||||
return "<img src='$src' $paramsStr>";
|
return "<img src='$src' $paramsStr>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function h(string|int $type = 1, string $title = '', array $params = [])
|
||||||
|
{
|
||||||
|
$paramsStr = self::createParams($params);
|
||||||
|
return "<h$type $paramsStr>$title</h$type>";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @return string
|
* @return string
|
||||||
|
@ -34,11 +34,16 @@ class ModuleShopClientController extends AdminController
|
|||||||
*/
|
*/
|
||||||
public function actionIndex(int $page_number = 1): void
|
public function actionIndex(int $page_number = 1): void
|
||||||
{
|
{
|
||||||
|
|
||||||
|
if ($this->moduleService->issetModuleShopToken()) {
|
||||||
|
if ($this->moduleService->isServerAvailable()) {
|
||||||
|
|
||||||
$per_page = 8;
|
$per_page = 8;
|
||||||
$modules_info = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
$modules_info = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
||||||
$modules_info = json_decode($modules_info->getBody()->getContents(), true);
|
$modules_info = json_decode($modules_info->getBody()->getContents(), true);
|
||||||
$module_count = count($modules_info);
|
$module_count = count($modules_info);
|
||||||
$modules_info = array_slice($modules_info, $per_page * ($page_number - 1), $per_page);
|
$modules_info = array_slice($modules_info, $per_page * ($page_number - 1), $per_page);
|
||||||
|
|
||||||
$this->cgView->render("index.php", [
|
$this->cgView->render("index.php", [
|
||||||
'modules_info' => $modules_info,
|
'modules_info' => $modules_info,
|
||||||
'moduleService' => $this->moduleService,
|
'moduleService' => $this->moduleService,
|
||||||
@ -46,6 +51,13 @@ class ModuleShopClientController extends AdminController
|
|||||||
'module_count' => $module_count,
|
'module_count' => $module_count,
|
||||||
'per_page' => $per_page,
|
'per_page' => $per_page,
|
||||||
]);
|
]);
|
||||||
|
} else {
|
||||||
|
$this->cgView->render("module_shop_error_connection.php");
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
$this->cgView->render("login_at_module_shop.php");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function actionView(int $id): void
|
public function actionView(int $id): void
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use itguild\forms\ActiveForm;
|
||||||
|
|
||||||
|
\kernel\widgets\ModuleTabsWidget::create()->run();
|
||||||
|
|
||||||
|
echo \kernel\helpers\Html::h(2, "Форма авторизации");
|
||||||
|
|
||||||
|
$form = new ActiveForm();
|
||||||
|
$form->beginForm("/admin/module_shop_client/auth/");
|
||||||
|
|
||||||
|
$form->field(\itguild\forms\inputs\TextInput::class, 'key', [
|
||||||
|
'class' => "form-control",
|
||||||
|
'placeholder' => 'Email',
|
||||||
|
])
|
||||||
|
->setLabel("Email")
|
||||||
|
->render();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-2">
|
||||||
|
<?php
|
||||||
|
$form->field(\itguild\forms\inputs\Button::class, name: "btn-submit", params: [
|
||||||
|
'class' => "btn btn-primary ",
|
||||||
|
'value' => 'Отправить',
|
||||||
|
'typeInput' => 'submit'
|
||||||
|
])
|
||||||
|
->render();
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
$form->endForm();
|
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
\kernel\widgets\ModuleTabsWidget::create()->run();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1>Ошибка подключения к сервису</h1>
|
||||||
|
|
@ -476,6 +476,10 @@ class ModuleService
|
|||||||
if ($this->isServerAvailable()){
|
if ($this->isServerAvailable()){
|
||||||
$modules_info = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
$modules_info = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
||||||
|
|
||||||
|
if (!$this->issetModuleShopToken()){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$modules_info = json_decode($modules_info->getBody()->getContents(), true);
|
$modules_info = json_decode($modules_info->getBody()->getContents(), true);
|
||||||
$mod_info = $this->getModuleInfoBySlug($slug);
|
$mod_info = $this->getModuleInfoBySlug($slug);
|
||||||
foreach ($modules_info as $mod) {
|
foreach ($modules_info as $mod) {
|
||||||
@ -516,4 +520,13 @@ class ModuleService
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function issetModuleShopToken(): bool
|
||||||
|
{
|
||||||
|
if (!empty($_ENV['MODULE_SHOP_TOKEN'])){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -75,9 +75,11 @@ $table->addAction(function ($row) use ($moduleService){
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($moduleService->isActive('module_shop_client') && $moduleService->isServerAvailable()) {
|
if ($moduleService->isActive('module_shop_client')) {
|
||||||
ModuleTabsWidget::create()->run();
|
ModuleTabsWidget::create()->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$table->create();
|
$table->create();
|
||||||
$table->render();
|
$table->render();
|
||||||
|
Loading…
Reference in New Issue
Block a user