I hereby claim:
- I am new0 on github.
- I am new0 (https://keybase.io/new0) on keybase.
- I have a public key ASAOrcT-6pfoC2MhrYic5RVI4gVS-szT5aF2Jw1mrZLI3Qo
To claim this, I am signing this object:
<?php | |
/* | |
Plugin Name: Ninja Forms Custom email send | |
Description: Testing Ninja Forms email hook to catch bcc and send them separately | |
Version: 1.0.0 | |
*/ | |
add_filter( 'ninja_forms_action_email_send', 'nf_custom_email_send', 10, 5 ); | |
function nf_custom_email_send( $return, $action_settings, $message, $headers, $attachments ) { |
<?php | |
/* | |
Plugin Name: Ninja Forms Custom Zapier Data | |
Description: Testing Ninja Forms hook | |
Version: 1.0.0 | |
*/ | |
/** | |
* Filter a value recorded for Zapier data. To be used with Ninja Forms Zapier >= 3.1.0 | |
* |
I hereby claim:
To claim this, I am signing this object:
{ | |
"keys": [ | |
{ | |
"e": "AQAB", | |
"n": "oyny1BGtSVHw_J-FbuUB-Whk5arDFm6-fa_-HdaDP8fTFOmcLRyYdtYJXw7XvtCrupNlzDgi7QGS | |
D17THns2Euc88PiZsC-zKkfzhNEFiSfxickjHBWXRGWNVy8YaCzXBn1oGV63Ug8NJjCm7Enm1XXW | |
RZ7gMZpXMa-igI9FijOjJIOznegD3b-mtNrLlUEm07p9jaRsjDryqeRK7IQnQnVA-bPS6_VKKEq5 | |
RHz2SilohPr2qyd3UVxhxeGsBHBy59tNfiFNW9YVXjf3cclqgnCtF1Cq_WTIt7osQPmXOn2CU-H- | |
2vLMpC41vptsAYRR-d-ntNZcI1x4dcoEJ004eQ", | |
"kid": "T_x41~crg.zmB%Kp/>~cNUml/Vs)z9WKB*ZfG7.Qj_0YK7IBs6J{0i{|IQR-GI*E", |
<?php | |
/** | |
* Plugin Name: Ninja Forms - Clean nf_processing_data | |
* Description: Clean the expired nf_processing_data entries from options table twice a day | |
* Version: 0.0.1 | |
* Author: New0 | |
*/ | |
/** | |
* The function `delete_nf_processing_data` deletes rows from the WordPress options table where the |
<?php | |
/* | |
* Plugin Name: NF custom code | |
* Author: New0 | |
* Description: Insert hooks to modify Ninja Forms defaults. | |
*/ | |
//Way to remove the random timestamp from filenames loaded toservices listed in the variable array | |
$services = ["dropbox", "google"]; |
<?php | |
/** | |
* Plugin Name: Ninja Forms consent hooks example | |
* Description: Example use of the nf_consent_status_check and nf_consent_link JS events that help integrate custom consent check and activation into Ninja Forms. | |
* Version: 0.0.1 | |
* Author: Nicolas Figueira | |
* Author URI: https://newo.me | |
*/ | |
add_action("wp_footer", function() { ?> |
<?php | |
/* | |
Plugin Name: Whitelist Ninja Forms routes | |
Plugin URI: https://gist.github.com/New0/7aa904c822604588f3c9066c54de8af9 | |
Description: Whitelist Ninja Forms routes for JWT auth plugin - https://wordpress.org/plugins/jwt-auth/ - | |
Version: 1.0.0 | |
Author: New0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { |
<?php | |
/** | |
* Filter hook used in the API route permission callback to retrieve submissions | |
* | |
* return bool as for authorized or not. | |
*/ | |
add_filter( 'ninja_forms_api_allow_get_submissions', 'nf_define_permission_level', 10, 2 ); | |
add_filter( 'ninja_forms_api_allow_delete_submissions', 'nf_define_permission_level', 10, 2 ); | |
add_filter( 'ninja_forms_api_allow_update_submission', 'nf_define_permission_level', 10, 2 ); | |
add_filter( 'ninja_forms_api_allow_handle_extra_submission', 'nf_define_permission_level', 10, 2 ); |
SELECT DISTINCT | |
account | |
FROM | |
messages t | |
WHERE | |
t.created_at BETWEEN DATE_SUB(NOW(), INTERVAL 30 DAY) and NOW() |