ZBlogPHP::LoadApp PHP Method

LoadApp() public method

载入指定应用
public LoadApp ( string $type, string $id ) : App
$type string 应用类型(theme|plugin)
$id string 应用ID
return App
    public function LoadApp($type, $id)
    {
        $app = new App();
        $app->LoadInfoByXml($type, $id);
        return $app;
    }
ZBlogPHP