ZBlogPHP::GetModuleByID PHP 메소드

GetModuleByID() 공개 메소드

通过ID获取模块实例
public GetModuleByID ( integer $id ) : Module
$id integer
리턴 Module
    public function GetModuleByID($id)
    {
        return $this->GetSomeThing('modules', 'ID', $id, 'Module');
        // What the fuck?
    }
ZBlogPHP