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
| <?php | |
| function escapeAndEvade($input, $required, $datatype, $removed, $allowed, $whitespace ){ | |
| if($input != NULL){ | |
| switch($allowed){ | |
| case "formatting": | |
| $allowed = "<h1><h2><h3><h4><h5<h6><br><b><i><strong><em><del><cite><code><pre><s><blockquote><ins><p><q>"; | |
| break; | |
| case "none": | |
| $allowed = ""; | |
| break; |
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
| // Confirm email | |
| // admin/subscriberlib2.php | |
| // LINE 236: | |
| # subscribe to the lists | |
| $lists = '<ul>'; | |
| if (isset($_POST['list']) && is_array($_POST["list"])) { | |
| while(list($key,$val)= each($_POST["list"])) { | |
| if ($val == "signup") { | |
| $key = sprintf('%d',$key); |
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
| <?php | |
| if(!function_exists('cap_add_email_privacy_field')){ | |
| function cap_add_email_privacy_field( $fields_to_return, $groups ) { | |
| //echo '<pre>'; | |
| //print_r($fields_to_return); | |
| //echo '</pre>'; | |
| if ( in_array( 'all', $groups ) || in_array( 'contact-info', $groups ) ) { | |
| $fields_to_return['email_privacy'] = array( | |
| 'group' => 'contact-info', |
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
| SELECT `Column1`,`Column2`,COUNT(*) as count FROM `TABLE` GROUP BY `COLUMN1` ORDER BY `X` ASC, `count` DESC |
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
| New Domain Setup | |
| - Setup DNS for site | |
| - Setup DNS for subdomains | |
| - Setup DNS for email | |
| - Setup DKIM | |
| - Setup SPF | |
| - Setup DMARC | |
| - Complete google site verification | |
| - Setup abuse@domain https://support.google.com/a/answer/33389 | |
| - Setup postmaster@domain https://support.google.com/a/answer/33389 |
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
| {"0":{"title":"Edit Profile","description":"User Edit Profile","labelPlacement":"top_label","descriptionPlacement":"below","button":{"type":"text","text":"Update","imageUrl":""},"fields":[{"type":"hidden","adminLabel":"","adminOnly":"","allowsPrepopulate":true,"defaultValue":"","description":"","content":"","cssClass":"","errorMessage":"","id":16,"inputName":"saved","isRequired":false,"label":"Hidden Field","noDuplicates":"","size":"medium","postCustomFieldName":"","displayAllCategories":false,"displayCaption":"","displayDescription":"","displayTitle":"","inputType":"","rangeMin":"","rangeMax":"","calendarIconUrl":"","dateFormat":"","phoneFormat":"","defaultCountry":"","defaultProvince":"","defaultState":"","hideAddress2":"","hideCountry":"","hideState":"","inputs":"","nameFormat":"","allowedExtensions":"","captchaType":"","captchaTheme":"","simpleCaptchaSize":"","simpleCaptchaFontColor":"","simpleCaptchaBackgroundColor":"","failed_validation":"","productField":"","enablePasswordInput":"","maxLength":"","ena |
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
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query | |
| * Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php | |
| */ | |
| $args = 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
| <?php | |
| $css = "style=''"; | |
| if ( has_post_thumbnail( get_the_ID ) ) : | |
| $size = 'large'; // choose size of image to be used | |
| $thumb_id = get_post_thumbnail_id(); | |
| $thumb_object = wp_get_attachment_image_src($thumb_id, $size, true); | |
| $thumb_url = $thumb_object[0]; | |
| $css = "background-image:url('$thumb_url'); background-size:cover; background-position:top-center no-repeat;" | |
| endif; |
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
| /* | |
| Gravity Forms 1.9.12.9 and above. Needs the 3rd arg on gform_after_update_entry | |
| Compares values from the previous entry to the current (updated) entry, and adds a comment marking the user, time, field, and previous to current values that was changes - one comment per change. | |
| */ | |
| function gf_add_note($entry_id, $note){ | |
| RGFormsModel::add_note($entry_id, 0, __('gravity Forms'), $note); | |
| } | |
| add_action( 'gform_after_update_entry', 'magx_add_comment_for_changes_details', 10, 3 ); | |
| function magx_add_comment_for_changes_details($form, $entry_id, $original_entry){ | |
| $entry = GFAPI::get_entry( $entry_id ); |
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
| <?php | |
| /* | |
| This will allow Gravity Forms Notes to display HTML. You can already add html to notes, but it will be displayed out as code. | |
| */ | |
| add_action('gform_entry_detail','gravity_forms_add_filter_allow_html'); | |
| add_action('gform_entry_detail_content_before','gravity_forms_add_filter_allow_html'); | |
| add_action('gform_entry_detail_content_after','gravity_forms_remove_filter_allow_html'); | |
| function gravity_forms_add_filter_allow_html(){ |
OlderNewer