\" 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'); } servants – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Mon, 03 Jul 2023 13:57:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 ‘Report to work or face sanctions,’ Enugu govt warns public servants https://cbomo.com/607759-sit-at-home-report-to-work-or-face-sanctions-enugu-govt-warns-public-servants-html/ https://cbomo.com/607759-sit-at-home-report-to-work-or-face-sanctions-enugu-govt-warns-public-servants-html/#respond Mon, 03 Jul 2023 13:57:46 +0000 https://cbomo.com/607759-sit-at-home-report-to-work-or-face-sanctions-enugu-govt-warns-public-servants-html/ [ad_1]

The Enugu State Government has ordered all public servants and political office holders in the state to begin reporting to their places of work on Monday or face sanctions.

The order came exactly one month after the State Governor Peter Mbah banned the sit-at-home order in the state, usually enforced by a faction of the outlawed Indigenous People of Biafra (IPOB).

PREMIUM TIMES learnt that the order to the public servants and political office holders was part of Mr Mbah’s efforts to prevent them from complying with the Monday sit-at-home order usually observed in Enugu and other South-east states.

A top official of the government, who asked not to be named because he was not permitted to speak on the matter, told this newspaper on Monday that every worker in the state had been notified of the directive to report to work on Mondays.

“You know the governor has banned the sit-at-home in this state. So, there is no point allowing the workers to stay at home again on Mondays,” he said.


FIRS

The Head of Service (HoS) in Enugu State, Ken Ugwu, on Friday in a circular obtained by PREMIUM TIMES, said the order to report to work on Mondays follows the cancellation of the sit-at-home in the state by Governor Mbah.

Mr Ugwu said the Monday sit-at-home “had promoted laxity, low productivity and depleted the resources” of the state.

“To this end, and to further reinforce the governor’s directive, all public/civil servants in the state are hereby directed to ensure that they report to their duty posts every work day, including Mondays, as government has put all necessary security measures in place to ensure their safety,” he said in the circular.

TEXEM Advert

“Failure to adhere strictly to this directive would attract severe sanctions,” Mr Ugwu added.

The circular, addressed to key officials of the state government, also directed political officeholders, permanent secretaries and all heads of extra-ministerial departments to ensure compliance.

Sit-at-home not over in Enugu

Meanwhile, PREMIUM TIMES observed that residents of Enugu State have continued to observe the sit-at-home despite the pronouncement by Governor Mbah declaring an end to the civil action in the state.

The residents have continued to shun their businesses in compliance with the civil order declared by the separatist group.

Background

IPOB, in August 2021, introduced a sit-at-home order every Monday across the South-east to pressure the Nigerian government to release its detained leader, Nnamdi Kanu, who is standing trial for alleged terrorism at the Federal High Court, Abuja.

The separatist group later suspended the order, in preference for it to be implemented only on days Mr Kanu appears in court.

But despite its suspension, residents of the five South-east states – Enugu, Ebonyi, Imo, Abia and Anambra — have been observing the Monday sit-at-home order, primarily out of fear.

Kogi AD

Dangote adbanner 728x90_2 (1)

IPOB had repeatedly disowned the Monday sit-at-home across the region, saying those who still enforce the order were criminals attempting to blackmail the separatist group.

A leader of Autopilot, a faction of the IPOB, Simon Ekpa, has continued to declare sit-at-home orders in the region despite being suspended by the IPOB faction led by Mr Kanu.

IPOB is leading the agitation for an independent state of Biafra, which it wants carved out from the South-east and some parts of south-south Nigeria.


Support PREMIUM TIMES’ journalism of integrity and credibility

Good journalism costs a lot of money. Yet only good journalism can ensure the possibility of a good society, an accountable democracy, and a transparent government.

For continued free access to the best investigative journalism in the country we ask you to consider making a modest support to this noble endeavour.

By contributing to PREMIUM TIMES, you are helping to sustain a journalism of relevance and ensuring it remains free and available to all.

Donate





TEXT AD: Call Willie – +2348098788999






PT Mag Campaign AD



[ad_2]

