8 public function __construct( $userName, $password, $group = '' ) {
9 $this->userName
= $userName;
10 $this->password
= $password;
12 $this->user
= User
::newFromName( $this->userName
);
13 if ( !$this->user
->getID() ) {
14 $this->user
= User
::createNew( $this->userName
, array(
15 "email" => "test@example.com",
16 "real_name" => "Test User" ) );
18 $this->user
->setPassword( $this->password
);
20 if ( $group !== '' ) {
21 $this->user
->addGroup( $group );
23 $this->user
->saveSettings();