mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
19 lines
413 B
PHP
19 lines
413 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Model;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class SiteTreeBacklinksTestContentObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'BacklinkContent';
|
|
|
|
private static $db = [
|
|
'Title' => 'Text',
|
|
'Content' => 'HTMLText',
|
|
];
|
|
|
|
private static $singular_name = 'Backlink test content object';
|
|
}
|