GIF94;
| Path : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/Button/ |
| Current File : /var/www/wordpress/wp-content/plugins/breakdance-elements-for-oxygen/elements/Button/element.php |
<?php
namespace EssentialElements;
use function Breakdance\Elements\c;
use function Breakdance\Elements\PresetSections\getPresetSection;
\Breakdance\ElementStudio\registerElementForEditing(
"EssentialElements\\Button",
\Breakdance\Util\getdirectoryPathRelativeToPluginFolder(__DIR__)
);
class Button extends \Breakdance\Elements\Element
{
static function uiIcon()
{
return 'HoverIcon';
}
static function tag()
{
return 'div';
}
static function tagOptions()
{
return [];
}
static function tagControlPath()
{
return false;
}
static function name()
{
return 'Button';
}
static function className()
{
return 'bde-button';
}
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 [getPresetSection(
"EssentialElements\\AtomV1ButtonDesign",
"Button",
"button",
['type' => 'popout']
), getPresetSection(
"EssentialElements\\lightbox_single_design",
"Lightbox",
"lightbox",
['type' => 'popout']
), getPresetSection(
"EssentialElements\\spacing_margin_y",
"Spacing",
"spacing",
['type' => 'popout']
)];
}
static function contentControls()
{
return [getPresetSection(
"EssentialElements\\AtomV1ButtonContent",
"Content",
"content",
['type' => 'popout']
)];
}
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" => "final", ];
}
static function spacingBars()
{
return ['0' => ['location' => 'outside-top', 'cssProperty' => 'margin-top', 'affectedPropertyPath' => 'design.spacing.margin_top.%%BREAKPOINT%%'], '1' => ['location' => 'outside-bottom', 'cssProperty' => 'margin-bottom', 'affectedPropertyPath' => 'design.spacing.margin_bottom.%%BREAKPOINT%%']];
}
static function attributes()
{
return false;
}
static function experimental()
{
return false;
}
static function order()
{
return 80;
}
static function dynamicPropertyPaths()
{
return ['0' => ['accepts' => 'string', 'path' => 'content.content.text'], '1' => ['accepts' => 'url', 'path' => 'content.content.link.url']];
}
static function additionalClasses()
{
return false;
}
static function projectManagement()
{
return ['looksGood' => 'yes', 'optionsGood' => 'sort of', 'optionsWork' => 'sort of'];
}
static function propertyPathsToWhitelistInFlatProps()
{
return ['design.button.custom.size.full_width_at', 'design.button.style'];
}
static function propertyPathsToSsrElementWhenValueChanges()
{
return false;
}
static function availableIn()
{
return ['oxygen'];
}
static function category()
{
return 'breakdance-elements-for-oxygen';
}
}