Plugin Directory

Changeset 2943916


Ignore:
Timestamp:
07/26/2023 09:42:22 PM (3 years ago)
Author:
rmanaf
Message:

2.4.13

Location:
code-injection/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • code-injection/trunk/code-injection.php

    r2939201 r2943916  
    55 * Plugin URI: https://github.com/Rmanaf/wp-code-injection
    66 * Description: This plugin allows you to effortlessly create custom ads for your website. Inject code snippets in HTML, CSS, and JavaScript, write and run custom plugins on-the-fly, and take your website's capabilities to the next level.
    7  * Version: 2.4.12
     7 * Version: 2.4.13
    88 * Author: Rmanaf
    99 * Author URI: https://profiles.wordpress.org/rmanaf/
     
    2323define('__CI_URL__', plugin_dir_url(__FILE__));
    2424define('__CI_PATH__', plugin_dir_path(__FILE__));
    25 define('__CI_VERSION__', '2.4.12');
     25define('__CI_VERSION__', '2.4.13');
    2626
    2727// Require the necessary files for the plugin
  • code-injection/trunk/includes/class-barchart.php

    r2939201 r2943916  
    2222    function __construct($data, $w, $h, $g = 1)
    2323    {
    24 
    2524        $this->data = $data;
    26 
    2725        $this->width = $w;
    28 
    2926        $this->height = $h;
    30 
    3127        $this->gap = $g;
    3228    }
  • code-injection/trunk/includes/class-shortcodes.php

    r2939201 r2943916  
    4141     * @since 2.4.12
    4242     */
    43     private function get_shortcode_by_name($text, $name)
     43    private static function get_shortcode_by_name($text, $name)
    4444    {
    4545
  • code-injection/trunk/includes/class-widget.php

    r2939201 r2943916  
    2121            'wp_code_injection_plugin_widget',
    2222            esc_html__('Code Injection', 'code-injection'),
    23             ['description' => esc_html__('This plugin allows you to inject code snippets into the pages.', 'code-injection')]
     23            ['description' => esc_html__("This plugin allows you to effortlessly create custom ads for your website. Inject code snippets in HTML, CSS, and JavaScript, write and run custom plugins on-the-fly, and take your website's capabilities to the next level.", 'code-injection')]
    2424        );
    2525    }
  • code-injection/trunk/readme.txt

    r2939201 r2943916  
    44Requires at least: 4.5.0
    55Tested up to: 6.2.2
    6 Stable tag: 2.4.12
     6Stable tag: 2.4.13
    77License: MIT License
    88License URI: https://github.com/Rmanaf/wp-code-injection/blob/master/LICENSE
Note: See TracChangeset for help on using the changeset viewer.