Skip to content

Instantly share code, notes, and snippets.

apiVersion: v1
kind: PersistentVolume
metadata:
name: wordpress-pv
spec:
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
- ReadOnlyMany
apiVersion: v1
kind: PersistentVolume
metadata:
name: mariadb-pv
spec:
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
- ReadOnlyMany
@zaheeraws
zaheeraws / odeon-to-iPlan
Last active April 3, 2019 10:49
Submit (formcraft) forms information to iPlan | Wordpress plugin
<?php
/*
* Plugin Name: odeon-to-iPlan
* Description: Submit (Contact Form 7) forms information to iPlan
* Version: 1.0
* Author: fieztech <zaheer.aws@gmail.com>
* Author URI: https://feztech.com
*/
add_action('formcraft_after_save', 'ft_api_to_iPlan', 10, 4);
function ft_api_to_iPlan($content, $meta, $raw_content, $integrations)