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
<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"> |
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 | |
class Modifier_urldummy extends Modifier { | |
public function index($value) { | |
if (strpos($value, 'http') !== false) { | |
$output = $value; | |
} else { | |
$output = 'http://'.$value; |
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 | |
class Modifier_punctless extends Modifier { | |
public function index($value, $parameters=array()) { | |
$value = preg_replace("/[^a-zA-Z0-9\s]/", "", $value); | |
return $value; | |
} |