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 //--> | |
/** | |
* A Custom Project | |
* | |
* Copyright and license information can be found at LICENSE | |
* distributed with this package. | |
*/ | |
namespace Eve\Job\Product; |
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 //--> | |
return array( | |
'singular' => 'Profile', //for pages and messages | |
'plural' => 'Profiles', //for pages and messages | |
'rest' => array( | |
'update', //add a Rest/Profile/Update Action | |
'search', //add a Rest/Profile/Search Action | |
'detail' //add a Rest/Profile/Detail Action | |
), | |
'page' => array( |
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
{ | |
"minimum-stability": "dev", | |
"require": { | |
"eve-php/framework": "dev-master", | |
"openovate/eden-middleware-htpasswd": "dev-master" | |
} | |
} |
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
CHECKOUT API | |
------------------------- | |
POST api.buysana.com/rest/checkout | |
client_id=123&client_secret=123¤cy&item[0][name]=Sample+Item&item[0][price]=123.45&shipping=1 ... | |
ITEMS | |
-------- |
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
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"><head> | |
<meta charset="utf-8"> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
<!-- Sets initial viewport load and disables zooming --> | |
<title>Buy Balla Powder Talc for Men - 3 Pack on Salaaap!</title> | |
<!-- MOBILE TAGS --> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, height=device-height, width=device-width"> |
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
$('#agency-search-form').submit(function(e) { | |
e.preventDefault(); | |
var agencies = []; | |
$('div.select-agency li input:checked').each(function() { | |
agencies.push(this.value); | |
}); | |
var filter = []; | |
$('div.select-specialism li input:checked, ' |
NewerOlder