PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.2.6
Gallery : FooGallery v3.2.6
3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / includes / thumbs / includes.php
foogallery / includes / thumbs Last commit date
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