[ Launch: Runs Per Over ] c51f4edc368c12e48128 by paulosborne
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
license: mit |
README is empty
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
var message = "hello, how are you Tal?"; | |
if (~message.indexOf('Tal')) { | |
console.log('found matching text'); | |
} |
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
/** | |
* @access public | |
* @return $request | |
*/ | |
public function createRequest(Zend_Controller_Request_Http $request) { | |
if ( !isset($this->paymentRequest)) { | |
$this->setPaymentRequest(new Payment_Service_Commidea_Request()); | |
} | |
$this->getPaymentRequest()->setCustomer(new Payment_Service_Commidea_Customer(array( | |
'firstname' => $request->getParam('firstname'), |
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 DataSetValue | |
{ | |
const ALPHA_LOWER = 'abcdefghijklmnopqrstuvwxyz'; | |
const ALPHA_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
const ALPHA_NUMERIC = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; | |
const SYMBOLS = '!@£$%^&*()-='; | |
const SECURITY_XSS = "'';!--\"<XSS>=&{()}"; |
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 DataSetValue | |
{ | |
const ALPHA_LOWER = 'abcdefghijklmnopqrstuvwxyz'; | |
const ALPHA_NUMERIC = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; | |
const ALPHA_SYMBOLS = '!@£$%^&*()_+'; | |
const EMAIL_VALID = '[email protected]'; | |