Subversion Repositories oidplus

Rev

Rev 702 | Rev 1033 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 702 Rev 778
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 * OIDplus 2.0
4
 * OIDplus 2.0
5
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
5
 * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
6
 *
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
9
 * You may obtain a copy of the License at
10
 *
10
 *
Line 112... Line 112...
112
                }
112
                }
113
        }
113
        }
114
}
114
}
115
 
115
 
116
// Then plugins
116
// Then plugins
117
$manifests = OIDplus::getAllPluginManifests('*Pages,objectTypes,captcha', true); // due to interface gridGeneratorLinks (1.3.6.1.4.1.37476.2.5.2.3.6) this plugin type can also have CSS
117
$manifests = OIDplus::getAllPluginManifests(implode(',',OIDplus::INTERACTIVE_PLUGIN_TYPES), true); // due to interface gridGeneratorLinks (1.3.6.1.4.1.37476.2.5.2.3.6) this plugin type can also have CSS
118
foreach ($manifests as $manifest) {
118
foreach ($manifests as $manifest) {
119
        foreach ($manifest->getCSSFiles() as $css_file) {
119
        foreach ($manifest->getCSSFiles() as $css_file) {
120
                $out .= process_file($css_file);
120
                $out .= process_file($css_file);
121
        }
121
        }
122
}
122
}