mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
9 lines
219 B
PHP
9 lines
219 B
PHP
<?php
|
|
class CMSPageAddControllerExtension extends Extension
|
|
{
|
|
public function updatePageOptions(&$fields)
|
|
{
|
|
$fields->push(new HiddenField('SubsiteID', 'SubsiteID', Subsite::currentSubsiteID()));
|
|
}
|
|
}
|