Source link

]]>
https://cbomo.com/607759-sit-at-home-report-to-work-or-face-sanctions-enugu-govt-warns-public-servants-html/feed/ 0
Public servants wouldn’t be able to strike from home https://cbomo.com/many-public-servants-want-to-work-from-home-but-they-wouldnt-be-able-to-strike-from-there/ https://cbomo.com/many-public-servants-want-to-work-from-home-but-they-wouldnt-be-able-to-strike-from-there/#respond Fri, 14 Apr 2023 04:37:34 +0000 https://cbomo.com/many-public-servants-want-to-work-from-home-but-they-wouldnt-be-able-to-strike-from-there/ [ad_1]

“The strength of unionization is in numbers, and you have to have those numbers visible from Day 1.”

Article content

Although many public servants want to work from home, they will not be able to strike from home, the Public Service Alliance of Canada says.

Advertisement 2

Article content

With almost 160,000 federal employees now in a legal strike position, the country’s largest public-service union is preparing for the country’s first national walkout in two decades even as last-minute contract talks continue.

Old-fashioned picket lines will form an essential part of any PSAC strike, the union says. It means union members will not be able to conduct their job action on Zoom or Microsoft Teams.

“Strikes have always depended on their ground game, so this means physical picket lines across the country,” said Michael Aubry, PSAC’s assistant director of communications. “Everyone has to show up to a picket line to be considered as striking. There will be no virtual picketing from home.”

The union’s constitution stipulates that members must spend four hours a day on the picket line to be eligible for strike pay. It says benefits will be reduced for every day a member is “absent without cause.”

Article content

Advertisement 3

Article content

If federal public servants go on strike, Aubry said, picket lines will be set up at key locations throughout the National Capital Region.

Striking public servants, he said, will be able to join the picket line closest to their home and will not be required to picket outside their regular workplace.

Aubry said a national public service strike required a show of force on picket lines across the country.

“What strikes really are is a pressure tactic. It’s putting pressure on the government, it’s showing the public there’s solidarity, and so that’s only really possible and effective when it’s visible, when it’s in front of cameras, when it’s front of government offices, MPs’ offices, on Parliament Hill,” he said.

“The strength of unionization is in numbers, and you have to have those numbers visible from Day 1.”

Advertisement 4

Article content

Aubry said public servants in the National Capital Region would be eligible for $375 a week in strike pay. The money will be delivered to bank accounts by e-transfer for those who have provided PSAC with their email addresses, while cheques will be distributed to those picketers who have not signed up for online banking.

Even those public servants who have been approved for full-time telework will be expected to join their nearest picket line.

“In order to be considered on strike, you have to show up physically to a picket line, and we’ll have picket lines set up right across the country,” said Chris Aylward, PSAC’s national president. “There will be no virtual picket lines.”

PSAC wants to negotiate the right to telework with the Treasury Board of Canada Secretariat. It has argued that the location where government employees perform their jobs should be a matter for negotiation after pandemic-enforced telework, but Treasury Board President Mona Fortier has insisted it’s a management right to decide where employees work.

Advertisement 5

Article content

The government has refused to bargain on the issue.

A PSAC survey of its members last year found 80 per cent of its members opposed the government’s hybrid work plan, which now requires public servants to be in the office at least two days a week.

A workforce survey of almost 14,000 public servants conducted last year found 73 per cent of public servants said they would rather work from home, up from 23 per cent in March 2020.

  1. File photo/ Service Canada centre in downtown Ottawa.

    Federal government releases list of programs and services that could be affected by public-service strikes

  2. PSAC held a rally for families with younger children who will be impacted by return-to-office orders for public servants as they search for childcare, March 31, 2023.

    What happens if 155,000 federal public service workers go on strike?

Comments

Postmedia is committed to maintaining a lively but civil forum for discussion and encourage all readers to share their views on our articles. Comments may take up to an hour for moderation before appearing on the site. We ask you to keep your comments relevant and respectful. We have enabled email notifications—you will now receive an email if you receive a reply to your comment, there is an update to a comment thread you follow or if a user you follow comments. Visit our Community Guidelines for more information and details on how to adjust your email settings.

Join the Conversation

Advertisement 1

[ad_2]

Source link

]]>
https://cbomo.com/many-public-servants-want-to-work-from-home-but-they-wouldnt-be-able-to-strike-from-there/feed/ 0