Server IP : 172.67.216.182 / Your IP : 108.162.226.159 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/resolue.in/boat/wp-content/plugins/one-click-demo-import/inc/ |
Upload File : |
<?php /** * Static functions used in the OCDI plugin views. * * @package ocdi */ namespace OCDI; class ViewHelpers { /** * The HTML output of the plugin page header. * * @return string HTML output. */ public static function plugin_header_output() { ob_start(); ?> <div class="ocdi__title-container"> <h1 class="ocdi__title-container-title"><?php esc_html_e( 'One Click Demo Import', 'one-click-demo-import' ); ?></h1> <a href="https://ocdi.com/user-guide/" target="_blank" rel="noopener noreferrer"> <img class="ocdi__title-container-icon" src="<?php echo esc_url( OCDI_URL . 'assets/images/icons/question-circle.svg' ); ?>" alt="<?php esc_attr_e( 'Questionmark icon', 'one-click-demo-import' ); ?>"> </a> </div> <?php $plugin_title = ob_get_clean(); // Display the plugin title (can be replaced with custom title text through the filter below). return Helpers::apply_filters( 'ocdi/plugin_page_title', $plugin_title ); } /** * The HTML output of a small card with theme screenshot and title. * * @return string HTML output. */ public static function small_theme_card( $selected = null ) { $theme = wp_get_theme(); $screenshot = $theme->get_screenshot(); $name = $theme->name; if ( isset( $selected ) ) { $ocdi = OneClickDemoImport::get_instance(); $selected_data = $ocdi->import_files[ $selected ]; $name = ! empty( $selected_data['import_file_name'] ) ? $selected_data['import_file_name'] : $name; $screenshot = ! empty( $selected_data['import_preview_image_url'] ) ? $selected_data['import_preview_image_url'] : $screenshot; } ob_start(); ?> <div class="ocdi__card ocdi__card--theme"> <div class="ocdi__card-content"> <?php if ( $screenshot ) : ?> <div class="screenshot"><img src="<?php echo esc_url( $screenshot ); ?>" alt="<?php esc_attr_e( 'Theme screenshot', 'one-click-demo-import' ); ?>" /></div> <?php else : ?> <div class="screenshot blank"></div> <?php endif; ?> </div> <div class="ocdi__card-footer"> <h3><?php echo esc_html( $name ); ?></h3> </div> </div> <?php return ob_get_clean(); } }