about-widget.php
5 months ago
accordion-widget.php
1 month ago
accordion.php
5 months ago
attachment-url.php
5 months ago
audio.php
5 months ago
before-after.php
5 months ago
button.php
5 months ago
code.php
5 months ago
contact-box.php
5 months ago
contact-form.php
5 months ago
custom-list.php
5 months ago
divider.php
5 months ago
dropcap.php
5 months ago
facebook.php
5 months ago
flickr.php
5 months ago
gallery.php
5 months ago
gmap.php
5 months ago
highlight.php
5 months ago
image.php
5 months ago
instagram-feed.php
5 months ago
latest-posts-slider.php
5 months ago
popular-posts-widget.php
5 months ago
products-grid.php
5 months ago
quote.php
5 months ago
recent-posts-grid-carousel.php
5 months ago
recent-posts-land-style.php
5 months ago
recent-posts-masonry.php
5 months ago
recent-posts-tiles-carousel.php
5 months ago
recent-posts-tiles.php
5 months ago
recent-posts-timeline.php
5 months ago
recent-posts-widget.php
5 months ago
recent-products.php
5 months ago
related-posts.php
8 years ago
sample-element.php
5 months ago
search.php
5 months ago
socials-list.php
5 months ago
staff.php
5 months ago
tab-widget.php
5 months ago
tabs.php
5 months ago
testimonial.php
5 months ago
text.php
5 months ago
touch-slider.php
5 months ago
video.php
5 months ago
audio.php
205 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Audio player element |
| 4 | * |
| 5 | * |
| 6 | * @package Auxin |
| 7 | * @license LICENSE.txt |
| 8 | * @author averta |
| 9 | * @link http://phlox.pro/ |
| 10 | * @copyright (c) 2010-2026 averta |
| 11 | */ |
| 12 | function auxin_get_audio_master_array( $master_array ) { |
| 13 | |
| 14 | $master_array['aux_audio'] = array( |
| 15 | 'name' => __("Audio", 'auxin-elements' ), |
| 16 | 'auxin_output_callback' => 'auxin_widget_audio_callback', |
| 17 | 'base' => 'aux_audio', |
| 18 | 'description' => __('Audio player', 'auxin-elements' ), |
| 19 | 'description' => __('It adds an audio player element.', 'auxin-elements'), |
| 20 | 'class' => 'aux-widget-audio', |
| 21 | 'show_settings_on_create' => true, |
| 22 | 'weight' => 1, |
| 23 | 'is_widget' => true, |
| 24 | 'is_shortcode' => true, |
| 25 | 'category' => THEME_NAME, |
| 26 | 'group' => '', |
| 27 | 'admin_enqueue_js' => '', |
| 28 | 'admin_enqueue_css' => '', |
| 29 | 'front_enqueue_js' => '', |
| 30 | 'front_enqueue_css' => '', |
| 31 | 'icon' => 'aux-element aux-pb-icons-sound-cloud', |
| 32 | 'custom_markup' => '', |
| 33 | 'js_view' => '', |
| 34 | 'html_template' => '', |
| 35 | 'deprecated' => '', |
| 36 | 'content_element' => '', |
| 37 | 'as_parent' => '', |
| 38 | 'as_child' => '', |
| 39 | 'params' => array( |
| 40 | array( |
| 41 | 'heading' => __('Title','auxin-elements' ), |
| 42 | 'description' => __('Audio title, leave it empty if you don`t need title.', 'auxin-elements'), |
| 43 | 'param_name' => 'title', |
| 44 | 'type' => 'textfield', |
| 45 | 'value' => '', |
| 46 | 'holder' => 'textfield', |
| 47 | 'class' => 'title', |
| 48 | 'admin_label' => false, |
| 49 | 'dependency' => '', |
| 50 | 'weight' => '', |
| 51 | 'group' => '' , |
| 52 | 'edit_field_class' => '' |
| 53 | ), |
| 54 | array( |
| 55 | 'heading' => __('Audio file(MP3 or ogg)','auxin-elements' ), |
| 56 | 'description' => '', |
| 57 | 'param_name' => 'src', |
| 58 | 'type' => 'aux_select_audio', |
| 59 | 'value' => '', |
| 60 | 'holder' => '', |
| 61 | 'class' => 'audio_src', |
| 62 | 'admin_label' => false, |
| 63 | 'dependency' => '', |
| 64 | 'weight' => '', |
| 65 | 'group' => '' , |
| 66 | 'edit_field_class' => '' |
| 67 | ), |
| 68 | array( |
| 69 | 'heading' => __('Repeat the audio','auxin-elements' ), |
| 70 | 'description' => '', |
| 71 | 'param_name' => 'loop', |
| 72 | 'type' => 'aux_switch', |
| 73 | 'value' => '1', |
| 74 | 'class' => '', |
| 75 | 'admin_label' => false, |
| 76 | 'dependency' => '', |
| 77 | 'weight' => '', |
| 78 | 'group' => '', |
| 79 | 'edit_field_class' => '' |
| 80 | ), |
| 81 | array( |
| 82 | 'heading' => __('AutoPlay','auxin-elements' ), |
| 83 | 'description' => __('Play the audio file automatically.','auxin-elements' ), |
| 84 | 'param_name' => 'autoplay', |
| 85 | 'type' => 'aux_switch', |
| 86 | 'value' => '0', |
| 87 | 'class' => '', |
| 88 | 'admin_label' => false, |
| 89 | 'dependency' => '', |
| 90 | 'weight' => '', |
| 91 | 'group' => '', |
| 92 | 'edit_field_class' => '' |
| 93 | ), |
| 94 | array( |
| 95 | 'heading' => __('Skin','auxin-elements' ), |
| 96 | 'description' => __('The skin of audio element.','auxin-elements' ), |
| 97 | 'param_name' => 'skin', |
| 98 | 'type' => 'aux_visual_select', |
| 99 | 'def_value' => 'dark', |
| 100 | 'choices' => array( |
| 101 | 'default' => array( |
| 102 | 'label' => __('Theme Default', 'auxin-elements'), |
| 103 | 'image' => AUXIN_URL . 'images/visual-select/default2.svg' |
| 104 | ), |
| 105 | 'dark' => array( |
| 106 | 'label' => __('Dark', 'auxin-elements'), |
| 107 | 'image' => AUXIN_URL . 'images/visual-select/audio-player-dark.svg' |
| 108 | ), |
| 109 | 'light' => array( |
| 110 | 'label' => __('Light', 'auxin-elements'), |
| 111 | 'image' => AUXIN_URL . 'images/visual-select/audio-player-light.svg' |
| 112 | ) |
| 113 | ), |
| 114 | 'holder' => '', |
| 115 | 'class' => 'skin', |
| 116 | 'admin_label' => true, |
| 117 | 'dependency' => '', |
| 118 | 'weight' => '', |
| 119 | 'group' => __('Appearance', 'auxin-elements'), |
| 120 | 'edit_field_class' => '' |
| 121 | ), |
| 122 | array( |
| 123 | 'heading' => __('Extra class name','auxin-elements' ), |
| 124 | 'description' => __('If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.', 'auxin-elements' ), |
| 125 | 'param_name' => 'extra_classes', |
| 126 | 'type' => 'textfield', |
| 127 | 'value' => '', |
| 128 | 'def_value' => '', |
| 129 | 'holder' => '', |
| 130 | 'class' => 'extra_classes', |
| 131 | 'admin_label' => false, |
| 132 | 'dependency' => '', |
| 133 | 'weight' => '', |
| 134 | 'group' => __('Appearance', 'auxin-elements'), |
| 135 | 'edit_field_class' => '' |
| 136 | ) |
| 137 | ) |
| 138 | ); |
| 139 | |
| 140 | return $master_array; |
| 141 | } |
| 142 | |
| 143 | add_filter( 'auxin_master_array_shortcodes', 'auxin_get_audio_master_array', 10, 1 ); |
| 144 | |
| 145 | |
| 146 | /** |
| 147 | * This is the widget callback in fact the front end out put of this widget comes from this function |
| 148 | */ |
| 149 | function auxin_widget_audio_callback( $atts, $shortcode_content = null ){ |
| 150 | |
| 151 | // Defining default attributes |
| 152 | $default_atts = array( |
| 153 | 'title' => '', // section title |
| 154 | 'src' => '', |
| 155 | 'loop' => '1', |
| 156 | 'autoplay' => '0', |
| 157 | 'preload' => '', |
| 158 | 'skin' => '', // dark or light |
| 159 | |
| 160 | 'extra_classes' => '', // custom css class names for this element |
| 161 | 'custom_el_id' => '', // custom id attribute for this element |
| 162 | 'base_class' => 'aux-widget-audio' // base class name for container |
| 163 | ); |
| 164 | |
| 165 | $result = auxin_get_widget_scafold( $atts, $default_atts, $shortcode_content ); |
| 166 | extract( $result['parsed_atts'] ); |
| 167 | |
| 168 | ob_start(); |
| 169 | |
| 170 | // widget header ------------------------------ |
| 171 | echo wp_kses_post( $result['widget_header'] ); |
| 172 | echo wp_kses_post( $result['widget_title'] ); |
| 173 | |
| 174 | $skin = 'default' === $skin ? auxin_get_option( 'global_audio_player_skin', 'dark' ) : $skin; |
| 175 | |
| 176 | $class = 'wp-audio-shortcode aux-player-' . esc_attr( $skin ); |
| 177 | |
| 178 | // convert attachment id to url |
| 179 | if( is_numeric( $src ) ){ |
| 180 | $src = wp_get_attachment_url( $src ); |
| 181 | } |
| 182 | |
| 183 | if( $provider = auxin_extract_embed_provider_name( $src ) ){ |
| 184 | $class .= ' aux-provider-'. $provider; |
| 185 | } |
| 186 | |
| 187 | $autoplay = auxin_is_true( $autoplay ) ? "1": "0"; |
| 188 | $loop = auxin_is_true( $loop ) ? "1": "0"; |
| 189 | |
| 190 | echo wp_audio_shortcode( |
| 191 | array( |
| 192 | 'src' => $src, |
| 193 | 'loop' => $loop, |
| 194 | 'autoplay' => $autoplay, |
| 195 | 'preload' => $preload, |
| 196 | 'class' => $class |
| 197 | ) |
| 198 | ); |
| 199 | |
| 200 | // widget footer ------------------------------ |
| 201 | echo wp_kses_post( $result['widget_footer'] ); |
| 202 | |
| 203 | return ob_get_clean(); |
| 204 | } |
| 205 |