Initial import

This commit is contained in:
Admin Nasledstvo
2026-05-01 20:52:04 +03:00
commit ac168868ee
10028 changed files with 2337954 additions and 0 deletions
@@ -0,0 +1,27 @@
<?php
namespace app\controllers;
use app\services\Auth;
use yii\web\Controller;
class MediaController extends BaseController
{
public function beforeAction($action)
{
return parent::beforeAction($action);
}
public function actionPlay($id)
{
return $this->renderPartial('play', ['id' => $id]);
}
public function actionPlayMobile($id)
{
return $this->renderPartial('play_mobile', ['id' => $id]);
}
}