Horde_Core_Auth_Signup_SqlObject::getName PHP Method

getName() public method

Gets the name of this object.
public getName ( ) : string
return string The object name.
    public function getName()
    {
        return $this->_name;
    }

Usage Example

Example #1
0
File: Sql.php Project: horde/horde
 /**
  * Stores the signup data in the backend.
  *
  * @param Horde_Core_Auth_Signup_SqlObject $signup  Signup data.
  *
  * @throws Horde_Db_Exception
  */
 protected function _queueSignup($signup)
 {
     global $registry;
     $query = 'INSERT INTO ' . $this->_params['table'] . ' (user_name, signup_date, signup_host, signup_data) VALUES (?, ?, ?, ?) ';
     $remote = $registry->remoteHost();
     $values = array($signup->getName(), time(), $remote->addr, serialize($signup->getData()));
     $GLOBALS['injector']->getInstance('Horde_Core_Factory_Db')->create('horde', 'signup')->insert($query, $values);
 }
All Usage Examples Of Horde_Core_Auth_Signup_SqlObject::getName
Horde_Core_Auth_Signup_SqlObject