| 1 |
<?php |
| 2 |
|
| 3 |
use ABlocks\Controls\Typography; |
| 4 |
use ABlocks\Controls\Background; |
| 5 |
use ABlocks\Controls\Border; |
| 6 |
use ABlocks\Controls\Dimensions; |
| 7 |
use ABlocks\Controls\Alignment; |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; |
| 11 |
} |
| 12 |
|
| 13 |
$attributes = [ |
| 14 |
'block_id' => array( |
| 15 |
'type' => 'string', |
| 16 |
'default' => '', |
| 17 |
), |
| 18 |
'blockVersion' => [ |
| 19 |
'type' => 'number', |
| 20 |
'default' => 2, |
| 21 |
], |
| 22 |
'metaKey' => [ |
| 23 |
'type' => 'string', |
| 24 |
'default' => '', |
| 25 |
], |
| 26 |
'linkAdd' => [ |
| 27 |
'type' => 'boolean', |
| 28 |
'default' => false |
| 29 |
], |
| 30 |
'trimMode' => [ |
| 31 |
'type' => 'boolean', |
| 32 |
'default' => false |
| 33 |
], |
| 34 |
'dynamicTextColor' => [ |
| 35 |
'type' => 'string', |
| 36 |
'default' => '' |
| 37 |
], |
| 38 |
|
| 39 |
'trimLimit' => [ |
| 40 |
'type' => 'number', |
| 41 |
'default' => 0 |
| 42 |
], |
| 43 |
'trimEndSymbol' => [ |
| 44 |
'type' => 'string', |
| 45 |
'default' => '' |
| 46 |
], |
| 47 |
|
| 48 |
]; |
| 49 |
|
| 50 |
$attributes = array_merge( |
| 51 |
Typography::get_attribute( 'dynamicTypography', true ), |
| 52 |
Alignment::get_attribute( 'alignment', true, [ 'value' => 'left' ] ), |
| 53 |
$attributes, |
| 54 |
); |
| 55 |
|
| 56 |
return array_merge( $attributes, \ABlocks\Classes\BlockGlobal::get_attributes() ); |
| 57 |
|