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
(function($) { | |
$.fn.create = function(el, attr) { | |
return jQuery(document.createElement(el)).attr(attr).prependTo(this); | |
} | |
})(jQuery); |
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
(function($) { | |
$.fn.nodeHTML = function() { | |
return jQuery('<div>').append(jQuery(this).clone()).remove().contents().html(); | |
}; | |
})(jQuery); |
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
{ | |
"cmd": ["php", "-l", "$file"], | |
"selector": "source.php", | |
"file_regex": "^Parse error: .* in (.*?) on line ([0-9]*)" | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>jQuery RTE Dynamic Table Insertion Test</title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
<style type="text/css"> | |
.aBlock { | |
width: 20px; | |
height: 20px; | |
background-color: #A9EDF5; |
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
jQuery.fn.reverse = [].reverse; |
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 | |
$curURL = trim($_SERVER['REQUEST_URI'], '/'); | |
$arURLParts = explode('/', $_SERVER['REQUEST_URI']); | |
foreach($arURLParts as $urlPart) { | |
${$urlPart} = $urlPart; | |
switch ($urlPart) { | |
case 'hotels': | |
$hotelPage = (($_GET['brand'] == "excellence") ? false : true); | |
break; | |
case 'country': |
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 | |
function raise_array(array $arArray, $arKey) { | |
if(is_array($arArray[$arKey])) { | |
$arValues = $arArray[$arKey]; | |
foreach($arValues as $aValue) { | |
$arArray[] = $aValue; | |
} | |
unset($arArray[$arKey]); // Remove key'ed 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 | |
function calcPPrice($iPrice, $iDPrice = 1) { | |
$iDiscounted = round($iPrice - ($iPrice / 100 * $iDPrice)); | |
return $iDiscounted - (10 - (9 - ($iDiscounted % 10))); | |
} | |
?> |
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 | |
/** | |
* Parses the build.properties used by Phing | |
* @author James <[email protected]> | |
*/ | |
class Properties { | |
protected static $_instance = NULL; | |
public static $propFile = ""; |
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 | |
/** | |
* Bugify External Hook URL with Pushover. | |
* @author James Brooks <[email protected]> | |
*/ | |
if(!isset($_POST['payload'])) die('Error.'); | |
// You don't need to change this bit. |
OlderNewer