\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } Senate – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 23 Jun 2023 07:47:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Ohio Senate wants state workers in the office 4 days a week https://cbomo.com/70330547007-2/ https://cbomo.com/70330547007-2/#respond Fri, 23 Jun 2023 07:47:13 +0000 https://cbomo.com/70330547007-2/ [ad_1]

State employees could be spending more time in the Rhodes Tower and Riffe Center in downtown Columbus, along with other state office buildings, if Senate Republicans have their way.
  • ‘You do more work, you do more effective work when you’re physically present at your workplace,’ Ohio Senate President Matt Huffman says.
  • State Rep. Jay Edwards says remote work saves taxpayer money. Says he plans to fight plan to have workers return.
  • If Senate plan approved by the House and Gov. DeWine, it would take effect Oct. 1 for most employees.

Senate Republicans want to send state employees back to the office at least four days per week.

The proposed change would prohibit most state employees from working at home for more than eight hours in a work week. There are limited exceptions for judicial employees and those with accommodations under the federal Americans with Disabilities Act. It would not apply to state university or college employees.

More:Do you have questions about Ohio’s August constitution issue? We want to answer them

“You do more work, you do more effective work when you’re physically present at your workplace,” Senate President Matt Huffman, R-Lima, told reporters last week. That’s particularly important for state workers interacting with legislators, Huffman said. “In-person meetings are almost always more effective with the complexity of the issues that we deal with.”

But Rep. Jay Edwards, R-Nelsonville, says remote work saves taxpayers money on renting office space, helps attract qualified candidates and allows people to work outside of city centers.

“I plan to fight against it. I think it’s a bad provision and I think it’s something we’ve got to get fixed,” Edwards said.

Research from Owl Labs on remote, hybrid and office work found 62% of workers feel more productive when working remotely. Two-thirds of workers said they would start looking for another job immediately if they lost the ability to work from home, according to the 2022 survey.

The proposed in-person work schedule was added to a Senate-passed version of the state’s two-year budget. The final budget, which will include input from House legislators, is due June 30. Gov. Mike DeWine can then veto ideas he doesn’t like.

“Do we want to have most people back working (in the office)? Well, sure,” DeWine said. “But it’s a case-by-case situation and we are an employer. We have an obligation to hire the best people we can, fill the positions and to get the job done. We have to have some flexibility to do that, just like any other company.”

DeWine added that to compete for the best workers, the state might need to allow them to work from home or live outside of the city centers. “That may be the only way we’re able to fill a particular position.”

How many state employees work remotely?

It’s not clear how many state employees work in the office four days a week currently. Each department sets its own policies based on the work required. Ohio State Highway Patrol and Ohio prison guards, for example, report to in-person work more than information technology professionals.

In March, Ohio Department of Job and Family Services got the green light to discontinue six leases, saving the state $1.3 million, according to the Department of Administrative Services.

At the Ohio Department of Development, 83% of staff work in the office two or more days per week. Starting Sept. 12, the department is phasing in a return to the office for all employees, a spokeswoman said.

Ohio Attorney General Dave Yost told employees that he would “stay involved” and point out any unforeseen consequences, according to a video sent to staff.

“I understand that this is going to, if it were to become law, create a lot of complications. Many of you have children or aging parents or family members that are sick and this is going to impact, it’s going to complicate your life if it becomes law,” Yost said in the video.

If approved by the House and DeWine, the change would take effect on Oct. 1 for most employees.

Another Senate-approved change would increase the number of weeks that state employees can take paid parental leave from the current four to eight. The first two weeks would be paid at 100% and the next six at 70%. However, the number of weeks is a decrease from what DeWine proposed: 12 weeks of paid leave at 70%.

Jessie Balmert is a reporter for the USA TODAY Network Ohio Bureau, which serves the Columbus Dispatch, Cincinnati Enquirer, Akron Beacon Journal and 18 other affiliated news organizations across Ohio.

Get more political analysis by listening to the Ohio Politics Explained podcast

