Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Field/PluginSettingsBase.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
139 */ | 139 */ |
140 public function calculateDependencies() { | 140 public function calculateDependencies() { |
141 if (!empty($this->thirdPartySettings)) { | 141 if (!empty($this->thirdPartySettings)) { |
142 // Create dependencies on any modules providing third party settings. | 142 // Create dependencies on any modules providing third party settings. |
143 return [ | 143 return [ |
144 'module' => array_keys($this->thirdPartySettings) | 144 'module' => array_keys($this->thirdPartySettings), |
145 ]; | 145 ]; |
146 } | 146 } |
147 return []; | 147 return []; |
148 } | 148 } |
149 | 149 |