uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
old
/
.trash
/
wp-content
/
plugins
/
add-search-to-menu
/
admin
/
class-is-help.php
/
/
<?php class IS_Help { private $screen; public function __construct( WP_Screen $screen ) { $this->screen = $screen; } public function set_help_tabs( $type ) { switch ( $type ) { case 'list': $this->screen->add_help_tab( array( 'id' => 'list_overview', 'title' => __( 'Overview', 'add-search-to-menu' ), 'content' => $this->content( 'list_overview' ) ) ); $this->screen->add_help_tab( array( 'id' => 'list_available_actions', 'title' => __( 'Available Actions', 'add-search-to-menu' ), 'content' => $this->content( 'list_available_actions' ) ) ); $this->sidebar(); return; case 'edit': $this->screen->add_help_tab( array( 'id' => 'edit_overview', 'title' => __( 'Overview', 'add-search-to-menu' ), 'content' => $this->content( 'edit_overview' ) ) ); $this->screen->add_help_tab( array( 'id' => 'includes', 'title' => __( 'Includes', 'add-search-to-menu' ), 'content' => $this->content( 'includes' ) ) ); $this->screen->add_help_tab( array( 'id' => 'excludes', 'title' => __( 'Excludes', 'add-search-to-menu' ), 'content' => $this->content( 'excludes' ) ) ); $this->screen->add_help_tab( array( 'id' => 'edit_settings', 'title' => __( 'Options', 'add-search-to-menu' ), 'content' => $this->content( 'edit_settings' ) ) ); $this->sidebar(); return; case 'settings': $this->screen->add_help_tab( array( 'id' => 'settings_overview', 'title' => __( 'Overview', 'add-search-to-menu' ), 'content' => $this->content( 'settings_overview' ) ) ); $this->screen->add_help_tab( array( 'id' => 'search_to_menu', 'title' => __( 'Menu Search', 'add-search-to-menu' ), 'content' => $this->content( 'search_to_menu' ) ) ); $this->screen->add_help_tab( array( 'id' => 'settings', 'title' => __( 'Settings', 'add-search-to-menu' ), 'content' => $this->content( 'settings' ) ) ); $this->sidebar(); return; } } private function content( $name ) { $content = array(); $content['list_overview'] = '<p>' . __( "On this screen, you can manage search forms provided by Ivory Search plugin. You can create and manage an unlimited number of search forms. Each search form has a unique ID and search form shortcode ([ivory-search ...]). To insert a search form into a post or a text widget, insert the shortcode into the target.", 'add-search-to-menu' ) . '</p>'; $content['list_available_actions'] = '<p>' . __( "Hovering over a row in the search forms list will display action links that allow you to manage your search form. You can perform the following actions:", 'add-search-to-menu' ) . '</p>'; $content['list_available_actions'] .= '<p>' . sprintf( '<strong>%1$s</strong> - %2$s', __( 'Edit', 'add-search-to-menu' ), __( 'Navigates to the editing screen for that search form. You can also reach that screen by clicking on the search form title.', 'add-search-to-menu' ) ) . '</p>'; $content['list_available_actions'] .= '<p>' . sprintf( '<strong>%1$s</strong> - %2$s', __( 'Duplicate', 'add-search-to-menu' ), __( 'Clones that search form. A cloned search form inherits all content from the original, but has a different ID.', 'add-search-to-menu' ) ) . '</p>'; $content['list_available_actions'] .= '<p>' . sprintf( '<strong>%1$s</strong> - %2$s', __( 'Delete', 'add-search-to-menu' ), __( 'Deletes the search form. The search form gets deleted permanently and its shortcode becomes void so you have to remove the shortcode if you have used it anywhere.', 'add-search-to-menu' ) ) . '</p>'; $content['edit_overview'] = '<p>' . __( "On this screen, you can edit a search form. A search form is comprised of the following components:", 'add-search-to-menu' ) . '</p>'; $content['edit_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Title', 'add-search-to-menu' ), __( 'is the title of a search form. This title is only used for labeling a search form, and can be edited.', 'add-search-to-menu' ) ) . '</p>'; $content['edit_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Includes', 'add-search-to-menu' ), __( 'provides options to control which content on the site is searchable.', 'add-search-to-menu' ) ) . '</p>'; $content['edit_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Excludes', 'add-search-to-menu' ), __( 'provides options to exclude specific content from the search on the site.', 'add-search-to-menu' ) ) . '</p>'; $content['edit_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Options', 'add-search-to-menu' ), __( 'provides a place where you can customize overall behavior of this search form.', 'add-search-to-menu' ) ) . '</p>'; $content['includes'] = '<p>' . __( "Control here which content you want to make searchable using this search form.", 'add-search-to-menu' ) . '</p>'; $content['excludes'] = '<p>' . __( "Configure the options here to exclude specific content from search perfomed using this search form.", 'add-search-to-menu' ) . '</p>'; $content['edit_settings'] = '<p>' . __( "Control here the overall behaviour of this search form.", 'add-search-to-menu' ) . '</p>'; $content['settings_overview'] = '<p>' . __( "On this screen, you can manage search added in the site navgation menu and configure settings that will affect all search forms and search functionality on the site. The settings screen comprised of the following sections:", 'add-search-to-menu' ) . '</p>'; $content['settings_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Menu Search', 'add-search-to-menu' ), __( 'provides a place where you can customize the behavior of search form added in the site navgation menu.', 'add-search-to-menu' ) ) . '</p>'; $content['settings_overview'] .= '<p>' . sprintf( '<strong>%1$s</strong> %2$s', __( 'Settings', 'add-search-to-menu' ), __( 'provides options to configure sitewide search functionality.', 'add-search-to-menu' ) ) . '</p>'; $content['search_to_menu'] = '<p>' . __( "Cofigure the options in this section to manage search added in the site navigation menu.", 'add-search-to-menu' ) . '</p>'; $content['settings'] = '<p>' . __( "Configure options in this section to manage sitewide search functionality.", 'add-search-to-menu' ) . '</p>'; if ( ! empty( $content[$name] ) ) { return $content[$name]; } } public function sidebar() { $content = '<p><strong>' . __( 'For more information:', 'add-search-to-menu' ) . '</strong></p>'; $content .= '<p><a href="https://ivorysearch.com/documentation/" target="_blank">' . __( 'Docs', 'add-search-to-menu' ) . '</a></p>'; $content .= '<p><a href="https://ivorysearch.com/support/" target="_blank">' . __( 'Support', 'add-search-to-menu' ) . '</a></p>'; $content .= '<p><a href="https://wordpress.org/support/plugin/add-search-to-menu/reviews/?filter=5#new-post" target="_blank">' . __( 'Give us a rating', 'add-search-to-menu' ) . '</a></p>'; $this->screen->set_help_sidebar( $content ); } public static function help_info( $content ) { ?> <span class="is-help"> <span class="is-info"> <?php echo $content; ?> </span> </span> <?php } public static function is_woocommerce_inactive() { if ( class_exists( 'WooCommerce' ) ) { return false; } return true; } public static function woocommerce_inactive_field_notice( $echo = true ) { $woo_url = '<a href="'.admin_url('plugins.php').'" target="_blank">'.__( "WooCommerce", 'add-search-to-menu' ).'</a>'; $message = sprintf( __( 'Activate %s plugin to use this option.', 'add-search-to-menu' ), $woo_url ); if( $echo ) { echo '<span class="notice-is-info"> ' . $message . '</span>'; } else { return '<span class="notice-is-info">' . $message . '</span>'; } } }
/home/batcwwjx/./old/.trash/wp-content/plugins/add-search-to-menu/admin/class-is-help.php