This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html class="wp-toolbar" | |
| lang="en-US"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Edit Page ‹ Candid Solutions — WordPress</title> | |
| <script type="text/javascript"> | |
| addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(document).ready(func);else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; | |
| var ajaxurl = '/wp-admin/admin-ajax.php', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_shortcode( 'custom_progress_bar', 'add_custom_progress_bar' ); | |
| function add_custom_progress_bar( $atts ) { | |
| if ( | |
| ! isset( $atts['user'] ) || ! isset( $atts['goal'] ) || ! isset( $atts['year_month'] ) | |
| || ! isset( $atts['title'] ) || ! isset( $atts['goal_id'] ) | |
| ) { | |
| return ''; | |
| } | |
| // Get total amount completed for the current month |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function recordNavigation() { | |
| var next = $("#detailNext"), | |
| prev = $("#detailPrevious"), | |
| back = $("#backArrowDV img"); | |
| next.hasClass("disabled") && next.is(":visible") ? next.trigger("click") : prev.hasClass("disabled") && prev.is(":visible") ? prev.trigger("click") : back.trigger("click") | |
| } | |
| function validateVariableGroup() { | |
| var label = $("#cVarCgroupName_label").text(), | |
| check = emptyCheck("cVarCgroupName", label); | |
| return check |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Which code do you write if you want to use type inference on a variable x with the value 3? (TypeScript - 30 sec) | |
| a. let x = 3; *** | |
| b. let x: any = 3; | |
| c. let x: dynamic = 3; | |
| d. let x: number = 3; | |
| A function has to return a string. How can you ensure that it does? (TypeScript - 25 seconds) | |
| a. By adding "<string>" behind the return statement |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter(frm_setup_new_fields_vars, frm_populate_member, 20, 2); | |
| add_filter(frm_setup_edit_fields_vars, frm_populate_member, 20, 2); //use this function on edit too | |
| function frm_populate_member($values, $field){ | |
| if($field->id == 732 || $field->id == 733){ //replace 732 and 733 with the IDs of the fields to populate | |
| global $wpdb; | |
| //the Query | |
| $the_Result = $wpdb->get_results( "SELECT concat_ws(', ', last_name, first_name) as display_name FROM wp_database.wp_wp_eMember_members_tbl where account_state = 'active' order by last_name, first_name;" ); | |
| unset($values['options']); //break the binding of any existing content in the values array |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/) | |
| * Copyright 2011-2018 The Bootstrap Authors | |
| * Copyright 2011-2018 Twitter, Inc. | |
| * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
| * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) | |
| */ | |
| *, | |
| *::before, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #contact-image-content .thumb-lg { | |
| width: 150px; | |
| } | |
| #contacts-grid-view-model-list .pull-left a { | |
| margin-bottom: 5px; | |
| } | |
| #contacts-grid-view-model-list .thumb-sm { | |
| margin-bottom: 4px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #contact-image-content .thumb-lg { | |
| width: 150px; | |
| } | |
| #contacts-grid-view-model-list .pull-left a { | |
| margin-bottom: 5px; | |
| } | |
| #contacts-grid-view-model-list .thumb-sm { | |
| margin-bottom: 4px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Exchange - https://outlook.office365.com/ecp/?rfr=Admin_o365&exsvurl=1&mkt=en-US&Realm=mbistaffing.com | |
| Users - https://portal.office.com/adminportal/home#/users | |
| Azure AD - https://aad.portal.azure.com/#@mbistaffing.com/ | |
| MultiFactor Settings - https://account.activedirectory.windowsazure.com/UserManagement/MultifactorVerification.aspx?culture=en-US&BrandContextID=O365# | |
| Basic Security Settings - https://portal.office.com/adminportal/home#/settings/security | |
| Security and Compliance Portal - https://protection.office.com/?rfr=AdminCenter#/homepage |