mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
17 lines
303 B
PHP
17 lines
303 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Forms;
|
|
|
|
/**
|
|
* Readonly version of a site tree URL segment field
|
|
*/
|
|
class SiteTreeURLSegmentField_Readonly extends SiteTreeURLSegmentField
|
|
{
|
|
protected $readonly = true;
|
|
|
|
public function performReadonlyTransformation()
|
|
{
|
|
return clone $this;
|
|
}
|
|
}
|