load_addon( $dir, $content ); } } } /** * Include an addon, addon itself should handle initialization */ public function load_addon( $dir, $addon ) { $dir = rtrim( $dir, '/' ); $file = $dir . '/' . $addon . '/' . $addon . '.php'; if( is_file( $file ) ) { include_once( $file ); } } }