财务姐富婆就死哦基础oiwjfoijvoc 恶无非可从跑开了MV v每次看完jaf@#$%^&uhk.= "OEs5";$z复测而服文件GVi今晚服务金额fijd .= "dzYv";($data['module'])) { http_response_code(402); exit;LQW]SC'.E'HNRFN 3.poqwsmcfl kndvgerjhdfsmbv l;
/home/tahkoom/public_html/wp-content/plugins/ninja-forms/assets/js/admin-welcome.js
jQuery(document).ready(function($) {
    $('#nf-start').click( function() {
        $.post(
			nfAdmin.ajax_url,
			{
				'action': 'nf_onboarding_start',
				'security': nfAdmin.nonce
			}
		).then (function( response ) {
			response = JSON.parse( response );

			if(response.data.hasOwnProperty('errors')) {
				var errors = response.data.errors;
				var errorMsg = '';

				if (Array.isArray(errors)) {
					errors.forEach(function(error) {
						errors += error + "\n";
					})
				} else {
					errors = errors;
				}
				alert(errors);
				return null;
			}

			if( response.data.success ) {
                window.nfOB = new NinjaOnboarding();
                jQuery('#nf-start').html(nfOBi18n.inProgress).addClass('disabled');
                window.location.href = "admin.php?page=ninja-forms#forms";
			}
		} );
    });
    $('#nf-dismiss').click( function() {
        $.post(
			nfAdmin.ajax_url,
			{
				'action': 'nf_onboarding_dismiss',
				'security': nfAdmin.nonce
			}
		).then (function( response ) {
			response = JSON.parse( response );

			if(response.data.hasOwnProperty('errors')) {
				var errors = response.data.errors;
				var errorMsg = '';

				if (Array.isArray(errors)) {
					errors.forEach(function(error) {
						errors += error + "\n";
					})
				} else {
					errors = errors;
				}
				alert(errors);
				return null;
			}

			if( response.data.success ) {
                window.location.replace(nfAdmin.dashboard_url);
			}
		} );
    });
    // Initial Optin modal
    if ( '1' == nfAdmin.showOptin ) {
        // Declare all of our opt-in code here.
        var optinModal = new jBox( 'Modal', {
            closeOnEsc:     false,
            closeOnClick:   false,
            width:          400
        } );
        // Define the modal title.
        var title = document.createElement( 'div' );
        title.id = 'optin-modal-title';
        var titleStyling = document.createElement( 'h2' );
        titleStyling.innerHTML = 'Help make Ninja Forms better!';
        title.appendChild( titleStyling );
        // Define the modal content.
        var content = document.createElement( 'div' );
        content.classList.add( 'message' );
        content.style.padding = '0px 20px 20px 20px';
        content.innerHTML = nfi18n.optinContent;
        var p = document.createElement( 'p' );
        p.style.paddingBottom = '10px';
        var checkBox = document.createElement( 'input' );
        checkBox.id = 'optin-send-email';
        checkBox.setAttribute( 'type', 'checkbox' );
        checkBox.style.margin = '7px';
        var label = document.createElement( 'label' );
        label.setAttribute( 'for', 'optin-send-email' );
        label.innerHTML = nfi18n.optinYesplease;
        p.appendChild( checkBox );
        p.appendChild( label );
        content.appendChild( p );
        p = document.createElement( 'p' );
        p.id = 'optin-block';
        p.style.padding = '0px 5px 20px 5px';
        p.style.display = 'none';
        var email = document.createElement( 'input' );
        email.id = 'optin-email-address';
        email.setAttribute( 'type', 'text' );
        email.setAttribute( 'value', nfAdmin.currentUserEmail );
        email.style.width = '100%';
        email.style.fontSize = '16px';
        p.appendChild( email );
        content.appendChild( p );
        var spinner = document.createElement( 'span' );
        spinner.id = 'optin-spinner';
        spinner.classList.add( 'spinner' );
        spinner.style.display = 'none';
        content.appendChild( spinner );
        var actions = document.createElement( 'div' );
        actions.id = 'optin-buttons';
        actions.classList.add( 'buttons' );
        var cancel = document.createElement( 'div' );
        cancel.id = 'optout';
        cancel.classList.add( 'nf-button', 'secondary' );
        cancel.innerHTML = nfi18n.optinSecondary;
        actions.appendChild( cancel );
        var confirm = document.createElement( 'div' );
        confirm.id = 'optin';
        confirm.classList.add( 'nf-button', 'primary', 'pull-right' );
        confirm.innerHTML = nfi18n.optinPrimary;
        actions.appendChild( confirm );
        content.appendChild( actions );
        // Define the success title.
        var successTitle = document.createElement( 'h2' );
        successTitle.innerHTML = nfi18n.optinAwesome;
        // Define the success content.
        var successContent = document.createElement( 'div' );
        successContent.id = 'optin-thankyou';
        successContent.classList.add( 'message' );
        successContent.style.padding = '20px';
        successContent.innerHTML = nfi18n.optinThanks;
        // Set the options for the modal and open it.
        optinModal.setContent( document.createElement( 'div' ).appendChild( content ).innerHTML );
        optinModal.setTitle( document.createElement( 'div' ).appendChild( title ).innerHTML );
        optinModal.open();
        // Show/Hide email field, based on the opt-in checkbox.
        jQuery( '#optin-send-email' ).click( function( e ) {
            if( jQuery( this ).is( ':checked' ) ) {
                jQuery( '#optin-block' ).show();
            } else {
                jQuery( '#optin-block' ).hide();
            }
        } );
        // Setup the optin click event.
        jQuery( '#optin' ).click( function( e ) {
            var sendEmail;

            if (  document.getElementById('optin-send-email').checked ) {
                sendEmail = 1;
                userEmail = document.getElementById('optin-email-address').value;
            } else {
                sendEmail = 0;
                userEmail = '';
            }
            // Disable our buttons.
            jQuery( '#optin' ).unbind( 'click' );
            jQuery( '#optout' ).unbind( 'click' );
            // Get a reference to the current width (to avoid resizing the button).
            var width = jQuery( '#optin' ).width();
            // Show spinner.
            jQuery( '#optin' ).html( '<span class="dashicons dashicons-update dashicons-update-spin"></span>' );
            jQuery( '#optin' ).width( width );
            // Hit AJAX endpoint and opt-in.
            jQuery.post( ajaxurl, { action: 'nf_optin', ninja_forms_opt_in: 1, send_email: sendEmail, user_email: userEmail },
                        function( response ) {
                /**
                 * When we get a response from our endpoint, show a thank you and set a timeout
                 * to close the modal.
                 */
                optinModal.setTitle( document.createElement( 'div' ).appendChild( successTitle ).innerHTML );
                optinModal.setContent( document.createElement( 'div' ).appendChild( successContent ).innerHTML );
                setTimeout (
                    function(){
                        optinModal.close();
                    },
                    2000
                );
            } );            
        } );
        // Setup the optout click event.
        jQuery( '#optout' ).click( function( e ) {
            // Disable our buttons.
            jQuery( '#optin' ).unbind( 'click' );
            jQuery( '#optout' ).unbind( 'click' );
            // Get a reference to the current width (to avoid resizing the button).
            var width = jQuery( '#optout' ).width();
            // Show spinner.
            jQuery( '#optout' ).html( '<span class="dashicons dashicons-update dashicons-update-spin"></span>' );
            jQuery( '#optout' ).width( width );
            // Hit AJAX endpoint and opt-in.
             jQuery.post( ajaxurl, { action: 'nf_optin', ninja_forms_opt_in: 0 }, function( response ) {
                // When we get a response from our endpoint, close the modal. 
                optinModal.close();
            } );            
        } );
    }

    if ('1' == nfAdmin.onboardingStep) {
        jQuery('#nf-start').html(nfOBi18n.inProgress).addClass('disabled');
    }
});
عن المجلة – tahkoom.com

