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
INITIALISATION | |
============== | |
load wp-config.php | |
set up default constants | |
load wp-content/advanced-cache.php if it exists | |
load wp-content/db.php if it exists | |
connect to mysql, select db | |
load object cache (object-cache.php if it exists, or wp-include/cache.php if not) | |
load wp-content/sunrise.php if it exists (multisite only) |
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 | |
// store the post type from the URL string | |
$post_type = $_GET['post_type']; | |
// check to see if there was a post type in the | |
// URL string and if a results template for that | |
// post type actually exists | |
if ( isset( $post_type ) && locate_template( 'search-' . $post_type . '.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
/* | |
* Place this with the rest of your rules. | |
* Doesn't need to be in an array as there are no pipes. | |
*/ | |
$rules = array( | |
'password' => 'required|min:6|regex:/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).+$/' | |
); | |
/* | |
* Use this one if you also require at least one symbol. |
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 | |
/** | |
||-> Font Awesome Icons Array | |
*/ | |
$icons = array( | |
'fa fa-angellist' => 'fa fa-angellist', | |
'fa fa-area-chart' => 'fa fa-area-chart', | |
'fa fa-at' => 'fa fa-at', | |
'fa fa-bell-slash' => 'fa fa-bell-slash', | |
'fa fa-bell-slash-o' => 'fa fa-bell-slash-o', |
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 | |
/** | |
||-> Google Fonts Array | |
*/ | |
$google_fonts_list = array( | |
'ABeeZee:regular,italic,latin' => 'ABeeZee', | |
'Abel:regular,latin' => 'Abel', | |
'Abril+Fatface:regular,latin-ext,latin' => 'Abril Fatface', | |
'Aclonica:regular,latin' => 'Aclonica', | |
'Acme:regular,latin' => 'Acme', |
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
import {File} from '@ionic-native/file'; | |
import { DocumentViewer } from '@ionic-native/document-viewer'; | |
export class DocumentViewer | |
{ | |
constructor(private file : File, private documentViewer: DocumentViewer) | |
{ | |
} | |
public openDocument(document: Document) |
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
fast-scroll { | |
position: fixed; | |
top: 102px; | |
right: 5px; | |
padding: 10px 5px; | |
background: #f8f8f8; | |
border-radius: 10px; | |
border: 1px solid #ddd; | |
span { |
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
import Prism from 'prismjs' | |
import loadLanguages from 'prismjs/components/index.js' | |
import path from 'path' | |
loadLanguages() | |
const languages = [ | |
{ test: /\.(html|vue|xml)$/, lang: 'markup' }, | |
{ test: /\.js$/, lang: 'javascript' }, | |
{ test: /\.sh$/, lang: 'bash' }, |
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
{ | |
"payload_type":"single_user_test_results_group", | |
"payload_status":"live", // "live": Actual Results. "verify": Sample Results when setting up the Webhook from within your account. | |
"test":{ | |
"test_id":103, | |
"test_name":"Sample Test Name" | |
}, | |
"group":{ | |
"group_id":104, | |
"group_name":"Sample Group Name" |
OlderNewer