Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicartists.events.overlookedtracks.com
/
wp-content
/
themes
/
muzicon
/
skins
/
default
/
Editing: skin-demo-importer.php
<?php /** * Skin Demo importer * * @package MUZICON * @since MUZICON 1.76.0 */ // Theme storage //------------------------------------------------------------------------- muzicon_storage_set( 'theme_demo_url', '//muzicon.themerex.net' ); //------------------------------------------------------------------------ // One-click import support //------------------------------------------------------------------------ // Set theme specific importer options if ( ! function_exists( 'muzicon_skin_importer_set_options' ) ) { add_filter( 'trx_addons_filter_importer_options', 'muzicon_skin_importer_set_options', 9 ); function muzicon_skin_importer_set_options( $options = array() ) { if ( is_array( $options ) ) { $demo_type = function_exists( 'muzicon_skins_get_current_skin_name' ) ? muzicon_skins_get_current_skin_name() : 'default'; if ( 'default' != $demo_type ) { $options['demo_type'] = $demo_type; $options['files'][ $demo_type ] = $options['files']['default']; unset($options['files']['default']); } $options['files'][ $demo_type ]['title'] = esc_html__( 'Muzicon Demo', 'muzicon' ); $options['files'][ $demo_type ]['domain_dev'] = ''; // Developers domain $options['files'][ $demo_type ]['domain_demo'] = muzicon_storage_get( 'theme_demo_url' ); // Demo-site domain if ( substr( $options['files'][ $demo_type ]['domain_demo'], 0, 2 ) === '//' ) { $options['files'][ $demo_type ]['domain_demo'] = muzicon_get_protocol() . ':' . $options['files'][ $demo_type ]['domain_demo']; } } return $options; } } //------------------------------------------------------------------------ // OCDI support //------------------------------------------------------------------------ // Set theme specific OCDI options if ( ! function_exists( 'muzicon_skin_ocdi_set_options' ) ) { add_filter( 'trx_addons_filter_ocdi_options', 'muzicon_skin_ocdi_set_options', 9 ); function muzicon_skin_ocdi_set_options( $options = array() ) { if ( is_array( $options ) ) { // Demo-site domain $options['files']['ocdi']['title'] = esc_html__( 'Muzicon OCDI Demo', 'muzicon' ); $options['files']['ocdi']['domain_demo'] = muzicon_storage_get( 'theme_demo_url' ); if ( substr( $options['files']['ocdi']['domain_demo'], 0, 2 ) === '//' ) { $options['files']['ocdi']['domain_demo'] = muzicon_get_protocol() . ':' . $options['files']['ocdi']['domain_demo']; } // If theme need more demo - just copy 'default' and change required parameters } return $options; } }
Save
Cancel