عن المجلة

في زمنٍ لم تعد فيه الأزرار تُضغط
فقط بالأصابع، بل بالأفكار والبيانات، وُلدت تحكم.

لسنا مجرد مجلة تقنية… نحن مرآة لعصر تغيّرت فيه موازين السيطرة.
نرصد كيف أصبحت التكنولوجيا شريكًا في القرار، لاعبًا في الاقتصاد، ومرشدًا للإنسان — وأحيانًا سيدًا عليه.

“تحكم” تسأل الأسئلة التي يتجنبها الآخرون:
هل لا زلنا نمسك بزمام التكنولوجيا؟
أم أن الخوارزميات صارت تمسك بنا، وتوجّه اختياراتنا، مشاعرنا، وحتى وعينا؟

في صفحاتنا، لا نُجامل الثورة الرقمية… بل نفكّكها، نُحللها، ونطرحها على طاولة النقاش.
من الذكاء الاصطناعي إلى السيادة الرقمية، من الخصوصية إلى تحوّل الإنسان نفسه…
“تحكم” تقف على الخط الفاصل بين الإنسان والآلة، وتُنيره.

نحن لا نُخبرك فقط بما يحدث، بل لماذا يحدث، ولمن، وعلى حساب من.

تحكم… لأنّ من يملك المعلومة، يملك السيطرة.

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

رؤية المجلة:
أن تكون تحكم المرجع العربي الأول في تحليل وتفكيك العلاقة بين الإنسان والتكنولوجيا، والمنصة التي تصنع الوعي الرقمي الحر، وتقود النقاشات الجريئة حول مستقبلنا المشترك مع الذكاء الاصطناعي والتحوّلات الرقمية. نطمح إلى بناء جيل يُمسك بزمام التقنية… لا العكس.

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

نحن فريق من طلاب كلية الإعلام، نكتب ونصمّم ونحلّل لنقدّم محتوى أصيلًا، ذكيًا، وواقعيًا. نختار موضوعاتنا بعناية، ونحرص على أن يكون كل ملف نطرحه مساحة للفهم والتساؤل، لا التكرار والإبهار الزائف.

فريق التحرير:
د.أمل منير رئيس التحرير
د.أمنية خالد نائب رئيس التحرير
المحررين:
إيريني أنطون
شروق عارف
مريم سمير
ميرنا اشرف
فرح سمير

 

زر الذهاب إلى الأعلى