mtclient::getCategoryList PHP 메소드

getCategoryList() 공개 메소드

methods for categories in moveabletype
public getCategoryList ( $blogID )
    function getCategoryList($blogID)
    {
        $XMLblogid = new xmlrpcval($blogID, "string");
        $r = new xmlrpcmsg("mt.getCategoryList", array($XMLblogid, $this->XMLusername, $this->XMLpassword));
        $r = $this->exec($r);
        return $r;
    }