# depicter/trunk/app/src/Document/Models/Common/Styles/Base.php

Depicter — Popup &amp; Slider Builder, version trunk. 34 lines.

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Document/Models/Common/Styles/Base.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/app/src/Document/Models/Common/Styles/Base.php
- Modified: 2023-12-07T09:04:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Document/Models/Common/Styles/Base.php#L10-L20`.

```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;
	}
}

```
