uawdijnntqw1x1x1
IP : 216.73.216.23
Hostname : web17.us.cloudlogin.co
Kernel : Linux web17.us.cloudlogin.co 5.10.238-xeon-hst #1 SMP Thu Jun 5 12:15:42 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
www
/
hallgroupsolutions.com
/
wp-content
/
plugins
/
breadcrumbs
/
.
/
yst_plugin_tools.php
/
/
<?php /** * Backend Class for use in all Yoast plugins * Version 0.2 */ if (!class_exists('Yoast_Plugin_Admin')) { class Yoast_Plugin_Admin { var $hook = ''; var $filename = ''; var $longname = ''; var $shortname = ''; var $ozhicon = ''; var $optionname = ''; var $homepage = ''; var $accesslvl = 'manage_options'; function Yoast_Plugin_Admin() { add_action( 'admin_menu', array(&$this, 'register_settings_page') ); add_filter( 'plugin_action_links', array(&$this, 'add_action_link'), 10, 2 ); add_filter( 'ozh_adminmenu_icon', array(&$this, 'add_ozh_adminmenu_icon' ) ); add_action('admin_print_scripts', array(&$this,'config_page_scripts')); add_action('admin_print_styles', array(&$this,'config_page_styles')); add_action('wp_dashboard_setup', array(&$this,'widget_setup')); } function add_ozh_adminmenu_icon( $hook ) { if ($hook == $this->hook) return WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname($filename)). '/'.$this->ozhicon; return $hook; } function config_page_styles() { if (isset($_GET['page']) && $_GET['page'] == $this->hook) { wp_enqueue_style('dashboard'); wp_enqueue_style('thickbox'); wp_enqueue_style('global'); wp_enqueue_style('wp-admin'); wp_enqueue_style('blogicons-admin-css', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)). '/yst_plugin_tools.css'); } } function register_settings_page() { add_options_page($this->longname, $this->shortname, $this->accesslvl, $this->hook, array(&$this,'config_page')); } function plugin_options_url() { return admin_url( 'options-general.php?page='.$this->hook ); } /** * Add a link to the settings page to the plugins list */ function add_action_link( $links, $file ) { static $this_plugin; if( empty($this_plugin) ) $this_plugin = $this->filename; if ( $file == $this_plugin ) { $settings_link = '<a href="' . $this->plugin_options_url() . '">' . __('Settings') . '</a>'; array_unshift( $links, $settings_link ); } return $links; } function config_page() { } function config_page_scripts() { if (isset($_GET['page']) && $_GET['page'] == $this->hook) { wp_enqueue_script('postbox'); wp_enqueue_script('dashboard'); wp_enqueue_script('thickbox'); wp_enqueue_script('media-upload'); } } /** * Create a Checkbox input field */ function checkbox($id, $label) { $options = get_option($this->optionname); return '<input type="checkbox" id="'.$id.'" name="'.$id.'"'. checked($options[$id],true,false).'/> <label for="'.$id.'">'.$label.'</label><br/>'; } /** * Create a Text input field */ function textinput($id, $label) { $options = get_option($this->optionname); return '<label for="'.$id.'">'.$label.':</label><br/><input size="45" type="text" id="'.$id.'" name="'.$id.'" value="'.$options[$id].'"/><br/><br/>'; } /** * Create a potbox widget */ function postbox($id, $title, $content) { ?> <div id="<?php echo $id; ?>" class="postbox"> <div class="handlediv" title="Click to toggle"><br /></div> <h3 class="hndle"><span><?php echo $title; ?></span></h3> <div class="inside"> <?php echo $content; ?> </div> </div> <?php } /** * Create a form table from an array of rows */ function form_table($rows) { $content = '<table class="form-table">'; foreach ($rows as $row) { $content .= '<tr><th valign="top" scrope="row">'; if (isset($row['id']) && $row['id'] != '') $content .= '<label for="'.$row['id'].'">'.$row['label'].':</label>'; else $content .= $row['label']; if (isset($row['desc']) && $row['desc'] != '') $content .= '<br/><small>'.$row['desc'].'</small>'; $content .= '</th><td valign="top">'; $content .= $row['content']; $content .= '</td></tr>'; } $content .= '</table>'; return $content; } /** * Create a "plugin like" box. */ function plugin_like() { $content = '<p>'.__('Why not do any or all of the following:','ystplugin').'</p>'; $content .= '<ul>'; $content .= '<li><a href="'.$this->homepage.'">'.__('Link to it so other folks can find out about it.','ystplugin').'</a></li>'; $content .= '<li><a href="http://wordpress.org/extend/plugins/'.$this->hook.'/">'.__('Give it a good rating on WordPress.org.','ystplugin').'</a></li>'; $content .= '<li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2017947">'.__('Donate a token of your appreciation.','ystplugin').'</a></li>'; $content .= '</ul>'; $this->postbox($this->hook.'like', 'Like this plugin?', $content); } /** * Info box with link to the support forums. */ function plugin_support() { $content = '<p>'.__('If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the','ystplugin').' <a href="http://wordpress.org/tags/'.$this->hook.'">'.__("Support forums",'ystplugin').'</a>.</p>'; $this->postbox($this->hook.'support', 'Need support?', $content); } /** * Box with latest news from Yoast.com */ function news() { require_once(ABSPATH.WPINC.'/rss.php'); if ( $rss = fetch_rss( 'http://feeds2.feedburner.com/joostdevalk' ) ) { $content = '<ul>'; $rss->items = array_slice( $rss->items, 0, 3 ); foreach ( (array) $rss->items as $item ) { $content .= '<li class="yoast">'; $content .= '<a class="rsswidget" href="'.clean_url( $item['link'], $protocolls=null, 'display' ).'">'. htmlentities($item['title']) .'</a> '; $content .= '</li>'; } $content .= '<li class="rss"><a href="http://yoast.com/feed/">Subscribe with RSS</a></li>'; $content .= '<li class="email"><a href="http://yoast.com/email-blog-updates/">Subscribe by email</a></li>'; $this->postbox('yoastlatest', 'Latest news from Yoast', $content); } else { $this->postbox('yoastlatest', 'Latest news from Yoast', 'Nothing to say...'); } } function text_limit( $text, $limit, $finish = ' […]') { if( strlen( $text ) > $limit ) { $text = substr( $text, 0, $limit ); $text = substr( $text, 0, - ( strlen( strrchr( $text,' ') ) ) ); $text .= $finish; } return $text; } function db_widget() { $options = get_option('yoastdbwidget'); if (isset($_POST['yoast_removedbwidget'])) { $options['removedbwidget'] = true; update_option('yoastdbwidget',$options); } if ($options['removedbwidget']) { echo "If you reload, this widget will be gone and never appear again, unless you decide to delete the database option 'yoastdbwidget'."; return; } require_once(ABSPATH.WPINC.'/rss.php'); if ( $rss = fetch_rss( 'http://yoast.com/feed/' ) ) { echo '<div class="rss-widget">'; echo '<a href="http://yoast.com/" title="Go to Yoast.com"><img src="http://netdna.yoast.com/yoast-logo-rss.png" class="alignright" alt="Yoast"/></a>'; echo '<ul>'; $rss->items = array_slice( $rss->items, 0, 3 ); foreach ( (array) $rss->items as $item ) { echo '<li>'; echo '<a class="rsswidget" href="'.clean_url( $item['link'], $protocolls=null, 'display' ).'">'. htmlentities($item['title']) .'</a> '; echo '<span class="rss-date">'. date('F j, Y', strtotime($item['pubdate'])) .'</span>'; echo '<div class="rssSummary">'. $this->text_limit($item['summary'],250) .'</div>'; echo '</li>'; } echo '</ul>'; echo '<div style="border-top: 1px solid #ddd; padding-top: 10px; text-align:center;">'; echo '<a href="http://feeds2.feedburner.com/joostdevalk"><img src="'.get_bloginfo('wpurl').'/wp-includes/images/rss.png" alt=""/> Subscribe with RSS</a>'; echo ' '; echo '<a href="http://yoast.com/email-blog-updates/"><img src="http://netdna.yoast.com/email_sub.png" alt=""/> Subscribe by email</a>'; echo '<form class="alignright" method="post"><input type="hidden" name="yoast_removedbwidget" value="true"/><input title="Remove this widget from all users dashboards" type="submit" value="X"/></form>'; echo '</div>'; echo '</div>'; } } function widget_setup() { $options = get_option('yoastdbwidget'); if (!$options['removedbwidget']) wp_add_dashboard_widget( 'yoast_db_widget' , 'The Latest news from Yoast' , array(&$this, 'db_widget')); } } } ?>
/home/www/hallgroupsolutions.com/wp-content/plugins/breadcrumbs/./yst_plugin_tools.php