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