# tableberg/trunk/renderer/Image/Defaults.php

Tableberg – Simple Gutenberg Table Block, version trunk. 49 lines.

- Page: https://pluginprobe.com/plugins/tableberg/trunk/code/renderer/Image/Defaults.php
- Raw: https://pluginprobe.com/plugins/tableberg/trunk/raw/renderer/Image/Defaults.php
- Modified: 2026-07-06T14:46:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/trunk/code/renderer/Image/Defaults.php#L10-L20`.

```php
<?php

/**
 * Image Element Defaults
 *
 * AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
 * Generated from: packages/tableberg/src/elements/image/index.tsx
 *
 * @package Tableberg
 */

namespace Tableberg\Renderer\Image;

class Defaults {
    /**
     * @return array<string, mixed>
     */
    public static function get_defaults() {
        return [
            'media' => [],
            'height' => '',
            'width' => '150px',
            'alt' => '',
            'align' => 'left',
            'aspectRatio' => '',
            'scale' => 'cover',
            'sizeSlug' => 'large',
            'caption' => '',
            'href' => '',
            'linkTarget' => '_self',
            'lightbox' => [
                'enabled' => false,
            ],
            'border' => [
                'top' => '',
                'right' => '',
                'bottom' => '',
                'left' => '',
            ],
            'borderRadius' => [
                'topLeft' => '',
                'topRight' => '',
                'bottomLeft' => '',
                'bottomRight' => '',
            ],
        ];
    }
}

```
