1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49:
<?php
namespace swag;
if (class_exists("swag\\WpUtil"))
return;
class WpUtil {
public static function getWpBasePath() {
if (php_sapi_name()=="cli")
$path=$_SERVER["PWD"];
else
$path=$_SERVER['SCRIPT_FILENAME'];
while (1) {
if (file_exists($path."/wp-load.php"))
return $path;
$last=$path;
$path=dirname($path);
if ($last==$path)
throw new \Exception("Not inside a wordpress install.");
}
}
public static function getWpLoadPath() {
return WpUtil::getWpBasePath()."/wp-load.php";
}
public function bootstrap() {
require_once WpUtil::getWpLoadPath();
}
}