Skip to content

Commit 61000a5

Browse files
committed
Create addUserAdmin.php
1 parent 25f46fd commit 61000a5

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

addUserAdmin.php

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?php
2+
3+
/**
4+
* @Author: nguyen
5+
* @Date: 2020-12-29 11:18:57
6+
* @Last Modified by: nguyen
7+
* @Last Modified time: 2020-12-29 13:11:30
8+
*/
9+
10+
11+
//// Setup Base
12+
$folder = ''; //Folder Name
13+
$file = $folder ? "$folder/app/bootstrap.php" : "app/bootstrap.php";
14+
15+
if(!file_exists ($file)) $file = "app/bootstrap.php";
16+
if(file_exists ($file)){
17+
require dirname(__FILE__) .'/' .$file;
18+
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
19+
} else {die('Not found bootstrap.php');}
20+
21+
/* For get RoleType and UserType for create Role */;
22+
23+
class createAdmin extends \Magento\Framework\App\Http
24+
implements \Magento\Framework\AppInterface {
25+
26+
/**
27+
* User model factory
28+
*
29+
* @var \Magento\User\Model\UserFactory
30+
*/
31+
protected $_userFactory;
32+
33+
public function launch()
34+
{
35+
$this->_userFactory = $this->_objectManager->get('\Magento\User\Model\UserFactory');
36+
37+
$adminInfo = [
38+
'username' => 'hello',
39+
'firstname' => 'Hello',
40+
'lastname' => 'Mage',
41+
'email' => '[email protected]',
42+
'password' =>'hello@123',
43+
'interface_locale' => 'en_US',
44+
'is_active' => 1
45+
];
46+
47+
$userModel = $this->_userFactory->create();
48+
$userModel->setData($adminInfo);
49+
$userModel->setRoleId(1);
50+
try{
51+
$userModel->save();
52+
echo 'done';
53+
} catch (\Exception $ex) {
54+
$ex->getMessage();
55+
}
56+
return $this->_response;
57+
}
58+
59+
60+
}
61+
62+
/** @var \Magento\Framework\App\Http $app */
63+
$app = $bootstrap->createApplication('createAdmin');
64+
$bootstrap->run($app);

0 commit comments

Comments
 (0)