Example #1
0
 public function getImages_CFG()
 {
     foreach ($this->compiler->images_info as $value) {
         if ($value['forced'] && $this->isPropSet($this->images, "forceDownload", true) || !$value['forced']) {
             FileFolder::copy($value['orig'], is_array($this->images) && isset($this->images["path"]) ? $this->path . $this->images["path"] . basename($value['file']) : $this->path . $value['file']);
         }
     }
 }