PluginProbe
CatFolders – WordPress Media Library Folders & Categories / trunk
CatFolders – WordPress Media Library Folders & Categories vtrunk
2.5.6 2.5.5 trunk 1.6.1 1.8 1.9 2.0 2.2 2.3.1 2.3.2 2.4.4 2.4.7 2.4.8 2.4.9 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4
catfolders / includes / Integrations / Init.php

Init.php in CatFolders – WordPress Media Library Folders & Categories trunk, at includes/Integrations/Init.php

21 lines 327 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace CatFolders\Integrations;
3
4 class Init {
5 public function __construct() {
6 $this->registerClasses();
7 }
8
9 public function registerClasses() {
10 $classes = array(
11 'PageBuilders',
12 'MediaLibraryAssistant',
13 );
14
15 foreach ( $classes as $class ) {
16 $cl = __NAMESPACE__ . "\\{$class}";
17 new $cl();
18 }
19 }
20 }
21