mtclient::getCategoryList PHP Method

getCategoryList() public method

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;
    }