PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / renderer / Image / Defaults.php

Defaults.php in Tableberg – Simple Gutenberg Table Block 1.1.5, at renderer/Image/Defaults.php

49 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Image Element Defaults
5 *
6 * AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
7 * Generated from: packages/tableberg/src/elements/image/index.tsx
8 *
9 * @package Tableberg
10 */
11
12 namespace Tableberg\Renderer\Image;
13
14 class Defaults {
15 /**
16 * @return array<string, mixed>
17 */
18 public static function get_defaults() {
19 return [
20 'media' => [],
21 'height' => '',
22 'width' => '150px',
23 'alt' => '',
24 'align' => 'left',
25 'aspectRatio' => '',
26 'scale' => 'cover',
27 'sizeSlug' => 'large',
28 'caption' => '',
29 'href' => '',
30 'linkTarget' => '_self',
31 'lightbox' => [
32 'enabled' => false,
33 ],
34 'border' => [
35 'top' => '',
36 'right' => '',
37 'bottom' => '',
38 'left' => '',
39 ],
40 'borderRadius' => [
41 'topLeft' => '',
42 'topRight' => '',
43 'bottomLeft' => '',
44 'bottomRight' => '',
45 ],
46 ];
47 }
48 }
49