inUrl' => \esc_url( \plugins_url( '', \WPSEO_FILE ) ), 'toolsPageUrl' => \esc_url( \admin_url( 'admin.php?page=wpseo_tools' ) ), 'usersPageUrl' => \esc_url( \admin_url( 'users.php' ) ), 'firstTimeConfigurationUrl' => $ftc_url, 'isPremium' => $this->product_helper->is_premium(), 'upsellText' => $this->get_upsell_text(), 'upsellLink' => $this->get_upsell_link(), ] ); } /** * Renders the target for the React to mount to. * * @return void */ public function render_target() { if ( $this->should_update_premium() ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Output escaped in get_update_premium_notice. echo $this->get_update_premium_notice(); } echo '
'; } /** * Gets the workouts option. * * @return mixed|null Returns workouts option if found, null if not. */ private function get_workouts_option() { $workouts_option = $this->options_helper->get( 'workouts_data' ); // This filter is documented in src/routes/workouts-route.php. return \apply_filters( 'Yoast\WP\SEO\workouts_options', $workouts_option ); } /** * Returns the notification to show when Premium needs to be updated. * * @return string The notification to update Premium. */ private function get_update_premium_notice() { $url = $this->get_upsell_link(); if ( $this->has_premium_subscription_expired() ) { /* translators: %s: expands to 'Yoast SEO Premium'. */ $title = \sprintf( \__( 'Renew your subscription of %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); $copy = \sprintf( /* translators: %s: expands to 'Yoast SEO Premium'. */ \esc_html__( 'Accessing the latest workouts requires an updated version of %s (at least 17.7), but it looks like your subscription has expired. Please renew your subscription to update and gain access to all the latest features.', 'wordpress-seo' ), 'Yoast SEO Premium' ); $button = '' . \esc_html__( 'Renew your subscription', 'wordpress-seo' ) /* translators: Hidden accessibility text. */ . '' . \__( '(Opens in a new browser tab)', 'wordpress-seo' ) . '' . '' . ''; } elseif ( $this->has_premium_subscription_activated() ) { /* translators: %s: expands to 'Yoast SEO Premium'. */ $title = \sprintf( \__( 'Update to the latest version of %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); $copy = \sprintf( /* translators: 1: expands to 'Yoast SEO Premium', 2: Link start tag to the page to update Premium, 3: Link closing tag. */ \esc_html__( 'It looks like you\'re running an outdated version of %1$s, please %2$supdate to the latest version (at least 17.7)%3$s to gain access to our updated workouts section.', 'wordpress-seo' ), 'Yoast SEO Premium', '', '' ); $button = null; } else { /* translators: %s: expands to 'Yoast SEO Premium'. */ $title = \sprintf( \__( 'Activate your subscription of %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); $url_button = 'https://yoa.st/workouts-activate-notice-help'; $copy = \sprintf( /* translators: 1: expands to 'Yoast SEO Premium', 2: Link start tag to the page to update Premium, 3: Link closing tag. */ \esc_html__( 'It looks like you’re running an outdated and unactivated version of %1$s, please activate your subscription in %2$sMyYoast%3$s and update to the latest version (at least 17.7) to gain access to our updated workouts section.', 'wordpress-seo' ), 'Yoast SEO Premium', '', '' ); $button = '' . \esc_html__( 'Get help activating your subscription', 'wordpress-seo' ) /* translators: Hidden accessibility text. */ . '' . \__( '(Opens in a new browser tab)', 'wordpress-seo' ) . '' . ''; } $notice = new Notice_Presenter( $title, $copy, null, $button ); return $notice->present(); } /** * Check whether Premium should be updated. * * @return bool Returns true when Premium is enabled and the version is below 17.7. */ private function should_update_premium() { $premium_version = $this->product_helper->get_premium_version(); return $premium_version !== null && \version_compare( $premium_version, '17.7-RC1', '<' ); } /** * Check whether the Premium subscription has expired. * * @return bool Returns true when Premium subscription has expired. */ private function has_premium_subscription_expired() { $subscription = $this->addon_manager->get_subscription( WPSEO_Addon_Manager::PREMIUM_SLUG ); return ( isset( $subscription->expiry_date ) && ( \strtotime( $subscription->expiry_date ) - \time() ) < 0 ); } /** * Check whether the Premium subscription is activated. * * @return bool Returns true when Premium subscription is activated. */ private function has_premium_subscription_activated() { return $this->addon_manager->has_valid_subscription( WPSEO_Addon_Manager::PREMIUM_SLUG ); } /** * Returns the upsell/update copy to show in the card buttons. * * @return string Returns a string with the upsell/update copy for the card buttons. */ private function get_upsell_text() { if ( ! $this->product_helper->is_premium() || ! $this->should_update_premium() ) { // Use the default defined in the component. return ''; } if ( $this->has_premium_subscription_expired() ) { return \sprintf( /* translators: %s: expands to 'Yoast SEO Premium'. */ \__( 'Renew %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); } if ( $this->has_premium_subscription_activated() ) { return \sprintf( /* translators: %s: expands to 'Yoast SEO Premium'. */ \__( 'Update %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); } return \sprintf( /* translators: %s: expands to 'Yoast SEO Premium'. */ \__( 'Activate %s', 'wordpress-seo' ), 'Yoast SEO Premium' ); } /** * Returns the upsell/update link to show in the card buttons. * * @return string Returns a string with the upsell/update link for the card buttons. */ private function get_upsell_link() { if ( ! $this->product_helper->is_premium() || ! $this->should_update_premium() ) { // Use the default defined in the component. return ''; } if ( $this->has_premium_subscription_expired() ) { return 'https://yoa.st/workout-renew-notice'; } if ( $this->has_premium_subscription_activated() ) { return \wp_nonce_url( \self_admin_url( 'update.php?action=upgrade-plugin&plugin=wordpress-seo-premium/wp-seo-premium.php' ), 'upgrade-plugin_wordpress-seo-premium/wp-seo-premium.php' ); } return 'https://yoa.st/workouts-activate-notice-myyoast'; } }
Warning: Cannot modify header information - headers already sent by (output started at /htdocs/wp-content/plugins/wordpress-seo/src/integrations/admin/workouts-integration.php:1) in /htdocs/wp-includes/feed-rss2.php on line 8
اختناق Archives - i3lam tv - إعلام تيفي https://i3lamtv.com/tag/اختناق/ منصتكم الإخبارية بإمتياز Sun, 22 Jun 2025 13:39:43 +0000 ar hourly 1 https://wordpress.org/?v=6.8.3 https://i3lamtv.com/wp-content/uploads/2024/04/cropped-qf-1-32x32.png اختناق Archives - i3lam tv - إعلام تيفي https://i3lamtv.com/tag/اختناق/ 32 32 حريق في حافلة بإقليم الجديدة يخلف حالة اختناق https://i3lamtv.com/%d8%ad%d8%b1%d9%8a%d9%82-%d9%81%d9%8a-%d8%ad%d8%a7%d9%81%d9%84%d8%a9-%d8%a8%d8%a5%d9%82%d9%84%d9%8a%d9%85-%d8%a7%d9%84%d8%ac%d8%af%d9%8a%d8%af%d8%a9-%d9%8a%d8%ae%d9%84%d9%81-%d8%ad%d8%a7%d9%84%d8%a9/ https://i3lamtv.com/%d8%ad%d8%b1%d9%8a%d9%82-%d9%81%d9%8a-%d8%ad%d8%a7%d9%81%d9%84%d8%a9-%d8%a8%d8%a5%d9%82%d9%84%d9%8a%d9%85-%d8%a7%d9%84%d8%ac%d8%af%d9%8a%d8%af%d8%a9-%d9%8a%d8%ae%d9%84%d9%81-%d8%ad%d8%a7%d9%84%d8%a9/#respond Sun, 22 Jun 2025 16:00:35 +0000 https://i3lamtv.com/?p=114700 إعلام تيفي اندلع صباح اليوم الأحد حريق مفاجئ في حافلة للنقل العمومي كانت متجهة نحو السوق الأسبوعي “الحمراء”، على الطريق الوطنية المؤدية إلى مركز جماعة مولاي عبد الله بإقليم الجديدة. وقد بدأت النيران تشتعل في الجزء الخلفي للحافلة أثناء سيرها بشكل طبيعي، قبل أن يلاحظ أحد المارة الحريق ويصرخ لتنبيه السائق الذي لاحظ تصاعد دخان …

The post حريق في حافلة بإقليم الجديدة يخلف حالة اختناق appeared first on i3lam tv - إعلام تيفي.

]]>
إعلام تيفي

اندلع صباح اليوم الأحد حريق مفاجئ في حافلة للنقل العمومي كانت متجهة نحو السوق الأسبوعي “الحمراء”، على الطريق الوطنية المؤدية إلى مركز جماعة مولاي عبد الله بإقليم الجديدة.

وقد بدأت النيران تشتعل في الجزء الخلفي للحافلة أثناء سيرها بشكل طبيعي، قبل أن يلاحظ أحد المارة الحريق ويصرخ لتنبيه السائق الذي لاحظ تصاعد دخان كثيف، ما دفعه للتوقف فورا بناء على طلب الركاب الذين هرعوا إلى مغادرة الحافلة.

وقد تم تسجيل حالة اختناق لفتاة تبلغ من العمر 28 عاما نتيجة استنشاقها للدخان، حيث نقلتها سيارة إسعاف الجماعة إلى المستشفى الإقليمي محمد الخامس بالجديدة، وتلقت هناك العلاج بالأوكسجين، مع استقرار حالتها الصحية.

وقد يكون سوء حالة الحافلة  السبب وراء اندلاع الحريق، فيما طالب السكان المحليون بزيادة التشديد على المراقبة التقنية لحافلات النقل العمومي، خصوصا تلك التي تخدم الرحلات بين الجديدة والأسواق الأسبوعية ذات الحركة الكثيفة.

The post حريق في حافلة بإقليم الجديدة يخلف حالة اختناق appeared first on i3lam tv - إعلام تيفي.

]]>
https://i3lamtv.com/%d8%ad%d8%b1%d9%8a%d9%82-%d9%81%d9%8a-%d8%ad%d8%a7%d9%81%d9%84%d8%a9-%d8%a8%d8%a5%d9%82%d9%84%d9%8a%d9%85-%d8%a7%d9%84%d8%ac%d8%af%d9%8a%d8%af%d8%a9-%d9%8a%d8%ae%d9%84%d9%81-%d8%ad%d8%a7%d9%84%d8%a9/feed/ 0
اختناق “بالفحم” ينهي حياة أربعة سياح مغاربة في الحوز https://i3lamtv.com/%d8%a7%d8%ae%d8%aa%d9%86%d8%a7%d9%82-%d8%a8%d8%a7%d9%84%d9%81%d8%ad%d9%85-%d9%8a%d9%86%d9%87%d9%8a-%d8%ad%d9%8a%d8%a7%d8%a9-%d8%a3%d8%b1%d8%a8%d8%b9%d8%a9-%d8%b3%d9%8a%d8%a7%d8%ad-%d9%85%d8%ba/ https://i3lamtv.com/%d8%a7%d8%ae%d8%aa%d9%86%d8%a7%d9%82-%d8%a8%d8%a7%d9%84%d9%81%d8%ad%d9%85-%d9%8a%d9%86%d9%87%d9%8a-%d8%ad%d9%8a%d8%a7%d8%a9-%d8%a3%d8%b1%d8%a8%d8%b9%d8%a9-%d8%b3%d9%8a%d8%a7%d8%ad-%d9%85%d8%ba/#respond Sat, 08 Feb 2025 17:52:38 +0000 https://i3lamtv.com/?p=93897 شيماء البورقادي صحافية متدربة لقي أربعة سياح مغاربة مصرعهم، مساء أمس الجمعة، في حادث مأساوي بمنطقة شمهروش، التابعة لجماعة إمليل بإقليم الحوز، حيث تم العثور على جثثهم داخل غرفة كانوا يقيمون بها. ووفق مصادر محلية فإن اكتشاف الجثث جاء بعد انقطاع الاتصال بالضحايا، ليتم العثور عليهم داخل الغرفة التي كانوا يقيمون بها، حيث وجد بالقرب …

