default
7 months ago
dummy
7 months ago
shortpixel
7 months ago
.DS_Store
7 months ago
class-foogallery-thumb-engine.php
7 months ago
class-foogallery-thumb-image-editor-gd.php
7 months ago
class-foogallery-thumb-image-editor-imagick.php
7 months ago
class-foogallery-thumb-manager.php
7 months ago
includes.php
7 months ago
includes.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | //include the base engine class |
| 4 | require_once( FOOGALLERY_PATH . 'includes/thumbs/class-foogallery-thumb-engine.php' ); |
| 5 | |
| 6 | //include the manager class |
| 7 | require_once( FOOGALLERY_PATH . 'includes/thumbs/class-foogallery-thumb-manager.php' ); |
| 8 | |
| 9 | //include files for default engine |
| 10 | require_once( FOOGALLERY_PATH . 'includes/thumbs/default/class-foogallery-thumb-engine-default.php' ); |
| 11 | require_once( FOOGALLERY_PATH . 'includes/thumbs/default/class-foogallery-thumb-generator.php' ); |
| 12 | require_once( FOOGALLERY_PATH . 'includes/thumbs/default/class-foogallery-thumb-generator-background-fill.php' ); |
| 13 | |
| 14 | //include files for dummy engine |
| 15 | require_once( FOOGALLERY_PATH . 'includes/thumbs/dummy/class-foogallery-thumb-engine-dummy.php' ); |
| 16 | |
| 17 | //include files for shortpixel engine |
| 18 | require_once( FOOGALLERY_PATH . 'includes/thumbs/shortpixel/class-foogallery-thumb-engine-shortpixel.php' ); |
| 19 |