Overview

Namespaces

  • None
  • swag

Classes

  • H5pSwagifact
  • H5pUtil
  • SettingsPageController
  • ShortcodeUtil
  • swag\ArrayUtil
  • swag\Singleton
  • swag\WpUtil
  • SwagMapController
  • SwagPageController
  • Swagpath
  • SwagpathController
  • SwagpathSyncer
  • SwagPlugin
  • SwagPostItem
  • SwagTgmpaController
  • SwagTrack
  • SwagTrackController
  • SwagUser
  • Template
  • Xapi
  • Overview
  • Namespace
  • Class
 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;

/**
 * Wordpress utils.
 */
class WpUtil {

    /**
     * Get base path.
     */
    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.");
        }
    }

    /**
     * Get path to WordPress bootstrap file.
     */
    public static function getWpLoadPath() {
        return WpUtil::getWpBasePath()."/wp-load.php";
    }

    /**
     * Bootstrap WordPress.
     */
    public function bootstrap() {
        require_once WpUtil::getWpLoadPath();
    }
}
Swag API documentation generated by ApiGen