-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API Move subsite dropdown logic for folders into FolderFormFactoryExt…
…ension
- Loading branch information
1 parent
a201e7e
commit 1dd1f2c
Showing
4 changed files
with
55 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
namespace SilverStripe\Subsites\Extensions; | ||
|
||
use SilverStripe\Core\Extension; | ||
use SilverStripe\Forms\DropdownField; | ||
use SilverStripe\Forms\FieldList; | ||
use SilverStripe\Forms\LiteralField; | ||
use SilverStripe\Subsites\Model\Subsite; | ||
|
||
class FolderFormFactoryExtension extends Extension | ||
{ | ||
/** | ||
* Add subsites-specific fields to the folder editor. | ||
* @param FieldList $fields | ||
*/ | ||
public function updateFormFields(FieldList $fields) | ||
{ | ||
$sites = Subsite::accessible_sites('CMS_ACCESS_AssetAdmin'); | ||
$values = []; | ||
$values[0] = _t(__CLASS__ . '.AllSitesDropdownOpt', 'All sites'); | ||
foreach ($sites as $site) { | ||
$values[$site->ID] = $site->Title; | ||
} | ||
ksort($values); | ||
if ($sites) { | ||
// Dropdown needed to move folders between subsites | ||
/** @var @skipUpgrade */ | ||
$dropdown = DropdownField::create( | ||
'SubsiteID', | ||
_t(__CLASS__ . '.SubsiteFieldLabel', 'Subsite'), | ||
$values | ||
); | ||
$dropdown->addExtraClass('subsites-move-dropdown'); | ||
$fields->push($dropdown); | ||
$fields->push(LiteralField::create( | ||
'Message', | ||
'<p class="message notice">' . | ||
_t( | ||
__CLASS__ . '.SUBSITENOTICE', | ||
'Folders and files created in the main site are accessible by all subsites.' | ||
) | ||
. '</p>' | ||
)); | ||
} | ||
} | ||
} |