silverstripe-cms/code/Forms/SiteTreeURLSegmentField_Rea...

17 lines
303 B
PHP
Raw Permalink Normal View History

<?php
namespace SilverStripe\CMS\Forms;
/**
* Readonly version of a site tree URL segment field
*/
class SiteTreeURLSegmentField_Readonly extends SiteTreeURLSegmentField
{
2017-01-25 21:59:25 +01:00
protected $readonly = true;
2017-01-25 21:59:25 +01:00
public function performReadonlyTransformation()
{
return clone $this;
}
}