Viewing File: /home/maglabs/valvtec1/wp-content/plugins/depicter/app/src/Document/Models/Common/Styles/Base.php

<?php
namespace Depicter\Document\Models\Common\Styles;

use Depicter\Document\CSS\Breakpoints;
use Depicter\Document\Models\Traits\CSSPropertiesTrait;

class Base
{

	use CSSPropertiesTrait;
	
	/**
	 * @var array
	 */
	public $variations = [];

	public $enable;

	/**
	 * @var array
	 */
	protected $breakpoint_dictionary = [];

	public function __construct()
	{
		$this->breakpoint_dictionary = Breakpoints::all();
	}

	public function set( $name, $value )
	{
		return $this->variations[ $name ] = $value;
	}
}
Back to Directory File Manager