public function getPackagePurchaseOrderSecurityID()
 {
     return new HiddenField($this->packagePurchaseOrderSecurityToken->getName(), $this->packagePurchaseOrderSecurityToken->getName(), $this->packagePurchaseOrderSecurityToken->getValue());
 }
Exemplo n.º 2
0
	function testNamedTokensCarryDifferentValues() {
		$t1 = new SecurityToken('one');
		$t2 = new SecurityToken('two');
		
		$this->assertNotEquals($t1->getName(), $t2->getName());
		$this->assertNotEquals($t1->getValue(), $t2->getValue());
	}