GIF94;
| Path : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/columns/ |
| Current File : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/columns/element.php |
<?php
namespace EssentialElements;
use function Breakdance\Elements\c;
use function Breakdance\Elements\PresetSections\getPresetSection;
\Breakdance\ElementStudio\registerElementForEditing(
"EssentialElements\\Columns",
\Breakdance\Util\getdirectoryPathRelativeToPluginFolder(__DIR__)
);
class Columns extends \Breakdance\Elements\Element
{
static function uiIcon()
{
return 'Columns3Icon';
}
static function tag()
{
return 'div';
}
static function tagOptions()
{
return [];
}
static function tagControlPath()
{
return false;
}
static function name()
{
return 'Columns';
}
static function className()
{
return 'bde-columns';
}
static function badge()
{
return false;
}
static function slug()
{
return __CLASS__;
}
static function template()
{
return file_get_contents(__DIR__ . '/html.twig');
}
static function defaultCss()
{
return file_get_contents(__DIR__ . '/default.css');
}
static function defaultProperties()
{
return false;
}
static function defaultChildren()
{
return false;
}
static function cssTemplate()
{
$template = file_get_contents(__DIR__ . '/css.twig');
return $template;
}
static function designControls()
{
return [c(
"layout",
"Layout",
[c(
"add_column",
"Add Column",
[],
['type' => 'add_registered_children', 'layout' => 'vertical'],
false,
false,
[],
), c(
"stack_vertically",
"Stack Vertically",
[],
['type' => 'breakpoint_dropdown', 'breakpointOptions' => ['enableNever' => true, 'multiple' => false]],
false,
false,
[],
), c(
"slug_cant_start_with_number_50_width",
"50% Width",
[],
['type' => 'breakpoint_dropdown'],
false,
false,
[],
), c(
"reverse_order",
"Reverse Order",
[],
['type' => 'breakpoint_dropdown'],
false,
false,
[],
)],
['type' => 'section', 'sectionOptions' => ['type' => 'accordion']],
false,
false,
[],
), c(
"size",
"Size",
[c(
"width",
"Width",
[],
['type' => 'unit'],
true,
false,
[],
), c(
"height",
"Height",
[],
['type' => 'dropdown', 'items' => ['0' => ['text' => 'Fit To Content', 'value' => 'fit'], '1' => ['text' => 'Expand To Fill', 'value' => 'full'], '2' => ['text' => 'Custom', 'value' => 'custom']]],
true,
false,
[],
), c(
"min_height",
"Min Height",
[],
['type' => 'unit', 'layout' => 'inline', 'condition' => ['path' => 'design.size.height', 'operand' => 'equals', 'value' => 'custom']],
false,
false,
[],
)],
['type' => 'section', 'sectionOptions' => ['type' => 'accordion']],
false,
false,
[],
), c(
"spacing",
"Spacing",
[c(
"column_gap",
"Column Gap",
[],
['type' => 'unit', 'layout' => 'inline'],
true,
false,
[],
), c(
"column_padding",
"Column Padding",
[],
['type' => 'unit', 'layout' => 'inline'],
true,
false,
[],
), getPresetSection(
"EssentialElements\\spacing_margin_y",
"Container",
"container",
['type' => 'popout']
)],
['type' => 'section'],
false,
false,
[],
)];
}
static function contentControls()
{
return [];
}
static function settingsControls()
{
return [];
}
static function dependencies()
{
return false;
}
static function settings()
{
return false;
}
static function addPanelRules()
{
return false;
}
static public function actions()
{
return false;
}
static function nestingRule()
{
return ["type" => "container-restricted", ];
}
static function spacingBars()
{
return ['0' => ['location' => 'outside-top', 'cssProperty' => 'margin-top', 'affectedPropertyPath' => 'design.spacing.container.margin_top.%%BREAKPOINT%%'], '1' => ['location' => 'outside-bottom', 'cssProperty' => 'margin-bottom', 'affectedPropertyPath' => 'design.spacing.container.margin_bottom.%%BREAKPOINT%%']];
}
static function attributes()
{
return false;
}
static function experimental()
{
return false;
}
static function order()
{
return 10;
}
static function dynamicPropertyPaths()
{
return false;
}
static function additionalClasses()
{
return false;
}
static function projectManagement()
{
return false;
}
static function propertyPathsToWhitelistInFlatProps()
{
return ['design.layout.reverse_order', 'design.layout.stack_vertically', 'design.layout.slug_cant_start_with_number_50_width'];
}
static function propertyPathsToSsrElementWhenValueChanges()
{
return false;
}
static function availableIn()
{
return ['oxygen'];
}
static function category()
{
return 'breakdance-elements-for-oxygen';
}
}