jeudi 18 juin 2015

How to export file xml from QDataGridColumn to zip file for download from a button QCubed/QCodo

its my code .. any can help me guys :(

public function btnZipDownload_Click($zip, $key, $base) {

    foreach($this->GetAllControls() as $objControl) {
        if (substr($objControl->ControlId, 0, 11) == 'chkSelected') {
                $zip = new ZipArchive;
                if ($zip->open('somefile.zip') === TRUE) {
                    for ($i = 0; $i < $zip->numFiles; $i++) {
                        if ($objControl->$couples) {
                            $couples[]=array('filename'=>'./somenewfile.ext','localname'=>$zip->getNameIndex($i));
                        }
                    }
                }
                foreach ($couples as $couple) $zip->addFile($couple['filename'],$couple['localname']);
                $zip->close();
            }
        }

    }
}




Aucun commentaire:

Enregistrer un commentaire