sshfs user@fs.remote.host.com:/mnt/disk1 -p 2222 local_folder_name -o nonempty -o allow_other -o uid=1002
$activeDataProvider = new ActiveDataProvider([
'query' => Post::find(),
// 'scenario' => Post::SCENARIO_INDEX, // Это так не работает :(
]);
foreach($activeDataProvider->getModels() as $model) {
$model->scenario = Post::SCENARIO_GUEST;
}
class User {
public static findById($id) {
// Ищем в базе, и возвращаем как созданный объект:
if ($dataFromDB) {
return new self($dataFromDB);
// Или что-то вроде того:
$user = new self();
$user->load($dataFromDB);
return $user;
}
// Если не находим, то
return null;
}
}
if (ob_get_length()) ob_end_clean();
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . basename($file->display_name) . '"');
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file->path));
if ($fd = fopen($file->path, 'rb')) {
while (!feof($fd)) {
print fread($fd, 1024);
}
fclose($fd);
}
exit;