Файловый менеджер - Редактировать - /home2/cocinasdalloway/constructorasmn.com/wp-content/plugins/catch-gallery/inc/functions.php
Назад
<?php /** * Renders extra controls in the Gallery Settings section of the new media UI. */ if ( ! class_exists( 'Catch_Gallery_Settings' ) ) : class Catch_Gallery_Settings { function __construct() { add_action( 'admin_init', array( $this, 'admin_init' ) ); add_filter( 'plugin_row_meta', array( $this, 'add_plugin_meta_links' ), 10, 2); } function admin_init() { /** * Filter the available gallery types. * * @module shortcodes, tiled-gallery * * @since 2.5.1 * * @param array $value Array of the default thumbnail grid gallery type. Default array contains one key, ‘default’. * */ $this->gallery_types = apply_filters( 'jetpack_gallery_types', array( 'default' => __( 'Thumbnail Grid', 'jetpack' ) ) ); // Enqueue the media UI only if needed. if ( count( $this->gallery_types ) > 1 ) { add_action( 'wp_enqueue_media', array( $this, 'wp_enqueue_media' ) ); add_action( 'print_media_templates', array( $this, 'print_media_templates' ) ); } // Add Slideshow and Galleries functionality to core's media gallery widget. add_filter( 'widget_media_gallery_instance_schema', array( $this, 'core_media_widget_compat' ) ); } function add_plugin_meta_links( $meta_fields, $file ){ if( CATCH_GALLERY_BASENAME == $file ) { $meta_fields[] = "<a href='https://catchplugins.com/support-forum/forum/catch-gallery/' target='_blank'>Support Forum</a>"; $meta_fields[] = "<a href='https://wordpress.org/support/plugin/catch-gallery/reviews#new-post' target='_blank' title='Rate'> <i class='ct-rate-stars'>" . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>" . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>" . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>" . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>" . "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>" . "</i></a>"; $stars_color = "#ffb900"; echo "<style>" . ".ct-rate-stars{display:inline-block;color:" . $stars_color . ";position:relative;top:3px;}" . ".ct-rate-stars svg{fill:" . $stars_color . ";}" . ".ct-rate-stars svg:hover{fill:" . $stars_color . "}" . ".ct-rate-stars svg:hover ~ svg{fill:none;}" . "</style>"; } return $meta_fields; } /** * Updates the schema of the core gallery widget so we can save the * fields that we add to Gallery Widgets, like `type` and `conditions` * * @param $schema The current schema for the core gallery widget * * @return array the updated schema */ public function core_media_widget_compat( $schema ) { $schema['type'] = array( 'type' => 'string', 'enum' => array_keys( $this->gallery_types ), 'description' => __( 'Type of gallery.', 'jetpack' ), 'default' => 'default', ); return $schema; } /** * Registers/enqueues the gallery settings admin js. */ function wp_enqueue_media() { if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) { /** * This only happens if we're not in Jetpack, but on WPCOM instead. * This is the correct path for WPCOM. */ wp_register_script( 'jetpack-gallery-settings', plugin_dir_url( __FILE__ ) . '../js/gallery-settings.js', array( 'media-views' ), '20180514' ); } wp_enqueue_script( 'jetpack-gallery-settings' ); } /** * Outputs a view template which can be used with wp.media.template */ function print_media_templates() { $default_gallery_type = apply_filters( 'jetpack_default_gallery_type', 'default' ); ?> <script type="text/html" id="tmpl-jetpack-gallery-settings"> <label class="setting"> <span><?php esc_html_e( 'Type', 'catch-gallery' ); ?></span> <select class="type" name="type" data-setting="type"> <?php foreach ( $this->gallery_types as $value => $caption ) : ?> <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, $default_gallery_type ); ?>><?php echo esc_html( $caption ); ?></option> <?php endforeach; ?> </select> </label> </script> <?php } } endif; new Catch_Gallery_Settings; if ( ! function_exists( 'catch_gallery_default_options' ) ) : /** * Return array of default options * * @since 1.0 * @return array default options. */ function catch_gallery_default_options( $option = null ) { $default_options['carousel_enable'] = 1; $default_options['carousel_background_color'] = 'black'; $default_options['carousel_display_exif'] = 1; $default_options['comments_display'] = 1; $default_options['fullsize_display'] = 1; if ( null == $option ) { return apply_filters( 'catch_gallery_options', $default_options ); } else { return $default_options[ $option ]; } } endif; // catch_gallery_default_options if ( ! function_exists( 'catch_gallery_get_options' ) ) : /** * Returns saved options * @return array options */ function catch_gallery_get_options() { $defaults = catch_gallery_default_options(); $options = get_option( 'catch_gallery_options', $defaults ); return $options; } endif; // catch_gallery_get_options
| ver. 1.4 |
Github
|
.
| PHP 8.2.22 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка