This commit is contained in:
2025-01-19 19:21:15 +03:00
parent 6b61b51d53
commit d9178c17f7
2 changed files with 23 additions and 2 deletions

View File

@ -2,8 +2,10 @@
namespace app\modules\tgbot\controllers;
use Cassandra\Decimal;
use kernel\app_modules\tag\service\TagService;
use kernel\Controller;
use kernel\helpers\Debug;
use kernel\modules\post\models\Post;
class TgMainController extends Controller
@ -25,14 +27,14 @@ class TgMainController extends Controller
public function actionNews(): void
{
$news = TagService::getEntityByTagId(2, Post::class);
$news = TagService::getEntityByTagSlug("novosti", Post::class);
$this->cgView->render("news.php", ['news' => $news]);
}
public function actionPromo(): void
{
$news = TagService::getEntityByTagId(1, Post::class);
$news = TagService::getEntityByTagSlug("akcii", Post::class);
$this->cgView->render("news.php", ['news' => $news]);
}