Changeset 2943916
- Timestamp:
- 07/26/2023 09:42:22 PM (3 years ago)
- Location:
- code-injection/trunk
- Files:
-
- 5 edited
-
code-injection.php (modified) (2 diffs)
-
includes/class-barchart.php (modified) (1 diff)
-
includes/class-shortcodes.php (modified) (1 diff)
-
includes/class-widget.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
code-injection/trunk/code-injection.php
r2939201 r2943916 5 5 * Plugin URI: https://github.com/Rmanaf/wp-code-injection 6 6 * 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.1 27 * Version: 2.4.13 8 8 * Author: Rmanaf 9 9 * Author URI: https://profiles.wordpress.org/rmanaf/ … … 23 23 define('__CI_URL__', plugin_dir_url(__FILE__)); 24 24 define('__CI_PATH__', plugin_dir_path(__FILE__)); 25 define('__CI_VERSION__', '2.4.1 2');25 define('__CI_VERSION__', '2.4.13'); 26 26 27 27 // Require the necessary files for the plugin -
code-injection/trunk/includes/class-barchart.php
r2939201 r2943916 22 22 function __construct($data, $w, $h, $g = 1) 23 23 { 24 25 24 $this->data = $data; 26 27 25 $this->width = $w; 28 29 26 $this->height = $h; 30 31 27 $this->gap = $g; 32 28 } -
code-injection/trunk/includes/class-shortcodes.php
r2939201 r2943916 41 41 * @since 2.4.12 42 42 */ 43 private function get_shortcode_by_name($text, $name)43 private static function get_shortcode_by_name($text, $name) 44 44 { 45 45 -
code-injection/trunk/includes/class-widget.php
r2939201 r2943916 21 21 'wp_code_injection_plugin_widget', 22 22 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')] 24 24 ); 25 25 } -
code-injection/trunk/readme.txt
r2939201 r2943916 4 4 Requires at least: 4.5.0 5 5 Tested up to: 6.2.2 6 Stable tag: 2.4.1 26 Stable tag: 2.4.13 7 7 License: MIT License 8 8 License URI: https://github.com/Rmanaf/wp-code-injection/blob/master/LICENSE
Note: See TracChangeset
for help on using the changeset viewer.