ZBlogPHP::GetUploadList PHP Method

GetUploadList() public method

public GetUploadList ( null $select = null, null $where = null, null $order = null, null $limit = null, null $option = null ) : array
$select null
$where null
$order null
$limit null
$option null
return array
    public function GetUploadList($select = null, $where = null, $order = null, $limit = null, $option = null)
    {
        if (empty($select)) {
            $select = array('*');
        }
        $sql = $this->db->sql->Select($this->table['Upload'], $select, $where, $order, $limit, $option);
        return $this->GetListType('Upload', $sql);
    }
ZBlogPHP