ZBlogPHP::GetModuleByID PHP Method

GetModuleByID() public method

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