Plugin Directory

Changeset 3274234


Ignore:
Timestamp:
04/16/2025 07:30:23 AM (11 months ago)
Author:
Annubis
Message:

update wp 6.8

Location:
dsgvo-youtube/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dsgvo-youtube/trunk/index.php

    r3262802 r3274234  
    88Author URI: https://www.ericmaechler.com
    99Requires at least: 4.0
    10 Tested up to: 6.7.2
     10Tested up to: 6.8
    1111Text Domain: dsgvo-youtube
    1212Domain Path: /languages
     
    1414
    1515//dsgvo youtube mehrsprachig machen
    16 function my_plugin_initdsgvoyoutube() {
    17     load_plugin_textdomain( 'dsgvo-youtube', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
    18   }
    19   add_action('init', 'my_plugin_initdsgvoyoutube');
     16function my_plugin_initdsgvoyoutube()
     17{
     18  load_plugin_textdomain('dsgvo-youtube', false, dirname(plugin_basename(__FILE__)) . '/languages');
     19}
     20add_action('init', 'my_plugin_initdsgvoyoutube');
    2021
    2122
    2223
    2324// Funktion zum Einbinden des PHP-Stylesheets
    24 function dsgvoyoutube_enqueue_styles() {
    25     // Pfad zum PHP-Stylesheet
    26     $php_file = plugins_url( 'css/style.php', __FILE__ );
     25function dsgvoyoutube_enqueue_styles()
     26{
     27  // Pfad zum PHP-Stylesheet
     28  $php_file = plugins_url('css/style.php', __FILE__);
    2729
    28     // Einbinden des PHP-Stylesheets im Backend und Frontend
    29     wp_enqueue_style( 'dsgvoyoutube-style', $php_file );
     30  // Einbinden des PHP-Stylesheets im Backend und Frontend
     31  wp_enqueue_style('dsgvoyoutube-style', $php_file);
    3032}
    3133
    3234// Hook, um die Funktion aufzurufen
    33 add_action( 'admin_enqueue_scripts', 'dsgvoyoutube_enqueue_styles' );
    34 add_action( 'wp_enqueue_scripts', 'dsgvoyoutube_enqueue_styles' );
     35add_action('admin_enqueue_scripts', 'dsgvoyoutube_enqueue_styles');
     36add_action('wp_enqueue_scripts', 'dsgvoyoutube_enqueue_styles');
    3537
    3638
     
    4446
    4547// add css JS -> includes/add-js-css.php
    46 include ("includes/add-js-css.php");
     48include("includes/add-js-css.php");
    4749
    4850// add Button für Text-Editor mit standard-bild
    49 include ("includes/add-button-texteditor.php");
     51include("includes/add-button-texteditor.php");
    5052
    5153// add Button für Text-Editor mit standard-bild
    52 include ("includes/add-button-texteditor-eigenesbild.php");
     54include("includes/add-button-texteditor-eigenesbild.php");
    5355
    5456// the popup shortcode
  • dsgvo-youtube/trunk/readme.txt

    r3262802 r3274234  
    55Version: 1.5.2
    66Requires at least: 4.0
    7 Tested up to: 6.7.2
     7Tested up to: 6.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969= 1.5.2 =
    70 * add shortcode validation
     70* xss vulnerability has been reported and fixed
    7171= 1.5.1 =
    7272* Update lang file
Note: See TracChangeset for help on using the changeset viewer.