Skip to content

Instantly share code, notes, and snippets.

View voskobovich's full-sized avatar

Vitalii Voskobovich voskobovich

View GitHub Profile
@voskobovich
voskobovich / nginx.conf
Last active February 14, 2016 15:45 — forked from Stanback/nginx.conf
Example Nginx configuration for adding cross-origin resource sharing (CORS) support to reverse proxied APIs
#
# CORS header support
#
# One way to use this is by placing it into a file called "cors_support"
# under your Nginx configuration directory and placing the following
# statement inside your location block(s):
#
# include cors_support;
#
# A limitation to this method is that Nginx doesn't currently send headers
@voskobovich
voskobovich / cors-nginx.conf
Created February 15, 2016 07:22 — forked from michiel/cors-nginx.conf
Wide-open CORS config for nginx
#
# Wide-open CORS config for nginx
#
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
#
# Layout Pjax Begin
--------vew begin----------
# View Pjax Begin
# Menu
# View Pjax End
# View Pjax Begin
# GridView
# View Pjax End
/**
* Class Controller
* @package backend\extensions
*/
class Controller extends \voskobovich\crud\controllers\Controller
{
/**
* @return array
*/
public function actions()
<?php
namespace dashboard\controllers;
use dashboard\extensions\Controller;
use dashboard\forms\CompanyDeliveryMethodsSearchForm;
use dashboard\forms\CompanyOrderStatusesSearchForm;
use dashboard\forms\CompanyPaymentMethodsSearchForm;
use dashboard\forms\CompanyPhotoDeleteForm;
use dashboard\forms\CompanyPhotoForm;
@voskobovich
voskobovich / gist:7df1c603d9a0dacfc22930157157f6a2
Last active January 24, 2017 12:01
Yii2 Multilang Toolkit
class UrlManager extends \yii\web\UrlManager
{
/**
* @inheritdoc
*/
public function createUrl($params)
{
//Получаем сформированный URL(без префикса идентификатора языка)
$url = parent::createUrl($params);
/**
* Class BaseEnum.
*/
abstract class BaseEnum
{
/**
* Get All Labels
* @return array
*/
public static function getLabels(): array
class User extends ActiveRecord
{
/**
* @var StatusEnum
*/
private $_statusEnum;
/**
* BaseUser constructor.
* @param StatusEnum $statusEnum
<?php
/**
* To run the code, use the following link:
* @link http://sandbox.onlinephpfunctions.com/code/c0c3b9e0f3df2aa3f1251594dc09282e5aabf5fc
*
* Please do not use this in PRODUCTION systems!
*/
/**
{"ignition":{"config":{},"timeouts":{},"version":"2.1.0"},"networkd":{},"passwd":{"users":[{"name":"core","sshAuthorizedKeys":["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDF/SQhH7qOjqeF+OuS2iGEsBnpFjkc+031vdM6UU4lUwYXkLr0tUqmB3LcPiAax55e56ELuJO1wlAI7SMvZZ+dfGoCDv/z4GMN4pscxWd1FmzJBNBsKSGJKc/qswMbunwBC8H9dPa3YrVZXO00D9fcatA9VuyImiRai6Q87sGuKBPo4dNfMZfTZjUfglzydyJm8valewdd6gWwif2uX+N3SM0bLeuUncpF00PdBMWPljrJDBUVjYOudt8R9sXflldxcB+ggs3YlKVc+28+stFDwpT67AOOypSOcz/VMSpIciJXEGIn4ziAHiwA8rCNg+0IjF4OUEWdqqfG3DRWc1LR vitaly@MacBook-Pro-Vitaly.local"]}]},"storage":{"files":[{"filesystem":"root","group":{},"path":"/etc/coreos/update.conf","user":{},"contents":{"source":"data:,GROUP%3Dstable%0ASERVER%3Dhttps%3A%2F%2Fpublic.update.core-os.net%2Fv1%2Fupdate%2F","verification":{}},"mode":420}]},"systemd":{"units":[{"dropins":[{"contents":"[Service]\nEnvironment=\"ETCD_IMAGE_TAG=v3.2.18\"\nExecStart=\nExecStart=/usr/lib/coreos/etcd-wrapper $ETCD_OPTS \\\n --discovery=\"https://discovery.etcd.io/2d3d6e80944b0e219036dd8b34aef889\"