Example #1
0
 /**
  * Perform file import
  *
  * @return this
  */
 function performImport()
 {
     parent::performImport();
     // Now that the original is imported, lets generate thumbnails
     $this->createThumbnails();
     return $this;
 }
Example #2
0
 /**
  * Perform file import
  *
  * @return this
  */
 function performImport()
 {
     parent::performImport();
     // Now that the original is imported, lets generate thumbnails
     if (in_array($this->getMimeType(), $this->imageMimeType)) {
         $this->createThumbnails();
     }
     return $this;
 }
Example #3
0
 function performImport()
 {
     parent::performImport();
     $this->createThumbnails();
     // Now that the origninal is imported, lets generate thumbnails
     /*
     		$this->performImport();
     		$this->update();
     		$this->afterImport();
     */
     return $this;
 }