Changeset 3057036
- Timestamp:
- 03/22/2024 07:06:51 PM (22 months ago)
- Location:
- european-school-radio-widget
- Files:
-
- 39 added
- 9 edited
-
tags/2.3.1 (added)
-
tags/2.3.1/admin (added)
-
tags/2.3.1/admin/admin.php (added)
-
tags/2.3.1/ersradio-widget.php (added)
-
tags/2.3.1/includes (added)
-
tags/2.3.1/includes/components (added)
-
tags/2.3.1/includes/components/autoStartPlayer.php (added)
-
tags/2.3.1/includes/components/next_playing (added)
-
tags/2.3.1/includes/components/next_playing/nextPlaying.php (added)
-
tags/2.3.1/includes/components/now_playing (added)
-
tags/2.3.1/includes/components/now_playing/nowPlaying.php (added)
-
tags/2.3.1/includes/components/now_playing/nowPlayingProduction.php (added)
-
tags/2.3.1/includes/components/now_playing/nowPlayingSong.php (added)
-
tags/2.3.1/includes/components/player.php (added)
-
tags/2.3.1/includes/components/volumeSlider.php (added)
-
tags/2.3.1/includes/css (added)
-
tags/2.3.1/includes/css/adminStyling.css (added)
-
tags/2.3.1/includes/css/widgetStyling.css (added)
-
tags/2.3.1/includes/images (added)
-
tags/2.3.1/includes/images/ESR_Flag.png (added)
-
tags/2.3.1/includes/images/ESR_FlagWithPlay.png (added)
-
tags/2.3.1/includes/images/new-logo-full-colors.png (added)
-
tags/2.3.1/includes/images/screenshot-1.png (added)
-
tags/2.3.1/includes/images/screenshot-2.png (added)
-
tags/2.3.1/includes/init_scripts (added)
-
tags/2.3.1/includes/init_scripts/loading_css.php (added)
-
tags/2.3.1/includes/init_scripts/loading_translations.php (added)
-
tags/2.3.1/includes/option_scripts (added)
-
tags/2.3.1/includes/option_scripts/save_newsletter_option.php (added)
-
tags/2.3.1/languages (added)
-
tags/2.3.1/languages/ersadio.mo (added)
-
tags/2.3.1/languages/ersradio-el.mo (added)
-
tags/2.3.1/languages/ersradio-el.po (added)
-
tags/2.3.1/languages/ersradio.po (added)
-
tags/2.3.1/licence.txt (added)
-
tags/2.3.1/public (added)
-
tags/2.3.1/public/public.php (added)
-
tags/2.3.1/readme.txt (added)
-
tags/2.3.1/uninstall.php (added)
-
trunk/admin/admin.php (modified) (1 diff)
-
trunk/ersradio-widget.php (modified) (1 diff)
-
trunk/includes/components/now_playing/nowPlayingProduction.php (modified) (1 diff)
-
trunk/includes/init_scripts/loading_css.php (modified) (2 diffs)
-
trunk/languages/ersradio-el.mo (modified) (previous)
-
trunk/languages/ersradio-el.po (modified) (2 diffs)
-
trunk/languages/ersradio.po (modified) (2 diffs)
-
trunk/public/public.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
european-school-radio-widget/trunk/admin/admin.php
r3053637 r3057036 53 53 </div> 54 54 </div> 55 <h6>56 <?php _e('This widget may share your site basic information with the European School Radio', 'ersradio'); ?> (<?php _e('Site Name', 'ersradio'); ?>, <?php _e('Administrator Email', 'ersradio'); ?>, <?php _e('Time Zone Settings', 'ersradio'); ?>, <?php _e('Site Language', 'ersradio'); ?>)57 </h6>58 55 <?php 59 56 } -
european-school-radio-widget/trunk/ersradio-widget.php
r3056801 r3057036 3 3 * Plugin Name: European School Radio Widget 4 4 * Description: A Widget that Plays Music from European School Radio 5 * Version: 2. 25 * Version: 2.3.1 6 6 * Author : George Papadopoulos 7 7 * Organization : European School Radio -
european-school-radio-widget/trunk/includes/components/now_playing/nowPlayingProduction.php
r3053637 r3057036 5 5 <div id="ESR_Official_Widget_for_wordpress_now_playing_production_first_container" class="ESR_Official_Widget_for_wordpress_row_public" style="display: none;"> 6 6 <img id="ESR_Official_Widget_for_wordpress_now_playing_production_image" onclick="onNowProductionClick()" src="" alt="Production Name" width="25%" style="text-align: center; display: block; margin: auto; cursor: pointer"/> 7 <p id="ESR_Official_Widget_for_wordpress_now_playing_production_time" onclick="onNowProductionClick()" style="color: #FFFFFF; margin-top: -1.2%; cursor: pointer"></p> 7 <br> 8 <p id="ESR_Official_Widget_for_wordpress_now_playing_production_time" onclick="onNowProductionClick()" style="color: #FFFFFF; margin-top: -1.2%; cursor: pointer; text-align: center"></p> 8 9 </div> 9 10 <br> -
european-school-radio-widget/trunk/includes/init_scripts/loading_css.php
r3053637 r3057036 5 5 { 6 6 add_action('wp_enqueue_scripts', 'ESR_Official_Widget_for_wordpress_custom_styling_public'); 7 add_action('admin_enqueue_scripts', 'ESR_Official_Widget_for_wordpress_custom_styling_ admin');7 add_action('admin_enqueue_scripts', 'ESR_Official_Widget_for_wordpress_custom_styling_public'); 8 8 } 9 9 … … 12 12 if (is_active_widget(false, false, 'ersradio-widget')){ 13 13 wp_register_style('ESR_Official_Widget_for_wordpress_custom_styling_front_public', plugins_url('ersradio-widget/includes/css/widgetStyling.css')); 14 wp_register_style('ESR_Official_Widget_for_wordpress_custom_styling_front_admin', plugins_url('ersradio-widget/includes/css/adminStyling.css')); 14 15 15 16 wp_enqueue_style('ESR_Official_Widget_for_wordpress_custom_styling_front_public'); 16 }17 }18 19 function ESR_Official_Widget_for_wordpress_custom_styling_admin() :void20 {21 if (is_active_widget(false, false, 'ersradio-widget')){22 wp_register_style('ESR_Official_Widget_for_wordpress_custom_styling_front_admin', plugins_url('ersradio-widget/includes/css/adminStyling.css'));23 24 17 wp_enqueue_style('ESR_Official_Widget_for_wordpress_custom_styling_front_admin'); 25 18 } -
european-school-radio-widget/trunk/languages/ersradio-el.po
r3053637 r3057036 99 99 msgstr "Θέλω να λαμβάνω Newsletter από το" 100 100 101 msgid "This widget may share your site basic information with the European School Radio"102 msgstr "Αυτή η μικροεφαρμογή μπορεί να μοιραστεί τις βασικές πληροφορίες του ιστότοπου σας με το European School Radio"103 104 101 msgid "Site Name" 105 102 msgstr "Όνομα Ιστότοπου" … … 125 122 msgid "There is no upcoming show(s)" 126 123 msgstr "" 127 128 msgid "By"129 msgstr "Από το" -
european-school-radio-widget/trunk/languages/ersradio.po
r3053637 r3057036 99 99 msgstr "" 100 100 101 msgid "This widget may share your site basic information with the European School Radio"102 msgstr ""103 104 101 msgid "Site Name" 105 102 msgstr "" … … 125 122 msgid "There is no upcoming show(s)" 126 123 msgstr "" 127 128 msgid "By"129 msgstr "" -
european-school-radio-widget/trunk/public/public.php
r3053637 r3057036 51 51 } 52 52 ?> 53 <p id="ESR_Official_Widget_for_wordpress_by_esr_text" style="text-align: center; color: #FFFFFF; font-size: 12px; cursor: pointer;" onclick="onByEuropeanSchoolRadioTextTap()"><?php _e('By', 'ersradio') ?> European School Radio</p>54 <script>55 function onByEuropeanSchoolRadioTextTap(){56 window.open("https://europeanschoolradio.eu/", "_blank")57 }58 </script>59 53 </div> 60 54 <?php -
european-school-radio-widget/trunk/readme.txt
r3053652 r3057036 6 6 Requires at least: 5.3 7 7 Tested up to: 6.4.3 8 Stable tag: 2. 28 Stable tag: 2.3.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.