The post اختناق “بالفحم” ينهي حياة أربعة سياح مغاربة في الحوز appeared first on i3lam tv - إعلام تيفي.

]]>
شيماء البورقادي صحافية متدربة
لقي أربعة سياح مغاربة مصرعهم، مساء أمس الجمعة، في حادث مأساوي بمنطقة شمهروش، التابعة لجماعة إمليل بإقليم الحوز، حيث تم العثور على جثثهم داخل غرفة كانوا يقيمون بها.

ووفق مصادر محلية فإن اكتشاف الجثث جاء بعد انقطاع الاتصال بالضحايا، ليتم العثور عليهم داخل الغرفة التي كانوا يقيمون بها، حيث وجد بالقرب منهم مجمر للفحم، يرجح أنه كان سببا في اختناقهم نتيجة استنشاق غاز أول أكسيد الكربون.

وفور إشعارها بالواقعة، انتقلت إلى عين المكان السلطات المحلية، وعناصر الدرك الملكي، والوقاية المدنية، حيث تم فتح تحقيق تحت إشراف النيابة العامة المختصة لتحديد ملابسات الحادث وأسبابه.

وبالتوازي مع ذلك، تم نقل الجثث إلى مستودع الأموات بالمستشفى الإقليمي في تحناوت لإخضاعها للفحوصات اللازمة.

The post اختناق “بالفحم” ينهي حياة أربعة سياح مغاربة في الحوز appeared first on i3lam tv - إعلام تيفي.

]]>
https://i3lamtv.com/%d8%a7%d8%ae%d8%aa%d9%86%d8%a7%d9%82-%d8%a8%d8%a7%d9%84%d9%81%d8%ad%d9%85-%d9%8a%d9%86%d9%87%d9%8a-%d8%ad%d9%8a%d8%a7%d8%a9-%d8%a3%d8%b1%d8%a8%d8%b9%d8%a9-%d8%b3%d9%8a%d8%a7%d8%ad-%d9%85%d8%ba/feed/ 0