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\components\behaviors; | |
use yii; | |
use yii\behaviors\AttributeBehavior; | |
use yii\db\BaseActiveRecord; | |
use yii\validators\UniqueValidator; | |
/** |
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 | |
/** | |
* Вывод различных данных по шаблону | |
* | |
* require_once('path_to_file/RenderHelper.php'); | |
* RenderHelper::renderFile($filename, $params); | |
* RenderHelper::renderTemplate($template, $params); | |
* | |
* @author sergKs |
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
#!/bin/bash | |
# | |
# Скриншотер с загрузкой на сервер | |
# @author sergKs | |
# | |
caption="Снимок экрана от `date +%F` `date +%H:%M:%S`" | |
tmpDir='/tmp' | |
tmpFile="screenshot.png" | |
uploadUrl='' |