When running both the Collection and ElectronPdf extension a single menu is used to collate all links by the two extensions
wfLoadExtension('Collection');
wfLoadExtension( 'ElectronPdfService' );However, if switch the order in LocalSettings.php like so:
wfLoadExtension( 'ElectronPdfService' );
wfLoadExtension('Collection');I will get two print sections in the sidebar.
Acceptance criteria
- I'd advise settling on a common sidebar key for both extensions, or duplicating the logic in ElectronPdfService to be aware of Collection extension so that Collection considers ElectronPdfs existence.
