{"id":16487,"date":"2024-11-09T12:11:14","date_gmt":"2024-11-09T10:11:14","guid":{"rendered":"https:\/\/www.nub.edu.eg\/?p=16487"},"modified":"2024-11-10T08:59:47","modified_gmt":"2024-11-10T06:59:47","slug":"%d8%aa%d8%b9%d9%84%d9%86-%d8%a7%d9%84%d9%85%d8%b3%d8%aa%d8%b4%d9%81%d9%89-%d8%a7%d9%84%d8%aa%d8%b9%d9%84%d9%8a%d9%85%d9%8a-%d9%84%d8%ac%d8%a7%d9%85%d8%b9%d8%a9-%d8%a7%d9%84%d9%86%d9%87%d8%b6%d8%a9","status":"publish","type":"post","link":"https:\/\/www.nub.edu.eg\/ar\/%d8%aa%d8%b9%d9%84%d9%86-%d8%a7%d9%84%d9%85%d8%b3%d8%aa%d8%b4%d9%81%d9%89-%d8%a7%d9%84%d8%aa%d8%b9%d9%84%d9%8a%d9%85%d9%8a-%d9%84%d8%ac%d8%a7%d9%85%d8%b9%d8%a9-%d8%a7%d9%84%d9%86%d9%87%d8%b6%d8%a9\/","title":{"rendered":"\u062a\u0639\u0644\u0646 \u0627\u0644\u0645\u0633\u062a\u0634\u0641\u0649 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a \u0644\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0646\u0647\u0636\u0629 \u0648\u0628\u0627\u062f\u064a\u0627 \u0639\u0646 \u0627\u062d\u062a\u064a\u0627\u062c\u0647\u0627 \u0645\u0646 \u0627\u0644\u0623\u0637\u0628\u0627\u0621 \u0627\u0644\u0645\u0642\u064a\u0645\u064a\u0646 \u0628\u0646\u0638\u0627\u0645 \u0627\u0644\u0646\u062f\u0628 \u0623\u0648 \u0627\u0644\u0625\u0639\u0627\u0631\u0629 \u0623\u0648 \u0627\u0644\u062a\u0639\u0627\u0642\u062f \u0637\u0628\u0642\u064b\u0627 \u0644\u0644\u062a\u062e\u0635\u0635\u0627\u062a \u0627\u0644\u0622\u062a\u064a\u0629:"},"content":{"rendered":"<script type=\"text\/javascript\">\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_30' >\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\">\u0646\u0645\u0648\u0630\u062c \u0637\u0644\u0628 \u0627\u0644\u062a\u0648\u0638\u064a\u0641<\/h2>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_30'  action='\/ar\/wp-json\/wp\/v2\/posts\/16487' data-formid='30' novalidate><div class='gf_invisible ginput_recaptchav3' data-sitekey='6LdrlwYqAAAAANBdKtSPf_ebYypyOa-JDpWVSJ0i' data-tabindex='0'><input id=\"input_61a3b3b7f96e43b40a4e57e41b39dea3\" class=\"gfield_recaptcha_response\" type=\"hidden\" name=\"input_61a3b3b7f96e43b40a4e57e41b39dea3\" value=\"\"\/><\/div>\n                        <div class='gform-body gform_body'><div id='gform_fields_30' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_30_23\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_23\" ><label class='gfield_label gform-field-label' for='input_30_23'>\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0643\u0627\u0645\u0644:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_23' id='input_30_23' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_30_24\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_24\" ><label class='gfield_label gform-field-label' for='input_30_24'>\u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u0642\u0648\u0645\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_24' id='input_30_24' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_30_26\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_26\" ><label class='gfield_label gform-field-label' for='input_30_26'>\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_26' id='input_30_26' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_30_25\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_25\" ><label class='gfield_label gform-field-label' for='input_30_25'>\u0631\u0642\u0645 \u0627\u0644\u0647\u0627\u062a\u0641:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_25' id='input_30_25' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_30_27\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_27\" ><label class='gfield_label gform-field-label' for='input_30_27'>\u0627\u0644\u062a\u062e\u0635\u0635 \u0627\u0644\u0637\u0628\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_27' id='input_30_27' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0627\u062e\u062a\u0631 \u0627\u0644\u062a\u062e\u0635\u0635' >\u0627\u062e\u062a\u0631 \u0627\u0644\u062a\u062e\u0635\u0635<\/option><option value='\u0628\u0627\u0637\u0646\u0629' >\u0628\u0627\u0637\u0646\u0629<\/option><option value='\u062c\u0631\u0627\u062d\u0629 \u0639\u0627\u0645\u0629' >\u062c\u0631\u0627\u062d\u0629 \u0639\u0627\u0645\u0629<\/option><option value='\u062c\u0631\u0627\u062d\u0629 \u0639\u0638\u0627\u0645' >\u062c\u0631\u0627\u062d\u0629 \u0639\u0638\u0627\u0645<\/option><option value='\u0646\u0633\u0627\u0621 \u0648\u062a\u0648\u0644\u064a\u062f' >\u0646\u0633\u0627\u0621 \u0648\u062a\u0648\u0644\u064a\u062f<\/option><option value='\u0642\u0644\u0628 \u0648\u0642\u0633\u0637\u0631\u0629' >\u0642\u0644\u0628 \u0648\u0642\u0633\u0637\u0631\u0629<\/option><option value='\u0639\u0646\u0627\u064a\u0629 \u0645\u0631\u0643\u0632\u0629' >\u0639\u0646\u0627\u064a\u0629 \u0645\u0631\u0643\u0632\u0629<\/option><option value='\u0645\u0633\u0627\u0644\u0643 \u0628\u0648\u0644\u064a\u0629' >\u0645\u0633\u0627\u0644\u0643 \u0628\u0648\u0644\u064a\u0629<\/option><option value='\u0643\u0644\u0649 \u0635\u0646\u0627\u0639\u064a' >\u0643\u0644\u0649 \u0635\u0646\u0627\u0639\u064a<\/option><option value='\u0623\u0637\u0641\u0627\u0644' >\u0623\u0637\u0641\u0627\u0644<\/option><\/select><\/div><\/div><div id=\"field_30_31\" class=\"gfield gfield--type-number gfield--input-type-number gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_31\" ><label class='gfield_label gform-field-label' for='input_30_31'>\u0633\u0646\u0629 \u0627\u0644\u062a\u062e\u0631\u062c:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_31' id='input_30_31' type='number' step='any'   value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"  \/><\/div><\/div><div id=\"field_30_32\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_32\" ><label class='gfield_label gform-field-label' for='input_30_32'>\u0627\u0644\u062a\u0642\u062f\u064a\u0631 \u0627\u0644\u0639\u0627\u0645:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_32' id='input_30_32' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_30_33\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_33\" ><label class='gfield_label gform-field-label' for='input_30_33'>\u0645\u0648\u0642\u0641 \u0627\u0644\u062e\u062f\u0645\u0629 \u0627\u0644\u0639\u0633\u0643\u0631\u064a\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_33' id='input_30_33' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u062a\u0645\u062a' >\u062a\u0645\u062a<\/option><option value='\u0625\u0639\u0641\u0627\u0621' >\u0625\u0639\u0641\u0627\u0621<\/option><\/select><\/div><\/div><div id=\"field_30_34\" class=\"gfield gfield--type-fileupload gfield--input-type-fileupload gfield--width-full gfield_contains_required field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_34\" ><label class='gfield_label gform-field-label' for='gform_browse_button_30_34'>\u062a\u0631\u062e\u064a\u0635 \u0645\u0632\u0627\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0646\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_30_34'>\u064a\u062c\u0628 \u062a\u0642\u062f\u064a\u0645 \u0648\u062b\u064a\u0642\u0629 \u062a\u0631\u062e\u064a\u0635 \u0645\u0632\u0627\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0646\u0629 \u0648\u0623\u0646 \u062a\u0643\u0648\u0646 \u0645\u0633\u062c\u0644\u0627\u064b \u0641\u064a \u0627\u0644\u062f\u0631\u0627\u0633\u0627\u062a \u0627\u0644\u0639\u0644\u064a\u0627 \u0644\u0644\u062a\u062e\u0635\u0635 \u0627\u0644\u0645\u062a\u0642\u062f\u0645 \u0639\u0644\u064a\u0647 \u0641\u064a \u0627\u0644\u0625\u0639\u0644\u0627\u0646.<\/div><div class='ginput_container ginput_container_fileupload'><div id='gform_multifile_upload_30_34' data-settings='{&quot;runtimes&quot;:&quot;html5,flash,html4&quot;,&quot;browse_button&quot;:&quot;gform_browse_button_30_34&quot;,&quot;container&quot;:&quot;gform_multifile_upload_30_34&quot;,&quot;drop_element&quot;:&quot;gform_drag_drop_area_30_34&quot;,&quot;filelist&quot;:&quot;gform_preview_30_34&quot;,&quot;unique_names&quot;:true,&quot;file_data_name&quot;:&quot;file&quot;,&quot;url&quot;:&quot;https:\\\/\\\/www.nub.edu.eg\\\/ar\\\/?gf_page=5f65a68ac9b8268&quot;,&quot;flash_swf_url&quot;:&quot;https:\\\/\\\/www.nub.edu.eg\\\/wp-includes\\\/js\\\/plupload\\\/plupload.flash.swf&quot;,&quot;silverlight_xap_url&quot;:&quot;https:\\\/\\\/www.nub.edu.eg\\\/wp-includes\\\/js\\\/plupload\\\/plupload.silverlight.xap&quot;,&quot;filters&quot;:{&quot;mime_types&quot;:[{&quot;title&quot;:&quot;Allowed Files&quot;,&quot;extensions&quot;:&quot;*&quot;}],&quot;max_file_size&quot;:&quot;26214400b&quot;},&quot;multipart&quot;:true,&quot;urlstream_upload&quot;:false,&quot;multipart_params&quot;:{&quot;form_id&quot;:30,&quot;field_id&quot;:34},&quot;gf_vars&quot;:{&quot;max_files&quot;:&quot;3&quot;,&quot;message_id&quot;:&quot;gform_multifile_messages_30_34&quot;,&quot;disallowed_extensions&quot;:[&quot;php&quot;,&quot;asp&quot;,&quot;aspx&quot;,&quot;cmd&quot;,&quot;csh&quot;,&quot;bat&quot;,&quot;html&quot;,&quot;htm&quot;,&quot;hta&quot;,&quot;jar&quot;,&quot;exe&quot;,&quot;com&quot;,&quot;js&quot;,&quot;lnk&quot;,&quot;htaccess&quot;,&quot;phtml&quot;,&quot;ps1&quot;,&quot;ps2&quot;,&quot;php3&quot;,&quot;php4&quot;,&quot;php5&quot;,&quot;php6&quot;,&quot;py&quot;,&quot;rb&quot;,&quot;tmp&quot;]}}' class='gform_fileupload_multifile'>\n\t\t\t\t\t\t\t\t\t\t<div id='gform_drag_drop_area_30_34' class='gform_drop_area gform-theme-field-control'>\n\t\t\t\t\t\t\t\t\t\t\t<span class='gform_drop_instructions'>Drop files here or <\/span>\n\t\t\t\t\t\t\t\t\t\t\t<button type='button' id='gform_browse_button_30_34' class='button gform_button_select_files gform-theme-button gform-theme-button--control' aria-describedby=\"gfield_upload_rules_30_34 gfield_description_30_34\"  >Select files<\/button>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_30_34'>Max. file size: 25 MB, Max. files: 3.<\/span><ul class='validation_message--hidden-on-empty gform-ul-reset' id='gform_multifile_messages_30_34'><\/ul> <!-- Leave <ul> empty to support CSS :empty selector. --><\/div><div id='gform_preview_30_34' class='ginput_preview_list'><\/div><\/div><div id=\"field_30_35\" class=\"gfield gfield--type-captcha gfield--input-type-captcha gfield--width-full field_sublabel_above gfield--no-description field_description_above hidden_label field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_30_35\" ><label class='gfield_label gform-field-label' for='input_30_35'>CAPTCHA<\/label><div id='input_30_35' class='ginput_container ginput_recaptcha' data-sitekey='6Leq7gUdAAAAAIwoyUBuJV2NMsLSzSM_YHRJxY1o'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type=\"submit\" id=\"gform_submit_button_30\" class=\"gform_button button button-primary\" onclick=\"gform.submission.handleButtonClick(this);\" value=\"\u062a\u0642\u062f\u064a\u0645 \u0627\u0644\u0637\u0644\u0628\"> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_30' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_30' id='gform_theme_30' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_30' id='gform_style_settings_30' value='{\"formId\":\"30\",\"description\":false,\"inputPrimaryColor\":\"#204ce5\"}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_30' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='30' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_30' value='WyJ7XCIyN1wiOltcIjVlYWI4MTRhMWFkNjQ2NDY0NTJlZDg0MTUyYjJmYjMyXCIsXCJmZjVmZTA4OTg1YzRiZjY0YmQ2MmZmNjg1MTVhOTA2ZlwiLFwiMmQzMzBkZjlhN2I4MmQ3MjM2MjdlYjJmMjRhYmU1MTZcIixcIjdiZDAzZDE2Njc4NGYzOTE1ZTJhZGNkMTE2MGU2OTMxXCIsXCIxN2YzYjkzNDQxN2RhMWRhM2Q5NjM5NTUzYjFhMTY5MFwiLFwiZThlNWMxNjAwYWIzYmE5MDI5MzYxMjgzMjExOWRiYWZcIixcIjRlMjcxYmY0OTg0ODM4MWE3NjczZjUwMmNjNTcxZGQ2XCIsXCIxN2MzZWJkOTA2OGU5NmM0NjAwMzFlYTAwNTc1MDNmNFwiLFwiMTE3MTAyMWQyMDUwYWI3ZmQzYmQ3OWI2YmRkOTUzNjdcIixcIjkzZjkyM2NmYTViZTZjYTUzOGFkYjIxMWE4ZmIzMjBiXCJdLFwiMzNcIjpbXCI5YmI4OTVlMWY0NWVkMzA0OTdjOWNhODVmYTdjYjBlZlwiLFwiOTU2MGJjNmY5NGY2ZDBmY2EyMzg5OGMyMzkwNjI1OTRcIl19IiwiMTRhZDYzYTIyMjBkMThiYTJiZWJjZGY1OTQzYjRlOTgiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_30' id='gform_target_page_number_30' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_30' id='gform_source_page_number_30' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            <input type='hidden' name='gform_uploaded_files' id='gform_uploaded_files_30' value='' \/>\n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 30, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_30').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_30');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_30').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_30').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_30').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_30').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_30').val();gformInitSpinner( 30, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [30, current_page]);window['gf_submitting_30'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_30').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [30]);window['gf_submitting_30'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_30').text());}else{jQuery('#gform_30').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"30\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);                if (event && event.defaultPrevented) {                return;         }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_30\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_30\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_30\" );        let postRenderFired = false;                function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            jQuery( document ).trigger( 'gform_post_render', [30, current_page] );            gform.utils.trigger( { event: 'gform\/postRender', native: false, data: { formId: 30, currentPage: current_page } } );            gform.utils.trigger( { event: 'gform\/post_render', native: false, data: { formId: 30, currentPage: current_page } } );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":16496,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[3],"tags":[],"class_list":["post-16487","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized-ar"],"acf":[],"spectra_custom_meta":{"_edit_lock":["1731221865:2"],"_wpml_word_count":["{\"total\":25,\"to_translate\":{\"en\":25}}"],"_encloseme":["1"],"_uag_custom_page_level_css":[""],"footnotes":[""],"_edit_last":["2"],"featured":["0"],"_featured":["field_5f621cfdb8eb6"],"program":["3592"],"_program":["field_5f7aecf308f9b"],"link":[""],"_link":["field_5f7ccb5be2c99"],"attachment":[""],"_attachment":["field_5f7ccb67e2c9a"],"_wpml_media_duplicate":["1"],"_wpml_media_featured":["1"],"_thumbnail_id":["16496"],"_uagb_previous_block_counts":["a:90:{s:21:\"uagb\/advanced-heading\";i:0;s:15:\"uagb\/blockquote\";i:0;s:12:\"uagb\/buttons\";i:0;s:18:\"uagb\/buttons-child\";i:0;s:19:\"uagb\/call-to-action\";i:0;s:15:\"uagb\/cf7-styler\";i:0;s:11:\"uagb\/column\";i:0;s:12:\"uagb\/columns\";i:0;s:14:\"uagb\/container\";i:0;s:21:\"uagb\/content-timeline\";i:0;s:27:\"uagb\/content-timeline-child\";i:0;s:14:\"uagb\/countdown\";i:0;s:12:\"uagb\/counter\";i:0;s:8:\"uagb\/faq\";i:0;s:14:\"uagb\/faq-child\";i:0;s:10:\"uagb\/forms\";i:0;s:17:\"uagb\/forms-accept\";i:0;s:19:\"uagb\/forms-checkbox\";i:0;s:15:\"uagb\/forms-date\";i:0;s:16:\"uagb\/forms-email\";i:0;s:17:\"uagb\/forms-hidden\";i:0;s:15:\"uagb\/forms-name\";i:0;s:16:\"uagb\/forms-phone\";i:0;s:16:\"uagb\/forms-radio\";i:0;s:17:\"uagb\/forms-select\";i:0;s:19:\"uagb\/forms-textarea\";i:0;s:17:\"uagb\/forms-toggle\";i:0;s:14:\"uagb\/forms-url\";i:0;s:14:\"uagb\/gf-styler\";i:0;s:15:\"uagb\/google-map\";i:0;s:11:\"uagb\/how-to\";i:0;s:16:\"uagb\/how-to-step\";i:0;s:9:\"uagb\/icon\";i:0;s:14:\"uagb\/icon-list\";i:0;s:20:\"uagb\/icon-list-child\";i:0;s:10:\"uagb\/image\";i:0;s:18:\"uagb\/image-gallery\";i:0;s:13:\"uagb\/info-box\";i:0;s:18:\"uagb\/inline-notice\";i:0;s:11:\"uagb\/lottie\";i:0;s:21:\"uagb\/marketing-button\";i:0;s:10:\"uagb\/modal\";i:0;s:18:\"uagb\/popup-builder\";i:0;s:16:\"uagb\/post-button\";i:0;s:18:\"uagb\/post-carousel\";i:0;s:17:\"uagb\/post-excerpt\";i:0;s:14:\"uagb\/post-grid\";i:0;s:15:\"uagb\/post-image\";i:0;s:17:\"uagb\/post-masonry\";i:0;s:14:\"uagb\/post-meta\";i:0;s:18:\"uagb\/post-taxonomy\";i:0;s:18:\"uagb\/post-timeline\";i:0;s:15:\"uagb\/post-title\";i:0;s:20:\"uagb\/restaurant-menu\";i:0;s:26:\"uagb\/restaurant-menu-child\";i:0;s:11:\"uagb\/review\";i:0;s:12:\"uagb\/section\";i:0;s:14:\"uagb\/separator\";i:0;s:11:\"uagb\/slider\";i:0;s:17:\"uagb\/slider-child\";i:0;s:17:\"uagb\/social-share\";i:0;s:23:\"uagb\/social-share-child\";i:0;s:16:\"uagb\/star-rating\";i:0;s:23:\"uagb\/sure-cart-checkout\";i:0;s:22:\"uagb\/sure-cart-product\";i:0;s:15:\"uagb\/sure-forms\";i:0;s:22:\"uagb\/table-of-contents\";i:0;s:9:\"uagb\/tabs\";i:0;s:15:\"uagb\/tabs-child\";i:0;s:18:\"uagb\/taxonomy-list\";i:0;s:9:\"uagb\/team\";i:0;s:16:\"uagb\/testimonial\";i:0;s:14:\"uagb\/wp-search\";i:0;s:19:\"uagb\/instagram-feed\";i:0;s:10:\"uagb\/login\";i:0;s:17:\"uagb\/loop-builder\";i:0;s:18:\"uagb\/loop-category\";i:0;s:20:\"uagb\/loop-pagination\";i:0;s:15:\"uagb\/loop-reset\";i:0;s:16:\"uagb\/loop-search\";i:0;s:14:\"uagb\/loop-sort\";i:0;s:17:\"uagb\/loop-wrapper\";i:0;s:13:\"uagb\/register\";i:0;s:19:\"uagb\/register-email\";i:0;s:24:\"uagb\/register-first-name\";i:0;s:23:\"uagb\/register-last-name\";i:0;s:22:\"uagb\/register-password\";i:0;s:30:\"uagb\/register-reenter-password\";i:0;s:19:\"uagb\/register-terms\";i:0;s:22:\"uagb\/register-username\";i:0;}"],"_uag_page_assets":["a:9:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";s:18:\"current_block_list\";a:2:{i:0;s:17:\"gravityforms\/form\";i:1;s:14:\"core\/paragraph\";}s:8:\"uag_flag\";b:0;s:11:\"uag_version\";s:10:\"1776516340\";s:6:\"gfonts\";a:0:{}s:10:\"gfonts_url\";s:0:\"\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"]},"uagb_featured_image_src":{"full":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring.jpg",2000,2000,false],"thumbnail":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-150x150.jpg",150,150,true],"medium":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-300x300.jpg",300,300,true],"medium_large":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-768x768.jpg",640,640,true],"large":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-1024x1024.jpg",640,640,true],"1536x1536":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-1536x1536.jpg",1536,1536,true],"2048x2048":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring.jpg",2000,2000,false],"home-blocks-size":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-375x250.jpg",375,250,true],"programs-list":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-360x360.jpg",360,360,true],"block-news-events":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-360x240.jpg",360,240,true],"block-news-big":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-750x450.jpg",750,450,true],"page-head":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring-2000x250.jpg",2000,250,true],"gform-image-choice-sm":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring.jpg",300,300,false],"gform-image-choice-md":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring.jpg",400,400,false],"gform-image-choice-lg":["https:\/\/www.nub.edu.eg\/wp-content\/uploads\/2024\/11\/NUB-Hiring.jpg",600,600,false]},"uagb_author_info":{"display_name":"NUB","author_link":"https:\/\/www.nub.edu.eg\/ar\/author\/nubadmin\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/posts\/16487","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/comments?post=16487"}],"version-history":[{"count":6,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/posts\/16487\/revisions"}],"predecessor-version":[{"id":16500,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/posts\/16487\/revisions\/16500"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/media\/16496"}],"wp:attachment":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/media?parent=16487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/categories?post=16487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/tags?post=16487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}