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 | |
### --- Snip --- ### | |
App::after(function($request, $response) | |
{ | |
// HTML Minification | |
if(App::Environment() != 'local') | |
{ | |
if($response instanceof Illuminate\Http\Response) |
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
// custom validators | |
// generic validator for required input fields to work with validator() & [placeholder] | |
$.tools.validator.fn("input[required]", "Please complete this mandatory field.", function(input, value) { | |
var pass; | |
if ((value == "") || (value == $(input).attr("placeholder"))) { | |
$(input).addClass("invalid"); | |
pass = false; | |
} else { | |
$(input).removeClass("invalid"); |
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 | |
$address = "Sutorejo Utara, Surabaya, Indonesia"; | |
$address = urlencode($address); | |
$url = "http://maps.googleapis.com/maps/api/geocode/json?address=$address&sensor=false"; | |
$raw = file_get_contents($url); | |
$data = json_decode($raw); | |
$lat = $data->results[0]->geometry->location->lat; | |
$lng = $data->results[0]->geometry->location->lng; |
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 | |
/** | |
* by Adrian Statescu <[email protected]> | |
* Twitter: @thinkphp | |
* G+ : http://gplus.to/thinkphp | |
* MIT Style License | |
*/ | |
NewerOlder