This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin border($place, $color, $width) { | |
@if $place == 'all' { | |
border: $width solid $color; | |
} @else { | |
border-#{$place}: $width solid $color; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace app\controllers; | |
use app\models\Result; | |
use app\models\Signup; | |
use Yii; | |
use yii\web\Controller; | |
use app\models\Login; | |
use app\models\User; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace app\models; | |
use yii\helpers\ArrayHelper; | |
use mongosoft\file\UploadBehavior; | |
use yii\helpers\Url; | |
class Result extends \yii\db\ActiveRecord | |
{ | |
public $q1, $q2, $q3, $q4, $q5, $q6, $q7, $q8, $q9, $q10; | |
public $qq1, $qq2, $qq3, $qq4, $qq5, $qq6, $qq7, $qq8, $qq9, $qq10, $qq11, $qq12, $qq13, $qq14, $qq15; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* @var $this yii\web\View */ | |
use yii\helpers\Html; | |
use app\assets\AppAsset; | |
use yii\bootstrap\ActiveForm; | |
$this->title = 'Тест «Организаторские способности лидера»'; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace app\controllers; | |
use app\models\Result; | |
use app\models\Signup; | |
use Yii; | |
use DateTime; | |
use yii\web\Controller; | |
use app\models\Login; |