This file contains hidden or 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
| $("label").click( | |
| function () { | |
| var labelFor = $(this).attr('for'); | |
| labelFor = $('#'+labelFor); | |
| if(labelFor.length > 0 && labelFor[0].type == 'checkbox'){ | |
| if(labelFor[0].checked == true){ | |
| $(this).removeClass("select"); | |
| labelFor.removeAttr('checked'); | |
| }else{ |
This file contains hidden or 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 | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, 'http://maps.googleapis.com/maps/api/geocode/json?address='.urlencode($regionCode).'®ion='.urlencode($regionCode).'&sensor=false'); | |
| curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); | |
| $response = curl_exec($ch); | |
| $resp = @json_decode($response); | |
| curl_close($ch); | |
| $found = false; | |
| if($resp){ |
This file contains hidden or 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 | |
| //Load the string up | |
| $string = '<html><body><h4 class="itemheading" id="bizTitle0"> | |
| <a id="bizTitleLink0" href="/biz/facial-bungalow-west-hollywood#query:esthetician">I NEED THIS</a> | |
| </h4> | |
| BUNCH OF HTML | |
| <address> | |
| I NEED THIS | |
| </address></body></html>'; | |
This file contains hidden or 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
| <body> | |
| <div id="container"> | |
| <?php if($auth_user = $this->Session->read('Auth.User')): ?> | |
| <div class="member-box"> | |
| <div class="center"> | |
| <div class="share-btn"><a class="btn small small-share"><span><?php __('Share Your Idea Here'); ?></span></a></div> | |
| <div class="float-right"> | |
| <?php echo $this->element('user_header',array('auth_user'=> $auth_user)); ?> |
This file contains hidden or 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 | |
| protected function _getPaymentMethodsHtml() | |
| { | |
| // ob_start(); | |
| // include(BASE_PATH.'app/design/frontend/d1sn_interface/default/template/checkout/onepage/cc_pick.phtml'); | |
| // $output = ob_get_clean(); | |
| // return $output; | |
NewerOlder