タグ付けされた質問 「admin-user」


4
Magento 2.0でプログラムで管理ユーザーを作成する
Magento 1.9で新しい管理ユーザーを追加するのは簡単です <?php require_once('app/Mage.php'); umask(0); Mage::app(); $user = Mage::getModel('admin/user') ->setData(array( 'username' => 'admin', 'firstname' => 'admin', 'lastname' => 'admin', 'email' => 'me@hackme.com', 'password' => 'hacker@123', 'is_active' => 1 )) ->save(); $user->setRoleIds(array(1)) ->setRoleUserId($user->getUserId()) ->saveRelations(); echo "User has been created successfully!"; ?> しかし、どうすればMagento 2.0で管理ユーザーを追加できますか?

1
現在オンラインの管理者ユーザーをすべてリストするにはどうすればよいですか?
Magentoでは、さまざまな役割を持つ複数の管理者を作成しました。オンライン管理ユーザーのリストを取得するにはどうすればよいですか。オンラインの顧客リストに似ていますか? 利用した Mage::getSingleton('admin/session') しかし、これは現在のユーザーの詳細のみを提供しています。 組み込み関数はありますか?そうでない場合、同様のものを作成するにはどうすればよいですか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.