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