Changeset 3235602
- Timestamp:
- 02/05/2025 06:14:25 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tida-url-screenshot/tags/1.1.1/tida-url-screenshot.php
r3235600 r3235602 3 3 Plugin Name: Tida URL Screenshot 4 4 Description: This plugin is adding the tool on your website that takes a screenshot from a URL. 5 Version: 1. 25 Version: 1.1.1 6 6 Author: Tida Web 7 7 Author URI: https://tidaweb.com … … 22 22 public function __construct() 23 23 { 24 define( 'TIDA_URL_SCREENSHOT_VERSION', '1. 2' );24 define( 'TIDA_URL_SCREENSHOT_VERSION', '1.1.1' ); 25 25 define( 'TIDA_URL_SCREENSHOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 26 26 define( 'TIDA_URL_SCREENSHOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 60 60 require_once('includes/class-abstract-api.php'); 61 61 require_once('includes/class-api-flash.php'); 62 require_once('includes/class-jsonlink.php');63 62 require_once('includes/class-screenshot-layer.php'); 64 63 require_once('includes/class-screenshot-machine.php'); … … 163 162 case "apiflash": 164 163 $screenshot_img_src = ApiFlashAPI::prepare_data_for_api( $url ); 165 break;166 case "jsonlink":167 $screenshot_img_src = JsonLinkAPI::prepare_data_for_api( $url );168 164 break; 169 165 case "screenshotlayer": … … 226 222 $screenshot_img_src = ApiFlashAPI::prepare_data_for_api( $post_url ); 227 223 break; 228 case "jsonlink":229 $screenshot_img_src = JsonLinkAPI::prepare_data_for_api( $post_url );230 break;231 224 case "screenshotlayer": 232 225 $screenshot_img_src = ScreenshotLayerAPI::prepare_data_for_api( $post_url );
Note: See TracChangeset
for help on using the changeset viewer.