Skip to content

Instantly share code, notes, and snippets.

<p><br></p>
<div class="embedded-paste" contenteditable="false"><table cellpadding="0" cellspacing="0" border="0">
<tbody><tr valign="bottom" align="center" ******style="margin: 0 auto;"******>
<td bgcolor="*****#1E2026******" cellpadding="1" nowrap="">
<font size="4" color="******#b3b3b5******">
<b> Woodlands Connect Login</b>
</font>
</td>
</tr>
<tr valign="top" align="center">
@jeremysexton
jeremysexton / mod.urldummy.php
Last active August 29, 2015 14:01
Dummy Proof URLs for Statamic
<?php
class Modifier_urldummy extends Modifier {
public function index($value) {
if (strpos($value, 'http') !== false) {
$output = $value;
} else {
$output = 'http://'.$value;
@jeremysexton
jeremysexton / mod.punctless.php
Created May 16, 2014 04:45
Quick and dirty modifier to strip punctuation.
<?php
class Modifier_punctless extends Modifier {
public function index($value, $parameters=array()) {
$value = preg_replace("/[^a-zA-Z0-9\s]/", "", $value);
return $value;
}