You are here

function uc_encryption_class::setModulus in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_store/uc_store.module \uc_encryption_class::setModulus()

Mutator for mod property.

File

uc_store/uc_store.module, line 1998
Contains global Ubercart functions and store administration functionality.

Class

uc_encryption_class
Handle encryption of credit-card information.

Code

function setModulus($mod) {
  $this->mod = (int) abs($mod);
}