A way for me to remember what my go-to libraries and utilities are.
- HTTP Requests - Guzzle
- Logging - Monolog
| /* | |
| * Let's add some more information to the customer details block in admin emails | |
| * This particular example adds the billing country | |
| */ | |
| function mysite_filter_woocommerce_email_customer_details_fields( $fields, $sent_to_admin, $order ) { | |
| if ( $order->billing_country ) { | |
| $fields['billing_country'] = array( | |
| 'label' => __( 'Country', 'woocommerce' ), | |
| 'value' => WC()->countries->countries[ $order->billing_country ], |
| function logger($log){ | |
| if ( is_array( $log ) || is_object( $log ) ) { | |
| error_log( print_r( $log, true ) ); | |
| } else { | |
| error_log( $log ); | |
| } |
| <?php namespace MyProject; | |
| /** | |
| * Cron Pull | |
| * | |
| * Cron functionality for pulling data on a regular basis | |
| * | |
| * @package MyProject | |
| */ | |
| use WP_Query; |
| add_filter( 'gform_field_validation', 'kuztek_first_name_validation', 10, 4 ); | |
| function kuztek_first_name_validation( $result, $value, $form, $field ) { | |
| $first_name_max_length = 10; | |
| $first_name = rgar( $value, $field->id . '.3' ); | |
| if ( $result['is_valid'] && 'name' === $field->type && strlen( $first_name ) > $first_name_max_length ) { | |
| $result['is_valid'] = false; | |
| $result['message'] = 'Please enter a first shorter name'; | |
| } | |
| return $result; | |
| } |
| /** | |
| * Determine if the current product should trigger a low stock notification | |
| * | |
| * @param int $product_id - The low stock product id | |
| * | |
| * @since 4.4.0 | |
| */ | |
| if ( false === apply_filters( 'woocommerce_should_send_low_stock_notification', true, $product->get_id() ) ) { | |
| return; | |
| } |