![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/foogallery/includes/admin/ |
<?php $instance = FooGallery_Plugin::get_instance(); $api = new FooGallery_Extensions_API(); $extensions = $api->get_all_for_view(); $has_errors = false; $show_message = safe_get_from_request( 'show_message' ); if ( 'yes' === $show_message ) { $result = get_transient( FOOGALLERY_EXTENSIONS_MESSAGE_TRANSIENT_KEY ); if ( $result === false ) { $result = null; } } $tagline = apply_filters( 'foogallery_admin_extensions_tagline', sprintf( __( 'Enable additional features to make %s even more awesome!', 'foogallery' ), foogallery_plugin_name() ) ); ?> <style> .foogallery-text { font-size: 18px; margin: 10px 0; } </style> <div class="wrap foogallery-extensions"> <h2><?php printf( __( '%s Features', 'foogallery' ), foogallery_plugin_name() ); ?><span class="spinner"></span></h2> <div class="foogallery-text"><?php echo $tagline; ?></div> <?php if ( isset( $result ) ) { ?> <div class="foogallery-message-<?php echo $result['type']; ?>"> <p><?php echo $result['message']; ?></p> </div> <?php } ?> <hr /> </div> <div class="foogallery-extension-browser"> <div class="extensions"> <?php foreach ( $extensions as $extension ) { $slug = $extension['slug']; $classes = array('extension', 'all', 'extension-' . $slug); $downloaded = isset( $extension['downloaded'] ) && true === $extension['downloaded']; $is_active = isset( $extension['is_active'] ) && true === $extension['is_active']; $has_errors = isset( $extension['has_errors'] ) && true === $extension['has_errors']; $banner_text = ''; $tag_html = ''; if ( isset( $extension['tags'] ) ) { foreach ( $extension['tags'] as $tag ) { $classes[] = $tag; $tag_html .= '<span class="tag ' . $tag . '">'. $tag . '</span>'; } } foreach ( $extension['categories'] as $category ) { $classes[] = foo_convert_to_key( $category ); } if ( isset( $extension['css_class'] ) ) { $classes[] = $extension['css_class']; } $thumbnail = $extension['thumbnail']; if ( foo_starts_with( $thumbnail, '/') ) { $thumbnail = rtrim( FOOGALLERY_URL, '/' ) . $thumbnail; } $base_url = add_query_arg( 'extension', $slug ); $download_url = add_query_arg( 'action', 'download', $base_url ); $activate_url = add_query_arg( 'action', 'activate', $base_url ); $deactivate_url = add_query_arg( 'action', 'deactivate', $base_url ); $download_button_html = ''; //check if we want to override the download button if ( isset( $extension['download_button'] ) ) { $download_button = $extension['download_button']; $download_button_href = esc_url( isset( $download_button['href'] ) ? $download_button['href'] : $download_url ); $download_button_target = isset( $download_button['target'] ) ? ' target="' . $download_button['target'] . '" ' : ''; $download_button_text = isset( $download_button['text'] ) ? __( $download_button['text'], 'foogallery' ) : ''; $download_button_banner_text = ' data-banner-text="' . (isset( $download_button['banner-text'] ) ? $download_button['banner-text'] : __( 'downloading...', 'foogallery')) . '"'; $download_button_confirm = isset( $download_button['confirm'] ) ? ' data-confirm="' .$download_button['confirm'] . '" ' : ''; $download_button_html = "<a class=\"ext_action button button-primary download\" {$download_button_banner_text} {$download_button_target} href=\"{$download_button_href}\" >{$download_button_text}</a>"; } //build up a freemius buy button if ( isset( $extension['freemius_button'] ) ) { $downloaded = $is_active = false; $freemius_button = $extension['freemius_button']; $freemius_button_text = isset( $freemius_button['text'] ) ? __( $freemius_button['text'], 'foogallery' ) : ''; $plugin_id = esc_attr( $freemius_button['plugin_id'] ); $pricing_id = esc_attr( $freemius_button['pricing_id'] ); $href = foogallery_fs()->addon_checkout_url( $plugin_id, $pricing_id ); $download_button_html = "<a class=\"ext_action button button-primary download\" href=\"{$href}\" >{$freemius_button_text}</a>"; } if ( $downloaded ) { $classes[] = 'downloaded'; } else { $classes[] = 'download'; } if ( $downloaded && $is_active ) { $classes[] = 'activated'; $banner_text = __( 'Activated', 'foogallery' ); } if ( $has_errors ) { $classes[] = 'has_error'; $banner_text = $api->get_error_message( $slug ); } ?> <div class="<?php echo implode(' ', $classes); ?>"> <div class="screenshot" style="background: url(<?php echo $thumbnail; ?>) no-repeat"></div> <div class="extension-details"> <p class="search-me"><?php echo $extension['description']; ?></p> <a target="_blank" href="<?php echo esc_url( $extension['author_url'] ); ?>">By <?php echo $extension['author']; ?></a> </div> <h3 class="search-me"><?php echo $extension['title'] . $tag_html; ?></h3> <div class="extension-actions"> <?php if ( ! empty( $download_button_html ) ) { echo $download_button_html; } else { ?> <a class="ext_action button button-primary download" data-banner-text="<?php _e( 'downloading...', 'foogallery'); ?>" data-confirm="<?php _e( 'Are you sure you want to download this extension?', 'foogallery' ); ?>" href="<?php echo esc_url( $download_url ); ?>"><?php _e( 'Download', 'foogallery' ); ?></a> <?php } ?> <a class="ext_action button button-primary activate" data-banner-text="<?php _e( 'activating...', 'foogallery'); ?>" href="<?php echo esc_url( $activate_url ); ?>"><?php _e( 'Activate', 'foogallery' ); ?></a> <a class="ext_action button button-secondary deactivate" data-banner-text="<?php _e( 'deactivating...', 'foogallery'); ?>" href="<?php echo esc_url( $deactivate_url ); ?>"><?php _e( 'Deactivate', 'foogallery' ); ?></a> </div> <div class="banner"><?php echo $banner_text; ?></div> </div> <?php } ?> </div> </div>