news
This commit is contained in:
@ -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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user