Plugin Directory

Changeset 3235602


Ignore:
Timestamp:
02/05/2025 06:14:25 PM (13 months ago)
Author:
tidaweb
Message:
  • Changed the author name
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tida-url-screenshot/tags/1.1.1/tida-url-screenshot.php

    r3235600 r3235602  
    33Plugin Name: Tida URL Screenshot
    44Description: This plugin is adding the tool on your website that takes a screenshot from a URL.
    5 Version: 1.2
     5Version: 1.1.1
    66Author: Tida Web
    77Author URI: https://tidaweb.com
     
    2222        public function __construct()
    2323        {
    24             define( 'TIDA_URL_SCREENSHOT_VERSION', '1.2' );
     24            define( 'TIDA_URL_SCREENSHOT_VERSION', '1.1.1' );
    2525            define( 'TIDA_URL_SCREENSHOT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2626            define( 'TIDA_URL_SCREENSHOT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    6060            require_once('includes/class-abstract-api.php');
    6161            require_once('includes/class-api-flash.php');
    62             require_once('includes/class-jsonlink.php');
    6362            require_once('includes/class-screenshot-layer.php');
    6463            require_once('includes/class-screenshot-machine.php');
     
    163162                            case "apiflash":
    164163                                $screenshot_img_src = ApiFlashAPI::prepare_data_for_api( $url );
    165                                 break;
    166                             case "jsonlink":
    167                                 $screenshot_img_src = JsonLinkAPI::prepare_data_for_api( $url );
    168164                                break;
    169165                            case "screenshotlayer":
     
    226222                                    $screenshot_img_src = ApiFlashAPI::prepare_data_for_api( $post_url );
    227223                                    break;
    228                                 case "jsonlink":
    229                                     $screenshot_img_src = JsonLinkAPI::prepare_data_for_api( $post_url );
    230                                     break;
    231224                                case "screenshotlayer":
    232225                                    $screenshot_img_src = ScreenshotLayerAPI::prepare_data_for_api( $post_url );
Note: See TracChangeset for help on using the changeset viewer.