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 | |
| /* | |
| Plugin Name: RafflePress Invent Your Own | |
| Plugin URI: | |
| Description: Programmatically Add User and Complete Actions in RafflePress | |
| Version: | |
| Author: | |
| Author URI: | |
| License: | |
| License URI: |
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 (empty($giveaway->slug) || !empty($_GET['iframe'])) { ?> | |
| <meta name="robots" content="noindex"> | |
| <?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
| document.addEventListener('om.Campaign.afterShow', function(event) { | |
| // exit offer | |
| if(event.detail.Campaign.numericId == '212237'){ | |
| var offer_ajax_url = '/checkout/exit_offer'; | |
| console.log( _self.$data); | |
| axios | |
| .post(offer_ajax_url, | |
| _self.$data | |
| ).then(function (response) { |
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 | |
| $rp_frontend_translations = array( | |
| 'txt_1'=>__('Total Entries', 'rafflepress-pro'), | |
| 'txt_2'=>__('Your Entries', 'rafflepress-pro'), | |
| 'txt_3'=>__('Log In to Enter this Giveaway:', 'rafflepress-pro'), | |
| 'txt_4'=>__('Enter', 'rafflepress-pro'), | |
| 'txt_5'=>__('Logout', 'rafflepress-pro'), | |
| 'txt_6'=>__('Hi', 'rafflepress-pro'), | |
| 'txt_7'=>__('Ways to Enter', 'rafflepress-pro'), |
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
| // assign entering entries if enabled | |
| $entries_tablename = $wpdb->prefix . 'rafflepress_entries'; | |
| $insert_arrays[] = array( | |
| 'giveaway_id' =>$giveaway_id, | |
| 'contestant_id' => $contestant['id'], | |
| 'meta' => '{"action":"Entering Giveaway"}', | |
| ); | |
| rafflepress_pro_wp_insert_rows($insert_arrays, $entries_tablename); | |
| $contestant['total_entries'] = 1; | |
| //end assign entering entries if enabled |
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
| ## Unsafe SQL calls | |
| When making database calls, it's highly important to protect your code from SQL injection vulnerabilities. You need to update your code to use prepare() with your queries to protect them. | |
| Please review the following: | |
| * http://codex.wordpress.org/Class_Reference/wpdb#Protect_Queries_Against_SQL_Injection_Attacks | |
| * http://codex.wordpress.org/Data_Validation#Database | |
| * http://make.wordpress.org/core/2012/12/12/php-warning-missing-argument-2-for-wpdb-prepare/ | |
| * http://ottopress.com/2013/better-know-a-vulnerability-sql-injection/ |
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
| <style> | |
| #wpnbio-close,#wpnbio-show{ | |
| cursor: pointer; | |
| } | |
| #wpnbio-alert ul { | |
| list-style: none; | |
| } |
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
| #!/usr/bin/env bash | |
| set -e | |
| if [ ! -d src/amazon-s3-and-cloudfront ]; then | |
| echo 'This script must be run from the repository root.' | |
| exit 1 | |
| fi | |
| for PROG in composer find sed |
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
| <script type="type/javascript"> | |
| var language = navigator.language || navigator.browserLanguage; | |
| // alert(language); | |
| if (language.indexOf('en') > -1) { | |
| document.location.href = 'http://en.socialpos.com.ar'; | |
| } else { | |
| document.location.href = 'http://socialpos.com.ar'; |
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
| /** | |
| * API Updates | |
| */ | |
| if( !class_exists( 'SeedProd_Updater_cspv5' ) ) { | |
| // load our custom updater | |
| include( dirname( __FILE__ ) . '/seedprod-updater-cspv5.php' ); | |
| } | |
| function seed_cspv5_plugin_updater() { |