[ad_2]

Source link

]]>
https://cbomo.com/70330547007-2/feed/ 0
NYS Senate GOP will need Democrat permission to attend session remotely https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/ https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/#respond Fri, 10 Mar 2023 04:58:05 +0000 https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/ [ad_1]

ALBANY – State lawmakers are already the highest-paid legislators in the country at $142,000 per year – and now they can work from home, too.

Under new legislative rules approved Thursday, Democratic leaders can now determine what qualifies as “extraordinary circumstances” that would let state Senators and Assembly members attend sessions by video rather than showing up in the state Capitol.

The move left Republican state senators crying foul because state Senate Majority Leader Andrea Stewart-Cousins (D-Yonkers) will get to decide who gets the remote-work permission slips among GOP and Democratic members alike.

“I think its really quite petty that they treat us like children,” state Sen. Anthony Palumbo (R-Brentwood) told The Post.

The situation is much different in the lower house where Assembly Speaker Carl Heastie (D-Bronx) and Minority Leader William Barclay (R-Fulton) will respectively call the shots for their own conference members, according to their plans for implementing the new rules.


Andrea Stewart-Cousins with a trademark scarf speaking at a podium inside a wood paneled room
State senators will need permission from Majority Leader Andrea Stewart-Cousins in order to attend future sessions by video.
Hans Pennink

Palumbo said he worried how a Democratic state senator could hypothetically head on an “emergency vacation to Hawaii” while Republican senators struggle to get approval to attend sessions remotely.

“It’s quite petty and outrageous to not just allow the leaders from each party to make the calls,” Palumbo said.

A quorum of members in both houses will have to be physically present in the state Senate and Assembly chambers to allow vote-by-video attendance for others “in extraordinary circumstances or any other significant or unexpected factor or event,” according to the legislative language.


Carl Heastie and William Barclay shaking hands in the Assembly chambers
Assembly Speaker Carl Heastie and Minority Leader William Barclay will have responsibility for members of their respective conferences who want to attend remotely.
AP

Some Republicans find the change particularly ill-timed considering how colleagues made themselves the highest-paid legislators in the nation after giving themselves a $32,000 pay raise in a December special session.

“It’s horrible,” state Sen. George Borello (R-Jamestown) said. “They want this elected position to become a $142,000 no-show job.”

But Democrats argue Stewart-Cousins – a spokesman did not provide comment Thursday – will be judicious in making decisions on what situations are extraordinary enough for her to allow a senator to attend sessions by video.


State senators from both parties will need permission from Stewart-Cousins to attend session remotely rather than showing up at the state Capitol in Albany.
Hans Pennink

“Each house has its own procedures. The majority leader always has final say, even on excusals currently. That’s always the way it’s been going back to before we held the majority,” State Senate Deputy Majority Leader Michael Gianaris (D-Queens) said.

Republicans are needlessly fretting about Stewart-Cousins favoring fellow Democrats in the future, according to Gianaris.

“In practice, there’s deference to the minority leader for their conference so it’s unlikely this will ever be an issue,” he added.

Democrats note that other public bodies allow members to attend by video following the passage of a state law last year – an idea backed by the good government group Reinvent Albany at a legislative hearing last week.


Robert Ortt at a press conference in a hallway with other Republican senators and reporters standing around him
State Senate Minority Leader Robert Ortt will not have the authority to let Republican senators attend session by video – unlike his GOP counterpart in the Assembly.
Hans Pennink

Still, some Republican senators remain suspicious that Democrats will leverage the situation to their advantage considering the vagueness of the rule language – as well as past power plays from across the aisle that include packing a key committee with opponents of centrist court nominee Hector LaSalle.

“Democrats get to define what “extraordinary circumstances” are and have a history of using remote session to literally mute Republican voices,” state Sen. Mark Walczyk (R-North Country) said.

[ad_2]

Source link

]]>
https://cbomo.com/nys-senate-gop-will-need-democrat-permission-to-attend-session-remotely/feed/ 0