Documentation Glossary
-
Admin Dashboard Anything within the admin panel is referred to as the admin dashboard
-
Orchard Just refer to it as Orchard not Orchard CMS or Orchard Project.
-
Guide A page of docs. Not a topic, tutorial, lesson, etc.
// originally based on https://gist.github.com/kenhowardpdx/8484076 | |
// updated to current gtag.js snippet and moved to head | |
function rtp_init_analytics() { | |
$analytics_id = 'YOUR UA CODE HERE'; | |
$analytics = '<!-- Global site tag (gtag.js) - Google Analytics --> | |
<script async src="https://www.googletagmanager.com/gtag/js?id='. $analytics_id .'"></script> | |
<script> | |
window.dataLayer = window.dataLayer || []; | |
function gtag(){dataLayer.push(arguments);} |
// The class itself is based on the animation helper class in | |
// https://github.com/paulmg/ThreeJS-Webpack-ES6-Boilerplate | |
// but I have changed almost everything except for the class name and the update function. | |
import * as THREE from 'three'; | |
export default class Animation { | |
constructor(scene, animations) { | |
this.scene = scene; | |
this.animations = animations; |
import * as THREE from 'three'; | |
export default class Animation { | |
constructor(scene, animations) { | |
this.scene = scene; | |
this.animations = animations; | |
this.mixer = new THREE.AnimationMixer(this.scene); | |
} |
Admin Dashboard Anything within the admin panel is referred to as the admin dashboard
Orchard Just refer to it as Orchard not Orchard CMS or Orchard Project.
Guide A page of docs. Not a topic, tutorial, lesson, etc.
public class GetAlphaRouletteLinks | |
{ | |
// Outputs markup like this: | |
// <a href="#rouletteA">A</a> | <a href="#rouletteB">B</a> | <a href="#rouletteC">C</a> | <a href="#rouletteD">D</a> | <a href="#rouletteE">E</a> | <a href="#rouletteF">F</a> | G | <a href="#rouletteH">H</a> | <a href="#rouletteI">I</a> | <a href="#rouletteJ">J</a> | K | <a href="#rouletteL">L</a> | <a href="#rouletteM">M</a> | <a href="#rouletteN">N</a> | <a href="#rouletteO">O</a> | <a href="#rouletteP">P</a> | <a href="#rouletteQ">Q</a> | <a href="#rouletteR">R</a> | <a href="#rouletteS">S</a> | <a href="#rouletteT">T</a> | <a href="#rouletteU">U</a> | V | <a href="#rouletteW">W</a> | X | Y | Z | |
// Notice how it skips the link for any letters that don't have jobs starting with that letter eg: | |
// <a href="#rouletteW">W</a> | X | Y | Z | |
public string GetAlphaRouletteLinksHtmlMarkup() | |
{ | |
var JobList = new List<String>() { |