mirror of
https://github.com/silverstripe/silverstripe-widgets
synced 2024-10-22 17:05:54 +02:00
ab8349209a
In the case that no title is entered in the CMS's title field no title is returned, rather than the CMS widget's title.
14 lines
357 B
PHP
14 lines
357 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Widgets\Tests\WidgetAreaEditorTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Widgets\Model\Widget;
|
|
|
|
class TestWidget extends Widget implements TestOnly
|
|
{
|
|
private static $table_name = 'WidgetAreaEditorTest_TestWidget';
|
|
private static $cmsTitle = "Test widget";
|
|
private static $description = "Test widget";
|
|
}
|