mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
17 lines
410 B
PHP
17 lines
410 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FrameworkTest\LinkField\Blocks;
|
|
|
|
use DNADesign\Elemental\Models\BaseElement;
|
|
|
|
class LinkFieldTestBlock extends BaseElement
|
|
{
|
|
private static string $table_name = 'LinkFieldTestBlock';
|
|
|
|
private static string $icon = 'font-icon-block-file-list';
|
|
|
|
private static string $singular_name = 'Links List Block';
|
|
|
|
private static string $plural_name = 'Links List Blocks';
|
|
}
|