/**
  * Construct this module class
  * @param string $name
  * @param array $options
  */
 public function __construct($name, $options)
 {
     parent::__construct($name, $options);
     $this->db = MDB2::singleton();
 }
 /**
  * Construct this module class
  * @param string $name The name of this storage mechanism
  * @param array $options
  */
 public function __construct($name, $options = array())
 {
     $this->userAccess = I2CE::getUserAccess();
     parent::__construct($name, $options);
 }
 /**
  * Construct this module class
  * @param string $name The name of this storage mechanism
  * @param array $options
  */
 public function __construct($name, $options = array())
 {
     parent::__construct($name, $options);
     $this->config = I2CE::getConfig()->I2CE->formsData;
 }