PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
ablocks / includes / blocks / academy-course-media / attributes.php

attributes.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.14.0, at includes/blocks/academy-course-media/attributes.php

60 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 use ABlocks\Controls\Typography;
8 use ABlocks\Controls\Background;
9 use ABlocks\Controls\Border;
10 use ABlocks\Controls\Dimensions;
11 use ABlocks\Controls\Range;
12 use ABlocks\Controls\Alignment;
13 use ABlocks\Controls\BoxShadow;
14
15
16 $attributes = [
17 'block_id' => array(
18 'type' => 'string',
19 'default' => '',
20 ),
21 'blockVersion' => array(
22 'type' => 'number',
23 'default' => 2,
24 ),
25 'imageOpacityH' => array(
26 'type' => 'number',
27 'default' => 1,
28 ),
29 'imageOpacity' => array(
30 'type' => 'number',
31 'default' => 1,
32 ),
33 ];
34
35 $attributes = array_merge(
36 $attributes,
37 Range::get_attribute([
38 'attributeName' => 'imageWidth',
39 'attributeObjectKey' => 'value',
40 'isResponsive' => true,
41 'defaultValue' => 100,
42 'hasUnit' => true,
43 'unitDefaultValue' => '%',
44 ]),
45 Range::get_attribute([
46 'attributeName' => 'imageHeight',
47 'attributeObjectKey' => 'value',
48 'isResponsive' => true,
49 'defaultValue' => 100,
50 'hasUnit' => true,
51 'unitDefaultValue' => '%',
52 ]),
53 Alignment::get_attribute( 'alignment', true, [ 'value' => 'left' ] ),
54 BoxShadow::get_attribute( 'boxShadow' ),
55 Border::get_attribute( 'border', true ),
56 );
57
58 return array_merge( $attributes, \ABlocks\Classes\BlockGlobal::get_attributes() );
59
60