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