Ejemplo n.º 1
0
 private function runBoxalinoExportCronJob($delta = false)
 {
     $tmpPath = Shopware()->DocPath('media_temp_boxalinoexport');
     $exporter = new Shopware_Plugins_Frontend_Boxalino_DataExporter($tmpPath, $delta);
     $exporter->run();
     return true;
 }
Ejemplo n.º 2
0
 private function exportData($delta = false)
 {
     $tmpPath = Shopware()->DocPath('media_temp_boxalinoexport');
     $exporter = new Shopware_Plugins_Frontend_Boxalino_DataExporter($tmpPath, $delta);
     $this->View()->assign($exporter->run());
 }