This file contains 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 | |
/** | |
* Plugin installation and activation for WordPress themes. | |
* | |
* @package TGM-Plugin-Activation | |
* @version 2.4.0 | |
* @author Thomas Griffin <thomasgriffinmedia.com> | |
* @author Gary Jones <gamajo.com> | |
* @copyright Copyright (c) 2012, Thomas Griffin | |
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later |
This file contains 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
SecRequestBodyAccess On | |
SecResponseBodyAccess On | |
SecResponseBodyLimitAction ProcessPartial | |
SecResponseBodyMimeType text/xml | |
<FilesMatch "xmlrpc.php"> | |
# Block brute force attempts using xmlrpc.php as the vector | |
# Increment our counter when the xmlrpc API indicates a failure | |
SecRule REQUEST_BODY "wp\.getUsersBlogs" "id:13504,deny,chain,status:406,\ | |
phase:4,t:none,t:urlDecode,chain,deny,\ |
This file contains 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 file contains 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
process_progress() { | |
[ -z $1 ] && exit 0 | |
PROGRESS=(". " " .. " " ... " " .. " " ." " .. " " ... " " .. ") | |
COUNTER=0 | |
echo -n "$2 " | |
while `ps -p $1 > /dev/null`; do | |
[ $COUNTER -eq 8 ] && COUNTER=0 | |
echo -n "${PROGRESS[$COUNTER]}" | |
echo -n " Running " | |
sleep 0.5 |
This file contains 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
$interests = get_resume_field( 'careers_interest' ); | |
if ( ! empty( $interests ) ) { | |
if ( is_array( $interests ) ) { | |
foreach ( $interests as $selected_value ) { | |
$tax = get_term_by( 'id', (int) $selected_value, 'careers_interest' ); | |
echo "<li>" . $tax->name . "</li>"; | |
} | |
} else { |
This file contains 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
/** | |
* Submit Step | |
*/ | |
public static function submit() { | |
global $job_manager, $post; | |
self::init_fields(); | |
// Load data if neccessary | |
if ( ! empty( $_POST['edit_resume'] ) && self::$resume_id ) { |
This file contains 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
$fromEmail = "Server <[email protected]>" | |
$smtpServer = "10.10.10.10" | |
$subject = "Random Subject" | |
$body = "Random Body" | |
$emailTo = "Myles <[email protected]>", "Bill <[email protected]>", "John <[email protected]>" | |
send-mailmessage -to $emailTo -from "$fromEmail" -subject "$subject" -body "$body" -smtpServer "$smtpServer" -BodyAsHtml |
This file contains 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
$configData = "system_date='2014/11/13' | |
system_time='14:40:15' | |
system_ntp='192.168.150.48' | |
system_daylight_enable='1' | |
system_updateinterval='3600' | |
" | |
$regex = [regex]("(\w+)(?=='(.*)')") |
This file contains 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( 'array_column_recursive' ) ) { | |
/** | |
* Returns the values recursively from columns of the input array, identified by | |
* the $columnKey. | |
* | |
* Optionally, you may provide an $indexKey to index the values in the returned | |
* array by the values from the $indexKey column in the input array. | |
* | |
* @param array $input A multi-dimensional array (record set) from which to pull |
This file contains 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
jQuery(function(a){a(".jmfe-date-picker").each(function(){a(this).datepicker({dateFormat:jmfe_date_field.date_format,monthNames:jmfe_date_field.monthNames,monthNamesShort:jmfe_date_field.monthNamesShort,dayNames:jmfe_date_field.dayNames,dayNamesShort:jmfe_date_field.dayNamesShort,dayNamesMin:jmfe_date_field.dayNamesMin})})}); |