mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
6c616f5f7a
* WIP Implement polymorphic sitetree link tracking * Update unit tests Merge SiteTreeTrackedPage into SiteTree directly * Fix bugs and issues * Fix support for file link tracking * Add missing use * Add back deprecated extension * Remove obsolete belongs_many_many * Update deprecations * BUG Ensure non-SiteTree records support link tracking * Safer changed check * Shift file tracking test to assets module * Better check for live stage on versioning * Deprecate method * Cleanup virtualpage * Clear records on delete * Ensure upgrade task occurs on draft * fix linting
24 lines
546 B
PHP
24 lines
546 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Model;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
/**
|
|
* Represents a link between a dataobject parent and a page in a HTML content area
|
|
*
|
|
* @method DataObject Parent() Parent object
|
|
* @method SiteTree Linked() Page being linked to
|
|
*
|
|
* Run `MigrateSiteTreeLinkingTask` to migrate from old table to this.
|
|
*/
|
|
class SiteTreeLink extends DataObject
|
|
{
|
|
private static $table_name = 'SiteTreeLink';
|
|
|
|
private static $has_one = [
|
|
'Parent' => DataObject::class,
|
|
'Linked' => SiteTree::class,
|
|
];
|
|
}
|