├── CHANGELOG.md ├── README.md ├── app ├── api │ ├── class-ai.php │ ├── class-api-multi.php │ ├── class-api.php │ ├── class-cloudflare.php │ ├── class-compress.php │ ├── class-fuzion.php │ ├── class-image.php │ └── class-variant.php ├── async │ ├── class-edit.php │ ├── class-task.php │ └── class-upload.php ├── class-activator.php ├── class-admin.php ├── class-cli.php ├── class-core.php ├── class-image.php ├── class-loader.php ├── class-media.php ├── class-settings.php ├── index.php ├── integrations │ ├── class-acf.php │ ├── class-aio-seo.php │ ├── class-elementor.php │ ├── class-flatsome.php │ ├── class-integration.php │ ├── class-js-composer.php │ ├── class-multisite-global-media.php │ ├── class-rank-math.php │ ├── class-shortpixel.php │ ├── class-spectra.php │ └── class-wpml.php ├── modules │ ├── class-auto-offload.php │ ├── class-auto-resize.php │ ├── class-cache-ttl.php │ ├── class-cdn.php │ ├── class-cloudflare-images.php │ ├── class-custom-id.php │ ├── class-custom-path.php │ ├── class-disable-async.php │ ├── class-disable-generation.php │ ├── class-full-offload.php │ ├── class-image-ai.php │ ├── class-image-compress.php │ ├── class-image-generate.php │ ├── class-logging.php │ ├── class-module.php │ ├── class-multisite.php │ ├── class-page-parser.php │ └── class-service.php └── traits │ ├── trait-ajax.php │ ├── trait-empty-init.php │ ├── trait-helpers.php │ └── trait-stats.php ├── assets ├── images │ ├── icons │ │ ├── cloud-off.svg │ │ ├── cloud.svg │ │ ├── delete.svg │ │ ├── download.svg │ │ ├── format.svg │ │ ├── hdd.svg │ │ ├── minimize.svg │ │ ├── pause.svg │ │ ├── unpause.svg │ │ ├── upload.svg │ │ └── wand.svg │ └── step-02-custom-token-setup.jpg └── index.php ├── cf-images.php ├── index.php ├── languages └── cf-images.pot └── uninstall.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/README.md -------------------------------------------------------------------------------- /app/api/class-ai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-ai.php -------------------------------------------------------------------------------- /app/api/class-api-multi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-api-multi.php -------------------------------------------------------------------------------- /app/api/class-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-api.php -------------------------------------------------------------------------------- /app/api/class-cloudflare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-cloudflare.php -------------------------------------------------------------------------------- /app/api/class-compress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-compress.php -------------------------------------------------------------------------------- /app/api/class-fuzion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-fuzion.php -------------------------------------------------------------------------------- /app/api/class-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-image.php -------------------------------------------------------------------------------- /app/api/class-variant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/api/class-variant.php -------------------------------------------------------------------------------- /app/async/class-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/async/class-edit.php -------------------------------------------------------------------------------- /app/async/class-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/async/class-task.php -------------------------------------------------------------------------------- /app/async/class-upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/async/class-upload.php -------------------------------------------------------------------------------- /app/class-activator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-activator.php -------------------------------------------------------------------------------- /app/class-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-admin.php -------------------------------------------------------------------------------- /app/class-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-cli.php -------------------------------------------------------------------------------- /app/class-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-core.php -------------------------------------------------------------------------------- /app/class-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-image.php -------------------------------------------------------------------------------- /app/class-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-loader.php -------------------------------------------------------------------------------- /app/class-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-media.php -------------------------------------------------------------------------------- /app/class-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/class-settings.php -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/index.php -------------------------------------------------------------------------------- /app/integrations/class-acf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-acf.php -------------------------------------------------------------------------------- /app/integrations/class-aio-seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-aio-seo.php -------------------------------------------------------------------------------- /app/integrations/class-elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-elementor.php -------------------------------------------------------------------------------- /app/integrations/class-flatsome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-flatsome.php -------------------------------------------------------------------------------- /app/integrations/class-integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-integration.php -------------------------------------------------------------------------------- /app/integrations/class-js-composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-js-composer.php -------------------------------------------------------------------------------- /app/integrations/class-multisite-global-media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-multisite-global-media.php -------------------------------------------------------------------------------- /app/integrations/class-rank-math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-rank-math.php -------------------------------------------------------------------------------- /app/integrations/class-shortpixel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-shortpixel.php -------------------------------------------------------------------------------- /app/integrations/class-spectra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-spectra.php -------------------------------------------------------------------------------- /app/integrations/class-wpml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/integrations/class-wpml.php -------------------------------------------------------------------------------- /app/modules/class-auto-offload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-auto-offload.php -------------------------------------------------------------------------------- /app/modules/class-auto-resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-auto-resize.php -------------------------------------------------------------------------------- /app/modules/class-cache-ttl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-cache-ttl.php -------------------------------------------------------------------------------- /app/modules/class-cdn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-cdn.php -------------------------------------------------------------------------------- /app/modules/class-cloudflare-images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-cloudflare-images.php -------------------------------------------------------------------------------- /app/modules/class-custom-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-custom-id.php -------------------------------------------------------------------------------- /app/modules/class-custom-path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-custom-path.php -------------------------------------------------------------------------------- /app/modules/class-disable-async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-disable-async.php -------------------------------------------------------------------------------- /app/modules/class-disable-generation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-disable-generation.php -------------------------------------------------------------------------------- /app/modules/class-full-offload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-full-offload.php -------------------------------------------------------------------------------- /app/modules/class-image-ai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-image-ai.php -------------------------------------------------------------------------------- /app/modules/class-image-compress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-image-compress.php -------------------------------------------------------------------------------- /app/modules/class-image-generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-image-generate.php -------------------------------------------------------------------------------- /app/modules/class-logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-logging.php -------------------------------------------------------------------------------- /app/modules/class-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-module.php -------------------------------------------------------------------------------- /app/modules/class-multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-multisite.php -------------------------------------------------------------------------------- /app/modules/class-page-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-page-parser.php -------------------------------------------------------------------------------- /app/modules/class-service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/modules/class-service.php -------------------------------------------------------------------------------- /app/traits/trait-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/traits/trait-ajax.php -------------------------------------------------------------------------------- /app/traits/trait-empty-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/traits/trait-empty-init.php -------------------------------------------------------------------------------- /app/traits/trait-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/traits/trait-helpers.php -------------------------------------------------------------------------------- /app/traits/trait-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/app/traits/trait-stats.php -------------------------------------------------------------------------------- /assets/images/icons/cloud-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/cloud-off.svg -------------------------------------------------------------------------------- /assets/images/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/cloud.svg -------------------------------------------------------------------------------- /assets/images/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/delete.svg -------------------------------------------------------------------------------- /assets/images/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/download.svg -------------------------------------------------------------------------------- /assets/images/icons/format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/format.svg -------------------------------------------------------------------------------- /assets/images/icons/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/hdd.svg -------------------------------------------------------------------------------- /assets/images/icons/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/minimize.svg -------------------------------------------------------------------------------- /assets/images/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/pause.svg -------------------------------------------------------------------------------- /assets/images/icons/unpause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/unpause.svg -------------------------------------------------------------------------------- /assets/images/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/upload.svg -------------------------------------------------------------------------------- /assets/images/icons/wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/icons/wand.svg -------------------------------------------------------------------------------- /assets/images/step-02-custom-token-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/images/step-02-custom-token-setup.jpg -------------------------------------------------------------------------------- /assets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/assets/index.php -------------------------------------------------------------------------------- /cf-images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/cf-images.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/index.php -------------------------------------------------------------------------------- /languages/cf-images.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/languages/cf-images.pot -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/av3nger/cf-images/HEAD/uninstall.php --------------------------------------------------------------------------------