GIF94;
| Path : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/Badge/ |
| Current File : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/Badge/element.php |
<?php
namespace EssentialElements;
use function Breakdance\Elements\c;
use function Breakdance\Elements\PresetSections\getPresetSection;
\Breakdance\ElementStudio\registerElementForEditing(
"EssentialElements\\Badge",
\Breakdance\Util\getdirectoryPathRelativeToPluginFolder(__DIR__)
);
class Badge extends \Breakdance\Elements\Element
{
static function uiIcon()
{
return 'SquareAltIcon';
}
static function tag()
{
return 'div';
}
static function tagOptions()
{
return ['span', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
}
static function tagControlPath()
{
return false;
}
static function name()
{
return 'Badge';
}
static function className()
{
return 'bde-badge';
}
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 ['content' => ['content' => ['text' => 'My Badge']]];
}
static function defaultChildren()
{
return false;
}
static function cssTemplate()
{
$template = file_get_contents(__DIR__ . '/css.twig');
return $template;
}
static function designControls()
{
return [c(
"badge",
"Badge",
[c(
"background",
"Background",
[],
['type' => 'color', 'layout' => 'inline', 'colorOptions' => ['type' => 'solidAndGradient']],
false,
false,
[],
), getPresetSection(
"EssentialElements\\spacing_padding_all",
"Padding",
"padding",
['type' => 'popout']
), c(
"border",
"Border",
[],
['type' => 'color', 'layout' => 'inline'],
false,
false,
[],
), c(
"radius",
"Radius",
[],
['type' => 'unit', 'layout' => 'inline'],
false,
false,
[],
)],
['type' => 'section'],
false,
false,
[],
), getPresetSection(
"EssentialElements\\typography",
"Typography",
"typography",
['type' => 'popout']
), getPresetSection(
"EssentialElements\\spacing_margin_y",
"Spacing",
"spacing",
['type' => 'popout']
)];
}
static function contentControls()
{
return [c(
"content",
"Content",
[c(
"text",
"Text",
[],
['type' => 'text', 'layout' => 'vertical'],
false,
false,
[],
)],
['type' => 'section', 'layout' => 'vertical'],
false,
false,
[],
)];
}
static function settingsControls()
{
return [];
}
static function dependencies()
{
return false;
}
static function settings()
{
return ['proOnly' => true];
}
static function addPanelRules()
{
return false;
}
static public function actions()
{
return false;
}
static function nestingRule()
{
return ["type" => "final", ];
}
static function spacingBars()
{
return ['0' => ['affectedPropertyPath' => 'design.spacing.margin_top.%%BREAKPOINT%%', 'cssProperty' => 'margin-top', 'location' => 'outside-top'], '1' => ['affectedPropertyPath' => 'design.spacing.margin_bottom.%%BREAKPOINT%%', 'cssProperty' => 'margin-bottom', 'location' => 'outside-bottom']];
}
static function attributes()
{
return false;
}
static function experimental()
{
return false;
}
static function order()
{
return 575;
}
static function dynamicPropertyPaths()
{
return false;
}
static function additionalClasses()
{
return false;
}
static function projectManagement()
{
return false;
}
static function propertyPathsToWhitelistInFlatProps()
{
return false;
}
static function propertyPathsToSsrElementWhenValueChanges()
{
return false;
}
static function availableIn()
{
return ['oxygen'];
}
static function category()
{
return 'breakdance-elements-for-oxygen';
}
}