芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/www/rambut.bf1.my/wp-content/plugins/siteground-migrator/core/Helper/Factory_Trait.php
$namespace = new \SiteGround_i18n\i18n_Service( 'siteground-migrator' ); return; } // Build the type and path for the dependency. if ( empty( $class ) ) { $type = $path; } else { $type = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $class ) ) ); } $class_path = 'SiteGround_Migrator\\' . $path . '\\' . $type; if ( ! class_exists( $class_path ) ) { throw new \Exception( 'Unknown dependency type "' . $type . '" in "' . $path . '".' ); } // Define the class. if ( empty( $class ) ) { $this->$namespace = new $class_path(); } else { $this->$class = new $class_path(); } } }